车间能级提升-智能设备管理系统
baoshiwei
2025-06-24 f571cf0182abd65176fb1512c5cb5ddaea49c4a3
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
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.EimsEquStatu;
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_equ_statu
 *
 * @author zhuguifei
 * @date 2025-01-14
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = EimsEquStatu.class)
public class EimsEquStatuVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 设备状态记录id
     */
    @ExcelProperty(value = "设备状态记录id")
    private Long equStatuId;
 
    /**
     * 设备id
     */
    @ExcelProperty(value = "设备id")
    private Long equId;
 
    /**
     * 设备名称
     */
    private String equName;
 
 
    private String assetNo;
 
    /**
     * 变更前状态
     */
    @ExcelProperty(value = "变更前状态")
    private String beforeChange;
 
    /**
     * 变更后状态
     */
    @ExcelProperty(value = "变更后状态")
    private String afterChange;
 
    /**
     * 变更日期
     */
    @ExcelProperty(value = "变更日期")
    private Date changeDate;
 
    /**
     * 变更人
     */
    private Long changeUser;
 
    @ExcelProperty(value = "变更人")
    @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "changeUser")
    private  String changeUserName;
 
    /**
     * 变更人部门
     */
    @ExcelProperty(value = "变更人部门")
    private Long userDept;
 
    /**
     * 变更描述
     */
    @ExcelProperty(value = "变更描述")
    private String changeDesc;
 
    /**
     * 描述
     */
    @ExcelProperty(value = "描述")
    private String remark;
 
 
    /**
     * 确认人
     */
    private Long confirmor;
 
 
    @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "confirmor")
    private String confirmorName;
 
    /**
     * 变更单状态(0-申请,1-同意,2-驳回)
     */
    private String orderStatus;
 
 
}