车间能级提升-智能设备管理系统
zhuguifei
2025-02-26 d85cb9da90d1dd24f6ecfa187aa8c4198394c29a
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package org.dromara.eims.domain.vo;
 
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import org.dromara.common.translation.annotation.Translation;
import org.dromara.common.translation.constant.TransConstant;
import org.dromara.eims.domain.EimsRepairReq;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * 故障报修视图对象 eims_repair_req
 *
 * @author zhuguifei
 * @date 2025-02-10
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = EimsRepairReq.class)
public class EimsRepairReqVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 报修id
     */
    @ExcelProperty(value = "报修id")
    private Long id;
 
    /**
     * 报修单号
     */
    @ExcelProperty(value = "报修单号")
    private String code;
 
    /**
     * 报修状态
     */
    @ExcelProperty(value = "报修状态")
    private String status;
 
    /**
     * 发生事件
     */
    @ExcelProperty(value = "发生时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date occTime;
 
    /**
     * 报修时间
     */
    @ExcelProperty(value = "报修时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date reqTime;
 
    /**
     * 报修人部门
     */
    @ExcelProperty(value = "报修人部门")
    private Long reqDept;
 
    @Translation(type = TransConstant.DEPT_ID_TO_NAME, mapper = "reqDept")
    private String reqDeptName;
 
    /**
     * 报修人
     */
    @ExcelProperty(value = "报修人")
    private Long reqUser;
 
    @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "reqUser")
    private String reqUserName;
 
    /**
     * 报修描述
     */
    @ExcelProperty(value = "报修描述")
    private String reqDesc;
 
    /**
     * 紧急程度
     */
    @ExcelProperty(value = "紧急程度")
    private String urgencyLevel;
 
    /**
     * 故障图片
     */
    @ExcelProperty(value = "故障图片")
    private String faultPicture;
 
    /**
     * 报修类型
     */
    @ExcelProperty(value = "报修类型")
    private String reqType;
 
    /**
     * 设备id
     */
    @ExcelProperty(value = "设备id")
    private Long equId;
 
    /**
     * 工具id
     */
    private Long fixtureId;
 
    /**
     * 工具
     */
    @Translation(type = TransConstant.FIXTURE_ID_TO_NAME, mapper = "fixtureId")
    private String fixtureName;
 
    /**
     * 维修单id
     */
    @ExcelProperty(value = "维修单id")
    private Long repairId;
 
    /**
     * 维修工单code
     */
    @Translation(type = TransConstant.REPAIR_RES_ID_TO_CODE, mapper = "repairId")
    private String resCode;
 
    /**
     * 维修人部门
     */
    @ExcelProperty(value = "维修人部门")
    private Long repairDept;
 
    /**
     * 维修人
     */
    @ExcelProperty(value = "维修人")
    private Long repairUser;
 
    /**
     * 故障类别
     */
    @ExcelProperty(value = "故障类别")
    private String faultType;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
    private String equCode;
    private String assetNo;
    @Translation(type = TransConstant.EQU_ID_TO_NAME, mapper = "equId")
    private String equName;
    private String equLocation;
    private String equTypeName;
 
}