23740d7c by xiaojie

【数据资产】

1、企业增加是否认证字段
1 parent 00fca795
...@@ -39,6 +39,7 @@ public class ConnectorIdentityRQVO { ...@@ -39,6 +39,7 @@ public class ConnectorIdentityRQVO {
39 * 凭证颁发日期 39 * 凭证颁发日期
40 */ 40 */
41 @Schema(description = "凭证颁发日期") 41 @Schema(description = "凭证颁发日期")
42 @JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
42 private Date credentialTime; 43 private Date credentialTime;
43 44
44 } 45 }
......
...@@ -522,6 +522,7 @@ public class TdsConnectorIdentityServiceImpl extends FlowAbstractImpl implements ...@@ -522,6 +522,7 @@ public class TdsConnectorIdentityServiceImpl extends FlowAbstractImpl implements
522 MfTdsConnectorIdentity entity = mfTdsConnectorIdentityService.getById(vo.getGuid()); 522 MfTdsConnectorIdentity entity = mfTdsConnectorIdentityService.getById(vo.getGuid());
523 if (ObjectUtils.isNotEmpty(entity)) { 523 if (ObjectUtils.isNotEmpty(entity)) {
524 entity.setConnectorIdentity(vo.getConnectorIdentity()); 524 entity.setConnectorIdentity(vo.getConnectorIdentity());
525 entity.setCredentialTime(vo.getCredentialTime());
525 mfTdsConnectorIdentityService.updateById(entity); 526 mfTdsConnectorIdentityService.updateById(entity);
526 } 527 }
527 } 528 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!