无关风月
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
package com.ruoyi.management.domain.vo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
@Data
@ApiModel(value = "仓库管理查看詳情", description = "仓库管理查看詳情")
public class StoreManagementGoodSmaterialsVO {
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
 
    @TableField("goods_materials_name")
    private String goodsMaterialsName;
 
    @ApiModelProperty("1 是非消耗,2是消耗 ")
    private Integer isConsume;
 
    @ApiModelProperty("库存总数")
    private Integer repertorySum;
 
    @ApiModelProperty("在库存的")
    private Integer repertoryZhai;
 
    @ApiModelProperty("出库存的")
    private Integer repertoryChu;
 
    @ApiModelProperty("遗失库存的")
    private Integer repertoryYishi;
 
    @ApiModelProperty("均价")
    private Double averagePrice;
 
    @ApiModelProperty("仓库ID")
    private Long managementId;
 
    @ApiModelProperty("物资ID")
    private Long goodsMaterialsId;
 
}