rentaiming
2024-07-03 2df8a92c7affbb7bf04659cab7d784b57a3e1bf5
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
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未匹配,已匹配")
    private Integer type;
 
}