| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date initialDate; |
| | | /**保养分类*/ |
| | | @Excel(name = "保养分类", width = 15) |
| | | @Excel(name = "保养分类", width = 15, dicCode = "maintenance_category") |
| | | @ApiModelProperty(value = "保养分类") |
| | | @Dict(dicCode = "maintenance_category") |
| | | private String maintenanceCategory; |
| | | /**设备ID*/ |
| | | @Excel(name = "设备ID", width = 15) |
| | | @ApiModelProperty(value = "设备ID") |
| | | /**设备编号*/ |
| | | @Excel(name = "设备编号", width = 15, dictTable = "eam_equipment", dicCode = "id", dicText = "equipment_code") |
| | | @ApiModelProperty(value = "设备编号") |
| | | @Dict(dicCode = "eam_equipment, equipment_code, id") |
| | | private String equipmentId; |
| | | /**标准状态*/ |
| | | @Excel(name = "标准状态", width = 15) |
| | | @Excel(name = "标准状态", width = 15, dicCode = "maintenance_standard_status") |
| | | @ApiModelProperty(value = "标准状态") |
| | | @Dict(dicCode = "maintenance_standard_status") |
| | | private String standardStatus; |
| | | /**标准版本*/ |
| | | @Excel(name = "标准版本", width = 15) |