增加筛选条件 :预炸资质申请管理列表
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user