Lius
2024-11-22 a6954d841cf6aeed8c3ed7e7d409d25bedc318e6
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
package org.jeecg.modules.mdc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.io.Serializable;
 
/**
 * @Description: 实施台账子表
 * @Author: lius
 * @Date: 2024-11-22
 * @Version: V1.0
 */
@Data
@TableName("mdc_implement_ledgers_sub")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "mdc_implement_ledgers_sub对象", description = "实施台账子表")
public class MdcImplementLedgersSub extends JeecgEntity implements Serializable {
 
    private static final long serialVersionUID = -7841117446908412876L;
 
    /**
     * 实施台账id
     */
    @Excel(name = "实施台账id", width = 15)
    @ApiModelProperty(value = "实施台账id")
    private String implementId;
    /**
     * 变更时间
     */
    @Excel(name = "变更时间", width = 15)
    @ApiModelProperty(value = "变更时间")
    private String alterTime;
    /**
     * 变更原因
     */
    @Excel(name = "变更原因", width = 15)
    @ApiModelProperty(value = "变更原因")
    private String alterReason;
    /**
     * 设备位置确认
     */
    @Excel(name = "设备位置确认", width = 15)
    @ApiModelProperty(value = "设备位置确认")
    private String locationStatus;
    /**
     * 设备网络确认
     */
    @Excel(name = "设备网络确认", width = 15)
    @ApiModelProperty(value = "设备网络确认")
    private String networkStatus;
    /**
     * MDC功能确认
     */
    @Excel(name = "MDC功能确认", width = 15)
    @ApiModelProperty(value = "MDC功能确认")
    private String mdcFunctionStatus;
    /**
     * MDC模块确认
     */
    @Excel(name = "MDC模块确认", width = 15)
    @ApiModelProperty(value = "MDC模块确认")
    private String mdcModuleStatus;
    /**
     * DNC功能确认
     */
    @Excel(name = "DNC功能确认", width = 15)
    @ApiModelProperty(value = "DNC功能确认")
    private String dncFunctionStatus;
    /**
     * DNC模块确认
     */
    @Excel(name = "DNC模块确认", width = 15)
    @ApiModelProperty(value = "DNC模块确认")
    private String dncModuleStatus;
    /**
     * 反馈人
     */
    @Excel(name = "反馈人", width = 15)
    @ApiModelProperty(value = "反馈人")
    private String feedbackBy;
    /**
     * 反馈时间
     */
    @Excel(name = "反馈时间", width = 15)
    @ApiModelProperty(value = "反馈时间")
    private String feedbackTime;
    /**
     * 维护人员
     */
    @Excel(name = "维护人员", width = 15)
    @ApiModelProperty(value = "维护人员")
    private String maintenanceBy;
    /**
     * 处理时间
     */
    @Excel(name = "处理时间", width = 15)
    @ApiModelProperty(value = "处理时间")
    private String maintenanceTime;
    /**
     * 处理过程描述
     */
    @Excel(name = "处理过程描述", width = 15)
    @ApiModelProperty(value = "处理过程描述")
    private String maintenanceRemark;
    /**
     * 处理结果
     */
    @Excel(name = "处理结果", width = 15)
    @ApiModelProperty(value = "处理结果")
    private String maintenanceResult;
 
}