WangHan
2025-04-02 a8ba678a3fe5a39da2c732014cebbb66e408e97c
consum-base/src/main/java/com/consum/base/pojo/response/GoodsStatisticsInfoVO.java
@@ -1,7 +1,7 @@
package com.consum.base.pojo.response;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -13,27 +13,27 @@
 */
@NoArgsConstructor
@Data
@ApiModel
// @ApiModel
public class GoodsStatisticsInfoVO {
    @ApiModelProperty(value = "机构")
    // @ApiModelProperty(value = "机构")
    private String orgName;
    @ApiModelProperty(value = "调拨数量")
    // @ApiModelProperty(value = "调拨数量")
    private Integer diaoBoNum;
    @ApiModelProperty(value = "总数量")
    // @ApiModelProperty(value = "总数量")
    private Integer totalNum;
    @ApiModelProperty(value = "在库数量")
    // @ApiModelProperty(value = "在库数量")
    private Integer zaiKuNum;
    @ApiModelProperty(value = "物品型号类别(A类,B类..)")
    // @ApiModelProperty(value = "物品型号类别(A类,B类..)")
    private String costType;
    @ApiModelProperty(value = "报废数量")
    // @ApiModelProperty(value = "报废数量")
    private Integer baoFeiNum;
    @ApiModelProperty(value = "物品型号名称")
    // @ApiModelProperty(value = "物品型号名称")
    private String baseGoodsModelsName;
    @ApiModelProperty(value = "物品编码")
    // @ApiModelProperty(value = "物品编码")
    private String goodsCode;
    @ApiModelProperty(value = "仓库/部门名称")
    // @ApiModelProperty(value = "仓库/部门名称")
    private String warehouseName;
    @ApiModelProperty(value = "物品模板名称")
    // @ApiModelProperty(value = "物品模板名称")
    private String goodsTemplateName;
}