入库业务单添加查询条件;

This commit is contained in:
王奎兴
2026-06-04 11:26:57 +08:00
parent ffddd7d89c
commit 95cdf38ab0
2 changed files with 21 additions and 0 deletions
@@ -458,4 +458,17 @@ public class ReservationStockInOrderDTO extends ReservationStockInOrderBaseDTO {
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date pushTimeEnd;
private String xfStatus;
@ApiModelProperty(name = "入库时间查询条件开始日期")
private String storageTimeStart;
@ApiModelProperty(name = "入库时间查询条件结束日期")
private String storageTimeEnd;
@ApiModelProperty(name = "入库时间查询条件开始日期")
private String expectTimeStart;
@ApiModelProperty(name = "入库时间查询条件结束日期")
private String expectTimeEnd;
}
@@ -536,4 +536,12 @@ public class ReservationStockOutOrderDTO extends ReservationStockOutOrderBaseDTO
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date pushTimeEnd;
@ApiModelProperty(name = "出库时间查询条件开始日期")
private String outboundDateStart;
@ApiModelProperty(name = "出库时间查询条件结束日期")
private String outboundDateEnd;
private String xfStatus;
}