【数据资产】
1、企业增加是否认证字段
Showing
2 changed files
with
2 additions
and
0 deletions
| ... | @@ -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 | } | ... | ... |
-
Please register or sign in to post a comment