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: mdc计划停机维护表
|
* @Author: jeecg-boot
|
* @Date: 2023-07-13
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mdc_plan_close")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_plan_close对象", description = "mdc计划停机维护表")
|
public class MdcPlanClose extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = 3761395731884048515L;
|
/**
|
* 日期
|
*/
|
@Excel(name = "日期", width = 15)
|
@ApiModelProperty(value = "日期")
|
private String theDate;
|
/**
|
* 设备编号
|
*/
|
@Excel(name = "设备编号", width = 15)
|
@ApiModelProperty(value = "设备编号")
|
private String equipmentId;
|
/**
|
* 计划停机类型
|
*/
|
@Excel(name = "停机类型", width = 15)
|
@ApiModelProperty(value = "计划停机类型")
|
private String planCloseType;
|
/**
|
* 时长(分钟)
|
*/
|
@Excel(name = "时长(分钟)", width = 15)
|
@ApiModelProperty(value = "时长(分钟)")
|
private Integer planCloseTimeLong;
|
/**
|
* 停机类型(1:计划,2:非计划)
|
*/
|
@Excel(name = "是否计划", width = 15, replace = {"计划_1", "非计划_2"})
|
@ApiModelProperty(value = "停机类型(1:计划,2:非计划)")
|
private String closeType;
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
}
|