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 = "物品型号类别(A类,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;
|
}
|