From 170c89b9b8e6d5c3117d53e7b38f782651ebfcde Mon Sep 17 00:00:00 2001 From: futian.liu <liufutianyoo@163.com> Date: 星期五, 22 十二月 2023 14:04:04 +0800 Subject: [PATCH] 物品统计表中总数量改为在库数量+报废数量 --- consum-base/src/main/java/com/consum/base/pojo/response/GoodsStatisticsInfoVO.java | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/consum-base/src/main/java/com/consum/base/pojo/response/GoodsStatisticsInfoVO.java b/consum-base/src/main/java/com/consum/base/pojo/response/GoodsStatisticsInfoVO.java new file mode 100644 index 0000000..b465960 --- /dev/null +++ b/consum-base/src/main/java/com/consum/base/pojo/response/GoodsStatisticsInfoVO.java @@ -0,0 +1,39 @@ +package com.consum.base.pojo.response; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.NoArgsConstructor; + +/** + * @author asus + * @version 1.0 + * @description: 鐗╁搧缁熻琛� + * @date 2023/12/22 13:52 + */ +@NoArgsConstructor +@Data +@ApiModel +public class GoodsStatisticsInfoVO { + + @ApiModelProperty(value = "鏈烘瀯") + private String orgName; + @ApiModelProperty(value = "璋冩嫧鏁伴噺") + private Integer diaoBoNum; + @ApiModelProperty(value = "鎬绘暟閲�") + private Integer totalNum; + @ApiModelProperty(value = "鍦ㄥ簱鏁伴噺") + private Integer zaiKuNum; + @ApiModelProperty(value = "鐗╁搧鍨嬪彿绫诲埆锛圓绫�,B绫�..锛�") + private String costType; + @ApiModelProperty(value = "鎶ュ簾鏁伴噺") + private Integer baoFeiNum; + @ApiModelProperty(value = "鐗╁搧鍨嬪彿鍚嶇О") + private String baseGoodsModelsName; + @ApiModelProperty(value = "鐗╁搧缂栫爜") + private String goodsCode; + @ApiModelProperty(value = "浠撳簱/閮ㄩ棬鍚嶇О") + private String warehouseName; + @ApiModelProperty(value = "鐗╁搧妯℃澘鍚嶇О") + private String goodsTemplateName; +} -- Gitblit v1.9.1