From e0656e2efef08e662eb4d33dafd601ce054597cf Mon Sep 17 00:00:00 2001 From: qushaowei <qushaowei@163.com> Date: 星期五, 29 十二月 2023 15:01:17 +0800 Subject: [PATCH] Merge branch 'master' of http://117.34.109.166:18448/r/mdc_430 into develop --- lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/RepairReportExportVo.java | 61 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 0 deletions(-) diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/RepairReportExportVo.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/RepairReportExportVo.java new file mode 100644 index 0000000..ac61759 --- /dev/null +++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/RepairReportExportVo.java @@ -0,0 +1,61 @@ +package org.jeecg.modules.eam.vo; + +import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.experimental.Accessors; +import org.jeecg.common.aspect.annotation.Dict; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.springframework.format.annotation.DateTimeFormat; +import java.io.Serializable; +import java.util.Date; + +/** + * @author h1829 + */ +@Data +public class RepairReportExportVo implements Serializable { + @Excel(name = "鍏抽敭璁惧鏍囪瘑", width = 15,orderNum = "0",dicCode = "specific_equipment") + private String specificEquipment; + @Excel(name = "鐘舵��", width = 15,orderNum = "1",dicCode = "equipment_report_repair_status") + private String status; + @Excel(name = "鍗曟嵁鍙�", width = 15,orderNum = "2") + private String num; + /**璁惧缂栫爜*/ + @Excel(name = "缁熶竴缂栫爜", width = 15,orderNum = "3") + private String equipmentNum; + /**璁惧鍚嶇О*/ + @Excel(name = "璁惧鍚嶇О", width = 15,orderNum = "4") + private String equipmentName; + /**璁惧鍨嬪彿*/ + @Excel(name = "璁惧鍨嬪彿", width = 15,orderNum = "5") + private String model; + @Excel(name = "浣跨敤閮ㄩ棬", width = 15,orderNum = "6",dicCode = "id",dictTable="sys_depart",dicText="depart_name") + private String useId; + @Excel(name = "鎶ヤ慨浜�", width = 15,orderNum = "7") + private String errUda2; + @Excel(name = "鏁呴殰鏃堕棿", width = 15,orderNum = "8",databaseFormat = "yyyy-MM-dd HH:mm:ss",exportFormat = "yyyy-MM-dd HH:mm:ss") + private Date faultTime; + @Excel(name = "鏁呴殰鎻忚堪", width = 15,orderNum = "9") + private String faultDescription; + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "楠屾敹鏃堕棿", width = 15,orderNum = "11",databaseFormat = "yyyy-MM-dd HH:mm:ss",exportFormat = "yyyy-MM-dd HH:mm:ss" ) + private Date acceptTime; + @Excel(name = "鍋滄満鏃堕暱", width = 15,orderNum = "12") + private String faultHour; + @Excel(name = "鏄惁鍋滄満缁翠慨", width = 15,orderNum = "13",dicCode = "is_stop") + private String isStop; + @Excel(name = "鏄惁鍦ㄥ姞宸ラ浂浠�", width = 15,orderNum = "14",dicCode = "is_product") + private String errUda1; + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date faultStartTime; + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date faultEndTime; + private String specification; + @Excel(name = "鍒跺崟浜�", width = 15,orderNum = "15") + private String createBy; + private String nums; +} -- Gitblit v1.9.3