lius
2023-07-17 4d74bebe76748d8ba6fe90b76db35ca13ba9333c
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcPlanClose.java
@@ -7,6 +7,7 @@
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
@@ -31,24 +32,25 @@
     */
    @Excel(name = "计划停机类型", width = 15)
    @ApiModelProperty(value = "计划停机类型")
    private java.lang.String planCloseType;
    private String planCloseType;
    /**
     * 计划停机时间类型
     */
    @Excel(name = "计划停机时间类型", width = 15)
    @ApiModelProperty(value = "计划停机时间类型")
    private java.lang.String planCloseTimeType;
    @Dict(dicCode = "mdc_plan_type")
    private String planCloseTimeType;
    /**
     * 时长(分钟)
     */
    @Excel(name = "时长(分钟)", width = 15)
    @ApiModelProperty(value = "时长(分钟)")
    private java.lang.Integer planCloseTimeLong;
    private Integer planCloseTimeLong;
    /**
     * 备注
     */
    @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
    private java.lang.String remark;
    private String remark;
}