futian.liu
2023-12-22 170c89b9b8e6d5c3117d53e7b38f782651ebfcde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 = "物品型号类别(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;
}