zss
2024-12-27 ebede85283906f52dd45d0755d22140538038ac3
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.yuanchu.mom.pojo;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 服务与供应商 耗材列表
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-11-15 04:04:32
 */
@Getter
@Setter
@TableName("procurement_supplies_list")
@ApiModel(value = "ProcurementSuppliesList对象", description = "服务与供应商 耗材列表")
public class ProcurementSuppliesList implements Serializable {
 
 
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty("编号")
    @ExcelProperty("编号")
    private Long id;
 
    @ApiModelProperty("目录id")
    private Long contentsId;
 
    @ApiModelProperty("耗材类型")
    @ExcelProperty("类别")
    private String consumablesType;
 
    @ApiModelProperty("货号")
    @ExcelProperty("货号")
    private String itemNumber;
 
    @ApiModelProperty("耗材名称")
    @ExcelProperty("名称")
    private String consumablesName;
 
    @ApiModelProperty("规格")
    @ExcelProperty("规格")
    private String specifications;
 
    @ApiModelProperty("计量单位")
    @ExcelProperty("计量单位")
    private String unit;
 
    @ApiModelProperty("参考价格")
    private BigDecimal referencePrice;
 
    @ApiModelProperty("存放位置")
    private Integer contentId;
 
    @ApiModelProperty("负责人")
    private Integer personInCharge;
 
    @ApiModelProperty("库存上限")
    private Integer upperLimit;
 
    @ApiModelProperty("库存下限")
    @ExcelProperty("库存下限")
    private Integer lowerLimit;
 
    @ApiModelProperty("供应商")
    private Integer supplier;
 
    @ApiModelProperty("耗材图标")
    private String consumablesIcon;
 
    @ApiModelProperty("耗材附件")
    private String attachment;
 
    @ApiModelProperty("备注")
    @ExcelProperty("备注")
    private String remark;
 
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
 
    @ApiModelProperty("当前库存数量")
    @ExcelProperty("当前库存")
    private Integer currentAmount;
}