rentaiming
2024-06-28 0219f0fc8f8b79cb50a9e1004b10d63a0edbb9dd
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
49
50
51
52
53
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;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "通过入库管理拿入库物资的数据对象", description = "通过入库管理拿入库物资的数据对象")
public class ManagementimgVolumeProductionRkVO {
 
    private Long id;
 
    @ApiModelProperty("物资名称")
    private String goodsMaterialsName;
 
    @ApiModelProperty("1 是非消耗,2是消耗 ")
    private Integer isConsume;
 
    @ApiModelProperty("货架名称")
    private String goodsShelfName;
 
    @ApiModelProperty("仓库层数 1代表一层,2代表两层,3代表三层")
    private Integer storeManagementNumber;
 
    @ApiModelProperty("入库数量")
    @TableField("rk_num")
    private Integer rkNum;
 
    @ApiModelProperty("入库型号")
    @TableField("rk_model")
    private String rkModel;
 
    @ApiModelProperty("入库价格")
    @TableField("rk_pice")
    private BigDecimal rkPice;
 
    @ApiModelProperty("供应商名称")
    private String supplierName;
 
    @ApiModelProperty("入管理主表id")
    private Long VolumeProductionRkglId;
 
    @ApiModelProperty("物资id")
    private Long materialsId;
 
    @ApiModelProperty("货架id")
    private Long shelfId;
 
}