mitao
2025-04-04 d89a42213b4a32535e93185dedf41fe7a7fc1940
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
package com.sinata.system.domain.excel;
 
import cn.idev.excel.annotation.ExcelIgnore;
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author mitao
 * @date 2025/1/2
 */
@Data
public class MwCheckoutRecordExcel {
    
    @ApiModelProperty("出库时间")
    @ExcelProperty(value = "出库时间", index = 0)
    private Date checkoutTime;
 
    @ExcelProperty(value = "医院", index = 1)
    private String hospitalName;
 
    @ExcelProperty(value = "暂存间", index = 2)
    private String roomName;
 
    @ExcelProperty(value = "箱数", index = 3)
    private Integer boxNum;
 
    @ExcelProperty(value = "袋数", index = 4)
    private Integer bagNum;
 
    @ExcelProperty(value = "医废重量(kg)", index = 5)
    private BigDecimal totalWeight;
 
    @ExcelProperty(value = "医院签名", index = 6)
    private byte[] hospitalSignature;
 
    @ExcelProperty(value = "司机姓名", index = 7)
    private String driverName;
 
    @ExcelProperty(value = "车牌号", index = 8)
    private String licensePlateNumber;
 
    @ApiModelProperty("记录id")
    @ExcelIgnore
    private Long id;
}