浏览代码

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

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>