入库出库作业单调整

This commit is contained in:
秦鸿展
2026-04-24 15:41:54 +08:00
parent 7434307880
commit 0a116730ef
11 changed files with 299 additions and 131 deletions
@@ -41,6 +41,21 @@ public class ReviewOrderDTO extends BaseVOEntity {
@ApiModelProperty("客户名称(模糊)")
private String customerName;
@ApiModelProperty("客户ID")
private Long customerId;
@ApiModelProperty("客户代码(模糊)")
private String customerCode;
@ApiModelProperty("货主名称")
private String shipperName;
@ApiModelProperty("货主ID")
private Long shipperId;
@ApiModelProperty("货主代码")
private String shipperCode;
@ApiModelProperty("创建时间起 yyyy-MM-dd")
private String createTimeStart;
@@ -69,4 +84,6 @@ public class ReviewOrderDTO extends BaseVOEntity {
@ApiModelProperty("PDA 列表 Tab:2=历史(已复核),其它=待办(待复核/复核中)")
private Integer tabType;
}