| | |
| | | /**设备ID*/ |
| | | @Excel(name = "设备ID", width = 15) |
| | | @ApiModelProperty(value = "设备ID") |
| | | @Dict(dictTable = "eam_equipment", dicCode = "equipment_code", dicText = "id") |
| | | @Dict(dictTable = "eam_equipment", dicCode = "id", dicText = "equipment_code") |
| | | private String equipmentId; |
| | | /**标准ID*/ |
| | | @Excel(name = "保养标准ID", width = 15) |
| | | @ApiModelProperty(value = "保养标准ID") |
| | | @Dict(dictTable = "eam_maintenance_standard", dicCode = "standard_code", dicText = "id") |
| | | @Dict(dictTable = "eam_maintenance_standard", dicCode = "id", dicText = "standard_code") |
| | | private String standardId; |
| | | /**点检日期*/ |
| | | @Excel(name = "点检日期(计划)", width = 15, format = "yyyy-MM-dd") |
| | |
| | | /**创建方式*/ |
| | | @Excel(name = "创建方式", width = 15) |
| | | @ApiModelProperty(value = "创建方式") |
| | | @Dict(dicCode = "order_creation_method") |
| | | private String creationMethod; |
| | | /**点检状态*/ |
| | | @Excel(name = "点检状态", width = 15) |
| | | @ApiModelProperty(value = "点检状态 待点检-待确认-已完成") |
| | | @ApiModelProperty(value = "点检状态 待点检-点检中-待确认-已完成-作废") |
| | | @Dict(dicCode = "inspection_status") |
| | | private String inspectionStatus; |
| | | /**班组长确认*/ |
| | | @Excel(name = "班组长确认", width = 15) |
| | |
| | | @Excel(name = "照片文件ids;id以逗号分隔-执行时", width = 15) |
| | | @ApiModelProperty(value = "照片文件ids;id以逗号分隔") |
| | | private String imageFiles; |
| | | |
| | | /**标准名称*/ |
| | | @ApiModelProperty(value = "标准名称") |
| | | private transient String standardName; |
| | | /**保养周期;单位:天*/ |
| | | @ApiModelProperty(value = "保养周期;单位:天") |
| | | private transient Integer maintenancePeriod; |
| | | /**设备编号*/ |
| | | @ApiModelProperty(value = "设备编号") |
| | | private transient String equipmentCode; |
| | | } |