6 changed files with 264 additions and 0 deletions
-
28src/main/java/com/xujie/sys/modules/pms/controller/EamController.java
-
93src/main/java/com/xujie/sys/modules/pms/data/EamWorkOrderExportData.java
-
1src/main/java/com/xujie/sys/modules/pms/mapper/EamMapper.java
-
10src/main/java/com/xujie/sys/modules/pms/service/EamService.java
-
9src/main/java/com/xujie/sys/modules/pms/service/Impl/EamServiceImpl.java
-
123src/main/resources/mapper/pms/EamMapper.xml
@ -0,0 +1,93 @@ |
|||
package com.xujie.sys.modules.pms.data; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class EamWorkOrderExportData { |
|||
@ExcelProperty("BU") |
|||
private String buNo; |
|||
|
|||
@ExcelProperty("处置措施") |
|||
private String disposalMeasures; |
|||
|
|||
@ExcelProperty("工单编码") |
|||
private String orderNo; |
|||
|
|||
@ExcelProperty("反馈单号") |
|||
private String planID; |
|||
|
|||
@ExcelProperty("反馈描述") |
|||
private String feedBackDesc; |
|||
|
|||
@ExcelProperty("故障编码") |
|||
private String defectID; |
|||
|
|||
@ExcelProperty("故障名称") |
|||
private String defectDesc; |
|||
|
|||
@ExcelProperty("设备编码") |
|||
private String objectID; |
|||
|
|||
@ExcelProperty("设备名称") |
|||
private String objectDesc; |
|||
|
|||
@ExcelProperty("机台名称") |
|||
private String resourceDesc; |
|||
|
|||
@ExcelProperty("设备部门") |
|||
private String departmentName; |
|||
|
|||
@ExcelProperty("报修人员名称") |
|||
private String createBy; |
|||
|
|||
@ExcelProperty("状态") |
|||
private String status; |
|||
|
|||
@ExcelProperty("计划执行人员") |
|||
private String planOperatorName; |
|||
|
|||
@ExcelProperty("实际执行人员") |
|||
private String actualOperatorName; |
|||
|
|||
@ExcelProperty("计划执行日期") |
|||
private String planDate; |
|||
|
|||
@ExcelProperty("故障时间") |
|||
private String createdDate; |
|||
|
|||
@ExcelProperty("到达时间") |
|||
private String reachDate; |
|||
|
|||
@ExcelProperty("实际执行时间") |
|||
private String actualDate; |
|||
|
|||
@ExcelProperty("维修响应时长(m)") |
|||
private String responseTime; |
|||
|
|||
@ExcelProperty("工作时长(m)") |
|||
private String workTime; |
|||
|
|||
@ExcelProperty("难度等级") |
|||
private String difficultyLevel; |
|||
|
|||
@ExcelProperty("难度备注") |
|||
private String difficultyRemark; |
|||
|
|||
@ExcelProperty("单据来源") |
|||
private String documentSource; |
|||
|
|||
@ExcelProperty("故障原因") |
|||
private String faultReason; |
|||
|
|||
@ExcelProperty("处理方式") |
|||
private String handlingMethod; |
|||
|
|||
@ExcelProperty("预防措施") |
|||
private String preventiveMeasure; |
|||
|
|||
@ExcelProperty("备注说明") |
|||
private String remark; |
|||
|
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue