zss
2025-03-12 0007e14cccd0df9c08a71037cc2803894a530c86
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
102
103
104
package com.ruoyi.requier.dto;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ExcelIgnoreUnannotated
public class ProcurementSuppliesListEDto {
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty("编号")
    @ExcelProperty("编号")
    private Long id;
 
    @ApiModelProperty("目录id")
    @ExcelProperty("目录")
    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("参考价格")
    @ExcelProperty("参考价格")
    private BigDecimal referencePrice;
 
    @ApiModelProperty("存放位置")
    @ExcelProperty("存放位置")
    private Integer contentId;
 
    @ApiModelProperty("负责人")
    @ExcelProperty("负责人")
    private Integer personInCharge;
 
    @ApiModelProperty("库存上限")
    @ExcelProperty("库存上限")
    private Integer upperLimit;
 
    @ApiModelProperty("库存下限")
    @ExcelProperty("库存下限")
    private Integer lowerLimit;
 
    @ApiModelProperty("供应商")
    @ExcelProperty("供应商")
    private Integer supplier;
 
    @ApiModelProperty("耗材图标")
    @ExcelProperty("耗材图标")
    private String consumablesIcon;
 
    @ApiModelProperty("耗材附件")
    @ExcelProperty("耗材附件")
    private String attachment;
 
    @ApiModelProperty("备注")
    @ExcelProperty("备注")
    private String remark;
 
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty("创建时间")
    @ExcelProperty("创建时间")
    private LocalDateTime createTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty("更新时间")
    @ExcelProperty("更新时间")
    private LocalDateTime updateTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @ApiModelProperty("更新人")
    @ExcelProperty("更新人")
    private Integer updateUser;
 
    @ApiModelProperty("当前库存数量")
    @ExcelProperty("当前库存")
    private Integer currentAmount;
}