可信空间连接器入住接口
Showing
3 changed files
with
16 additions
and
1 deletions
| ... | @@ -102,6 +102,9 @@ public class TdsConnectorIdentityManagementRSVO extends BaseVO { | ... | @@ -102,6 +102,9 @@ public class TdsConnectorIdentityManagementRSVO extends BaseVO { |
| 102 | */ | 102 | */ |
| 103 | @Schema(description = "业务审批状态") | 103 | @Schema(description = "业务审批状态") |
| 104 | private String bizApproveState; | 104 | private String bizApproveState; |
| 105 | |||
| 106 | @Schema(title = "跨平台审批状态(N 初始 A 审批中 Y 已通过 R 驳回 C 已撤销)") | ||
| 107 | private String crossPlatformApproveState; | ||
| 105 | 108 | ||
| 106 | /******** 库表存储属性 需处理 *****/ | 109 | /******** 库表存储属性 需处理 *****/ |
| 107 | 110 | ... | ... |
| ... | @@ -79,7 +79,16 @@ public class TdsConnectorIdentityRSVO extends BaseVO { | ... | @@ -79,7 +79,16 @@ public class TdsConnectorIdentityRSVO extends BaseVO { |
| 79 | @Schema(description = "凭证颁发日期") | 79 | @Schema(description = "凭证颁发日期") |
| 80 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | 80 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| 81 | private Date credentialTime; | 81 | private Date credentialTime; |
| 82 | 82 | ||
| 83 | /** | ||
| 84 | * 业务审批状态 | ||
| 85 | */ | ||
| 86 | @Schema(description = "业务审批状态") | ||
| 87 | private String bizApproveState; | ||
| 88 | |||
| 89 | @Schema(title = "跨平台审批状态(N 初始 A 审批中 Y 已通过 R 驳回 C 已撤销)") | ||
| 90 | private String crossPlatformApproveState; | ||
| 91 | |||
| 83 | /******** 库表存储属性 需处理 *****/ | 92 | /******** 库表存储属性 需处理 *****/ |
| 84 | 93 | ||
| 85 | /******** 自定义扩展 *****/ | 94 | /******** 自定义扩展 *****/ | ... | ... |
| ... | @@ -87,6 +87,9 @@ public class MfTdsConnectorIdentityManagement extends BaseShardingDO { | ... | @@ -87,6 +87,9 @@ public class MfTdsConnectorIdentityManagement extends BaseShardingDO { |
| 87 | @Name("业务审批状态") | 87 | @Name("业务审批状态") |
| 88 | private String bizApproveState; | 88 | private String bizApproveState; |
| 89 | 89 | ||
| 90 | @Name("主平台同步状态(Y 成功 E 失败)") | ||
| 91 | private String crossPlatformApproveState; | ||
| 92 | |||
| 90 | /** | 93 | /** |
| 91 | * 所属法人或其他组织名称 | 94 | * 所属法人或其他组织名称 |
| 92 | */ | 95 | */ | ... | ... |
-
Please register or sign in to post a comment