WMS物料管理高级筛选查询

This commit is contained in:
秦鸿展
2026-03-05 14:41:44 +08:00
parent 0c70264d2b
commit f6b20441bc
5 changed files with 96 additions and 8 deletions
@@ -223,4 +223,24 @@ public class MaterialBaseInfoPO extends BaseVOEntity {
@ApiModelProperty("规格型号")
private String specificationModel;
@ApiModelProperty("批次ID")
@Excel(name = "批次ID")
private Long batchId;
@ApiModelProperty("批次编码")
@Excel(name = "批次编码")
private String batchCode;
@ApiModelProperty("批次名称")
@Excel(name = "批次名称")
private String batchName;
@ApiModelProperty("库存预警数量")
@Excel(name = "库存预警数量")
private Integer inventoryWarningCount;
@ApiModelProperty("临期预警数量")
@Excel(name = "临期预警数量")
private Integer expirationWarningCount;
}
@@ -214,4 +214,7 @@ public class MaterialBaseInfoDO extends BaseVOEntity {
@ApiModelProperty("规格型号")
private String specificationModel;
@ApiModelProperty("批次ID")
private Long batchId;
}