| | |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.api.vo.FileUploadResult; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.modules.eam.entity.EamInspectionOrderDetail; |
| | | import org.jeecg.modules.eam.entity.EamSecondMaintenanceOrderDetail; |
| | | import org.jeecg.modules.eam.entity.EamWeekInspectionDetail; |
| | | import org.jeecg.modules.flowable.domain.vo.FlowTaskVo; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | @ApiModelProperty(value = "管理员确认") |
| | | @Dict(dicCode = "sys_user, realname, username") |
| | | private String manageUser; |
| | | /** |
| | | * 管理员确认结果 |
| | | */ |
| | | @ApiModelProperty(value = "管理员确认结果") |
| | | @Dict(dicCode = "approve_reject") |
| | | private String manageUserResult; |
| | | /** 问题描述;默认 无 */ |
| | | @ApiModelProperty(name = "问题描述",notes = "默认 无") |
| | | private String problemDescription ; |
| | |
| | | /** 检查人确认 */ |
| | | @ApiModelProperty(name = "检查人确认",notes = "") |
| | | private String inspector; |
| | | /** |
| | | * 检查人确认结果 |
| | | */ |
| | | @ApiModelProperty(name = "检查人确认结果",notes = "") |
| | | @Dict(dicCode = "approve_reject") |
| | | private String inspectorResult; |
| | | /** 检查人意见 */ |
| | | @ApiModelProperty(name = "检查人意见",notes = "") |
| | | private String inspectConfirmComment; |
| | |
| | | @Excel(name = "备注", width = 15) |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | |
| | | /**列表 维修工明细*/ |
| | | @ApiModelProperty(value = "列表 维修工明细") |
| | | private List<EamSecondMaintenanceOrderDetail> repairmanDetailList;; |
| | | |
| | | /**列表 操作工明细*/ |
| | | @ApiModelProperty(value = "列表 维修工明细") |
| | | private List<EamSecondMaintenanceOrderDetail> operatorDetailList;; |
| | | } |