| | |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | | import org.dromara.eims.domain.EimsInspectSt; |
| | |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = EimsInspectSt.class) |
| | | public class EimsInspectStVo implements Serializable { |
| | | public class EimsInspectStVo extends BaseEntity implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | */ |
| | | @ExcelProperty(value = "标题") |
| | | private String title; |
| | | |
| | | /** |
| | | * 汇总类型 Day-日汇总 Month-月汇总 |
| | | */ |
| | | private String type; |
| | | /** |
| | | * 设备id |
| | | */ |
| | |
| | | * 计划时间 |
| | | */ |
| | | @ExcelProperty(value = "计划时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date planTime; |
| | | private String planTimeStr; |
| | | |
| | | /** |
| | | * 状态 |
| | |
| | | private String specialNote; |
| | | |
| | | /** |
| | | * 运行时间 |
| | | */ |
| | | @ExcelProperty(value = "运行时间") |
| | | private Integer runTimes; |
| | | |
| | | /** |
| | | * 故障时间 |
| | | */ |
| | | @ExcelProperty(value = "故障时间") |
| | | private Integer faultTimes; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @ExcelProperty(value = "备注") |
| | |
| | | */ |
| | | private Integer abNormalNum; |
| | | |
| | | private String stId; |
| | | |
| | | |
| | | |
| | | |