后台-退料申请与审核

This commit is contained in:
bns_han 2023-12-22 11:05:45 +08:00
parent f7ef5c629e
commit 8d7e961f80
2 changed files with 10 additions and 0 deletions

View File

@ -155,4 +155,10 @@ public class BackApplyInfo extends BaseEntity {
@ApiModelProperty(value = "审核人") @ApiModelProperty(value = "审核人")
private String examineName; private String examineName;
@ApiModelProperty(value = "开始时间")
private String startTime;
@ApiModelProperty(value = "结束时间")
private String endTime;
} }

View File

@ -324,6 +324,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="agreementCode != null and agreementCode != ''"> <if test="agreementCode != null and agreementCode != ''">
and bagi.agreement_code like concat('%', #{agreementCode}, '%') and bagi.agreement_code like concat('%', #{agreementCode}, '%')
</if> </if>
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''">
and bai.back_time >=#{startTime}
and #{endTime} >=bai.back_time
</if>
GROUP BY bai.id, us.user_name, bai.phone, bpl.lot_name, bui.unit_name, bagi.plan_start_time GROUP BY bai.id, us.user_name, bai.phone, bpl.lot_name, bui.unit_name, bagi.plan_start_time
</select> </select>