|
|
@@ -0,0 +1,65 @@
|
|
|
+package com.xunmei.system.util;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
|
+import com.alibaba.excel.annotation.write.style.ContentRowHeight;
|
|
|
+import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author :
|
|
|
+ * @date :
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ColumnWidth(25) //列宽,最大值为255
|
|
|
+@HeadRowHeight(16) //表头行高
|
|
|
+@ContentRowHeight(16) //数据行高
|
|
|
+public class OrgPhysicalDefenseConstructionDetailExport {
|
|
|
+
|
|
|
+ @ExcelIgnore
|
|
|
+ private Long orgId;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "序号", index = 0)
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String xh;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "地区", index = 1)
|
|
|
+ private String city;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "行社", index = 2)
|
|
|
+ private String affiliatedBank;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "机构简称", index = 3)
|
|
|
+ private String shortName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "地址", index = 4)
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "机构类型", index = 5)
|
|
|
+ private String typeName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "GA38机构类型", index = 6)
|
|
|
+ private String extendTypeName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "GA38标准", index = 7)
|
|
|
+ private String standard;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @ExcelProperty(value = "达标日期", index = 8)
|
|
|
+ private Date dateOfCompliance;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "未达标原因", index = 9)
|
|
|
+ private String reason;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @ExcelProperty(value = "计划达标日期", index = 10)
|
|
|
+ private Date dateOfComplete;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "证书", index = 11,converter = ImgUrlConverter.class)
|
|
|
+ private String certificate;
|
|
|
+}
|