车间能级提升-智能设备管理系统
zhuguifei
2025-04-08 c6e203d8e80c9cd8f74c79498662fa20d223ff56
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 org.dromara.eims.domain.vo;
 
import org.dromara.common.translation.annotation.Translation;
import org.dromara.common.translation.constant.TransConstant;
import org.dromara.eims.domain.EimsFaultKnow;
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_fault_know
 *
 * @author zhuguifei
 * @date 2025-03-18
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = EimsFaultKnow.class)
public class EimsFaultKnowVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     *
     */
    @ExcelProperty(value = "")
    private Long id;
 
    /**
     * 设备id
     */
    @ExcelProperty(value = "设备id")
    private Long equId;
    @Translation(type = TransConstant.EQU_ID_TO_NAME, mapper = "equId")
    private String equName;
    private String assetNo;
 
    /**
     * 设备类型
     */
    @ExcelProperty(value = "设备类型", converter = ExcelDictConvert.class)
    private Long equType;
 
    private String equTypeName;
 
    /**
     * 设备部位(字典)
     */
    @ExcelProperty(value = "设备部位(字典)")
    private String equPart;
 
    /**
     * 知识编码
     */
    @ExcelProperty(value = "知识编码")
    private String faultCode;
 
    /**
     * 故障类别(字典)
     */
    @ExcelProperty(value = "故障类别(字典)", converter = ExcelDictConvert.class)
    @ExcelDictFormat(dictType = "repair_fault_type")
    private String faultType;
 
    /**
     * 故障原因(字典)
     */
    @ExcelProperty(value = "故障原因(字典)")
    private String faultReason;
 
    /**
     * 报修描述
     */
    @ExcelProperty(value = "报修描述")
    private String reqDesc;
 
    /**
     * 处理措施
     */
    @ExcelProperty(value = "处理措施")
    private String resHandle;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
 
}