增加筛选条件 :预炸资质申请管理列表

This commit is contained in:
shuo.wang
2025-06-24 18:21:07 +08:00
parent 84574c905a
commit 5af71339b8
2 changed files with 5 additions and 0 deletions

View File

@@ -72,6 +72,9 @@
LEFT JOIN store_${enterpriseId} b ON a.store_code = b.store_num LEFT JOIN store_${enterpriseId} b ON a.store_code = b.store_num
LEFT JOIN xfsg_line_info c ON c.partner_id = a.created_user_id LEFT JOIN xfsg_line_info c ON c.partner_id = a.created_user_id
<where> <where>
<if test="applyCode !=null and applyCode != ''">
and a.apply_code LIKE CONCAT('%', #{applyCode}, '%')
</if>
<if test="storeCode != null and storeCode != ''"> <if test="storeCode != null and storeCode != ''">
AND a.store_code LIKE CONCAT('%', #{storeCode}, '%') AND a.store_code LIKE CONCAT('%', #{storeCode}, '%')
</if> </if>

View File

@@ -23,4 +23,6 @@ public class ApplyManagementQueryDTO extends PageBasicInfo {
private Date createTimeStart; private Date createTimeStart;
@ApiModelProperty("申请日期结束时间") @ApiModelProperty("申请日期结束时间")
private Date createTimeEnd; private Date createTimeEnd;
@ApiModelProperty("申请编号")
private String applyCode;
} }