Commit bb2427e4b4543ecf05f11e2f6f6c37bbadddbe0e

Authored by yeqianyong
1 parent f74a6974

楚江erp:合同框架导入模板修改

... ... @@ -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 }
... ...