feat(WmsDeliveryPlanBo): 报表接口代码支持
- 为planDate字段添加@JsonFormat注解,设置日期格式为yyyy-MM-dd - 为planDate字段添加@DateTimeFormat注解,设置日期格式为yyyy-MM-dd - 确保计划日期在序列化和反序列化时保持统一的格式
This commit is contained in:
@@ -85,6 +85,9 @@ public class WmsCoilPendingActionServiceImpl implements IWmsCoilPendingActionSer
|
||||
qw.like(StringUtils.isNotBlank(bo.getSourceType()), "wcpa.source_type", bo.getSourceType());
|
||||
qw.orderByDesc("wcpa.create_time");
|
||||
qw.orderByDesc("wcpa.scan_time");
|
||||
//根据开始时间和结束时间筛选修改时间
|
||||
qw.ge(bo.getStartTime() != null, "wcpa.update_time", bo.getStartTime());
|
||||
qw.le(bo.getEndTime() != null, "wcpa.update_time", bo.getEndTime());
|
||||
//逻辑删除
|
||||
qw.eq("wcpa.del_flag", 0);
|
||||
return qw;
|
||||
|
||||
Reference in New Issue
Block a user