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;
|
|
}
|