0d4cc93a by xiaojie

【数据资产】

查询企业认证附件和领域
1 parent 1b270ca4
...@@ -67,6 +67,14 @@ public class EnterpriseDomainRQVO { ...@@ -67,6 +67,14 @@ public class EnterpriseDomainRQVO {
67 private Date domainEndTime; 67 private Date domainEndTime;
68 68
69 /** 69 /**
70 * 协议签订日期
71 */
72 @Schema(description = "协议签订日期")
73 @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
74 @NotNull(message = "协议签订日期为空.")
75 private Date domainSignTime;
76
77 /**
70 * 协议签订人 78 * 协议签订人
71 */ 79 */
72 @Schema(description = "协议签订人") 80 @Schema(description = "协议签订人")
......
...@@ -66,6 +66,13 @@ public class EnterpriseDomainRSVO { ...@@ -66,6 +66,13 @@ public class EnterpriseDomainRSVO {
66 private Date domainEndTime; 66 private Date domainEndTime;
67 67
68 /** 68 /**
69 * 协议签订日期
70 */
71 @Schema(description = "协议签订日期")
72 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
73 private Date domainSignTime;
74
75 /**
69 * 协议签订人 76 * 协议签订人
70 */ 77 */
71 @Schema(description = "协议签订人") 78 @Schema(description = "协议签订人")
......
...@@ -56,6 +56,12 @@ public class MfEnterpriseDomain extends BaseDO { ...@@ -56,6 +56,12 @@ public class MfEnterpriseDomain extends BaseDO {
56 */ 56 */
57 @Name("协议结束日期") 57 @Name("协议结束日期")
58 private Date domainEndTime; 58 private Date domainEndTime;
59
60 /**
61 *
62 */
63 @Name("协议签订日期")
64 private Date domainSignTime;
59 65
60 /** 66 /**
61 * 协议签订人 67 * 协议签订人
......
...@@ -74,7 +74,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris ...@@ -74,7 +74,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
74 74
75 private static final String SysFuncCode = "QYRZ"; 75 private static final String SysFuncCode = "QYRZ";
76 76
77 @Value("${enterpriseAttachment.isRequired:false}") 77 @Value("${enterpriseAttachment.isRequired:true}")
78 private Boolean isRequired; 78 private Boolean isRequired;
79 79
80 @Autowired 80 @Autowired
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!