소스 검색

fix 批量删除

he2802 3 년 전
부모
커밋
d7b96d0215

+ 1 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/bank/bo/QuestionQueryBo.java

@@ -88,4 +88,5 @@ public class QuestionQueryBo extends BaseEntity {
 	/** 编码 */
 	@ApiModelProperty("编码")
 	private String code;
+
 }

+ 3 - 0
zhongzheng-system/src/main/resources/mapper/modules/bank/QuestionMapper.xml

@@ -186,6 +186,9 @@
         <if test="businessId != null and businessId != ''">
             AND qb.business_id = #{businessId}
         </if>
+        <if test="publishStatus != null and publishStatus != ''">
+            AND q.publish_status = #{publishStatus}
+        </if>
         <if test="prefixName != null and prefixName != ''">
             AND q.prefix_name like concat('%', #{prefixName}, '%')
         </if>