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
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
package com.sinata.system.domain.vo;
 
import cn.idev.excel.annotation.ExcelIgnore;
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author mitao
 * @date 2024/12/13
 */
@Data
@ApiModel("暂存间入库视图对象")
public class MwStorageRecordVO {
 
    @ApiModelProperty("收集记录id")
    @ExcelIgnore
    private Long id;
 
    @ApiModelProperty("区域id")
    @ExcelIgnore
    private Long departmentId;
 
    @ApiModelProperty("医院名称")
    @ExcelProperty(value = "医院名称", index = 1)
    private String hospitalName;
 
    @ApiModelProperty("暂存间id")
    @ExcelIgnore
    private Long stagingRoomId;
 
    @ApiModelProperty("暂存间名称")
    @ExcelProperty(value = "暂存间", index = 2)
    private String roomName;
 
    @ApiModelProperty("医废编号")
    @ExcelProperty(value = "医废编号", index = 3)
    private String medicalWasteNumber;
 
    @ApiModelProperty("转运箱id")
    @ExcelIgnore
    private Long boxId;
 
    @ApiModelProperty("箱子编号")
    @ExcelProperty(value = "箱子编号", index = 4)
    private String boxNumber;
 
    @ApiModelProperty("袋数")
    @ExcelIgnore
    private Integer bagNum;
 
    @ApiModelProperty("医废类型(数据字典id)")
    @ExcelIgnore
    private Integer wasteType;
 
    @ApiModelProperty("医废类型名称")
    @ExcelProperty(value = "医废类型", index = 5)
    private String wasteTypeStr;
 
    @ApiModelProperty("医废重量")
    @ExcelProperty(value = "重量(kg)", index = 6)
    private BigDecimal weight;
 
    @ApiModelProperty("出库人员id")
    @ExcelIgnore
    private Long checkoutUserId;
 
    @ApiModelProperty("出库人员姓名")
    @ExcelIgnore
    private String checkoutUserName;
 
    @ApiModelProperty("出库时间")
    @ExcelIgnore
    private Date checkoutTime;
 
    @ApiModelProperty("医废状态 1:暂存中 2:运输中 3:已接收 4:已处置")
    @ExcelIgnore
    private Integer status;
 
    @ApiModelProperty("封箱时间")
    @ExcelIgnore
    private Date boxTime;
 
    @ApiModelProperty("收集人id")
    @ExcelIgnore
    private Long collectUserId;
 
    @ApiModelProperty("入库人员")
    @ExcelProperty(value = "入库人员", index = 7)
    private String collectUserName;
 
    @ApiModelProperty("入库时间")
    @ExcelProperty(value = "入库时间", index = 0)
    private Date collectTime;
 
}