无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
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
40
41
42
43
44
45
46
47
48
package com.ruoyi.management.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonInclude;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "物资判断详情数据对象", description = "物资判断详情数据对象")
public class InventoriesSuppliesInfoVO {
 
    private Long id;
 
    @ApiModelProperty("物资名称")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private String goodsMaterialsName;
 
    @ApiModelProperty("1 是非消耗,2是消耗 ")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private Integer isConsume;
 
    @ApiModelProperty("入库编号")
    private String rkNumber;
 
 
    @ApiModelProperty("入库型号")
    private String rkModel;
 
    @ApiModelProperty("入库id")
    private Long rkId;
 
    @ApiModelProperty(" 盘点数量")
    private Long suppliesNum;
 
    @ApiModelProperty("在库数量")
    private Long zkNum;
 
    @ApiModelProperty("是否匹配 1匹配,2未匹配")
    private Integer type;
 
    @ApiModelProperty("货架名称")
    private String goodsShelfName;
 
    @ApiModelProperty("仓库层数 1代表一层,2代表两层,3代表三层")
    private Integer storeManagementNumber;
 
}