Commit 4eae87e8 authored by lvcunle's avatar lvcunle

edit

parent 4a231883
...@@ -23,50 +23,41 @@ public class IssuesListDetailExcel implements Serializable { ...@@ -23,50 +23,41 @@ public class IssuesListDetailExcel implements Serializable {
* 问题分类(合同管理 分包管理 采购管理 成本管理 财务管理 物资管理 设备管理 集体决策 作风建设 其他) * 问题分类(合同管理 分包管理 采购管理 成本管理 财务管理 物资管理 设备管理 集体决策 作风建设 其他)
*/ */
@ExcelProperty(value = "问题分类") @ExcelProperty(value = "问题分类")
@TableField(value = "TYPE")
private String TYPE; private String TYPE;
/** /**
* 具体问题描述 * 具体问题描述
*/ */
@ExcelProperty(value = "具体问题描述") @ExcelProperty(value = "具体问题描述")
@TableField(value = "DESCRIBETEXT")
private String DESCRIBETEXT; private String DESCRIBETEXT;
/** /**
* 发现时间 * 发现时间
*/ */
@ExcelProperty(value = "发现时间") @ExcelProperty(value = "发现时间")
@TableField(value = "DISCOVERYTIME")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private String DISCOVERYTIME; private String DISCOVERYTIME;
/** /**
* 整改措施 * 整改措施
*/ */
@ExcelProperty(value = "整改措施") @ExcelProperty(value = "整改措施")
@TableField(value = "RECTIFICATIONMEASURES")
private String RECTIFICATIONMEASURES; private String RECTIFICATIONMEASURES;
/** /**
* 整改完成时间 * 整改完成时间
*/ */
@ExcelProperty(value = "整改完成时间") @ExcelProperty(value = "整改完成时间")
@TableField(value = "RECTIFICATIONCOMPLETIONTIME")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private String RECTIFICATIONCOMPLETIONTIME; private String RECTIFICATIONCOMPLETIONTIME;
/** /**
* 整改进度 * 整改进度
*/ */
@ExcelProperty(value = "整改进度") @ExcelProperty(value = "整改进度")
@TableField(value = "RECTIFICATIONPROGRESS")
private String RECTIFICATIONPROGRESS; private String RECTIFICATIONPROGRESS;
/** /**
* 情况 * 情况
*/ */
@ExcelProperty(value = "情况") @ExcelProperty(value = "情况")
@TableField(value = "SITUATION")
private String SITUATION; private String SITUATION;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment