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
package com.yuanchu.mom.dto;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ExcelIgnoreUnannotated
public class ProcurementSuppliesListEDto {
 
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty("编号")
    @ExcelProperty("编号")
    private Long id;
 
    @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 Integer lowerLimit;
 
 
 
    @ApiModelProperty("备注")
    @ExcelProperty("备注")
    private String remark;
 
 
    @ApiModelProperty("当前库存数量")
    @ExcelProperty("当前库存")
    private Integer currentAmount;
}