Showing
3 changed files
with
5 additions
and
5 deletions
| ... | ... | @@ -57,9 +57,9 @@ public class ContractFrameworkExportModel extends BaseBo<ContractFramework> impl |
| 57 | 57 | private String materialTypeName; |
| 58 | 58 | |
| 59 | 59 | /** |
| 60 | - * 授信截止日期 | |
| 60 | + * 授时截止日期 | |
| 61 | 61 | */ |
| 62 | - @ExcelProperty("授信截止日期") | |
| 62 | + @ExcelProperty("授时截止日期") | |
| 63 | 63 | @DateTimeFormat(StringPool.DATE_PATTERN) |
| 64 | 64 | private Date validityTime; |
| 65 | 65 | ... | ... |
| ... | ... | @@ -77,7 +77,7 @@ public class ContractFrameworkImportListener extends ExcelImportListener<Contrac |
| 77 | 77 | |
| 78 | 78 | if (null == data.getValidityTime()) { |
| 79 | 79 | throw new DefaultClientException( |
| 80 | - "第" + context.readRowHolder().getRowIndex() + "行授信截止日期不可为空"); | |
| 80 | + "第" + context.readRowHolder().getRowIndex() + "行授时截止日期不可为空"); | |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | if (StringUtils.isBlank(data.getMaterialTypeName())) { | ... | ... |
| ... | ... | @@ -60,11 +60,11 @@ public class ContractFrameworkImportModel implements ExcelModel { |
| 60 | 60 | private String materialTypId; |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | - * 授信截止日期 | |
| 63 | + * 授时截止日期 | |
| 64 | 64 | */ |
| 65 | 65 | @ExcelRequired |
| 66 | 66 | @DateTimeFormat(StringPool.DATE_PATTERN) |
| 67 | - @ExcelProperty("授信截止日期") | |
| 67 | + @ExcelProperty("授时截止日期") | |
| 68 | 68 | private Date validityTime; |
| 69 | 69 | |
| 70 | 70 | } | ... | ... |