소스 검색

活动管理列表查询添加查询条件状态

v_HuilingDeng 4 년 전
부모
커밋
50a61c503a
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      abi-cloud-qr-platform-server/src/main/resources/dao/mapper/BaseActiveMapper.xml

+ 3 - 0
abi-cloud-qr-platform-server/src/main/resources/dao/mapper/BaseActiveMapper.xml

@@ -48,6 +48,9 @@
             <if test="param.auditStatus != null ">
                 AND active.audit_status = #{param.auditStatus}
             </if>
+            <if test="param.valid != null ">
+                AND active.valid = #{param.valid}
+            </if>
         </where>
         order by active.apply_time
     </select>