Merge branch 'feature-tds-v1.0.0' into 'develop'
可信空间连接器入住接口 See merge request !6
Showing
5 changed files
with
26 additions
and
14 deletions
| ... | @@ -267,14 +267,20 @@ public class EnterpriseRSVO { | ... | @@ -267,14 +267,20 @@ public class EnterpriseRSVO { |
| 267 | @SystemParamsDict(dictTypeName = "证件类型", codeFieldName = "handlePersonIdType") | 267 | @SystemParamsDict(dictTypeName = "证件类型", codeFieldName = "handlePersonIdType") |
| 268 | private String handlePersonIdTypeName; | 268 | private String handlePersonIdTypeName; |
| 269 | 269 | ||
| 270 | @Schema(description = "可信凭证颁发日期") | 270 | /** |
| 271 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | 271 | * 可信身份凭证 |
| 272 | private Date tdsVoucherDate; | 272 | */ |
| 273 | @Schema(description = "可信身份凭证") | ||
| 274 | private String trustedIdentityCredential; | ||
| 273 | 275 | ||
| 274 | @Schema(description = "可信身份凭证url") | 276 | /** |
| 275 | private String tdsVoucherUrl; | 277 | * 凭证颁发日期 |
| 278 | */ | ||
| 279 | @Schema(description = "凭证颁发日期") | ||
| 280 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | ||
| 281 | private Date credentialTime; | ||
| 276 | 282 | ||
| 277 | private String tdsVoucherUnit="北京传世博润科技有限公司"; | 283 | private String trustedIdentityCredentialUnit="北京传世博润科技有限公司"; |
| 278 | 284 | ||
| 279 | /******** 库表存储属性 需处理 *****/ | 285 | /******** 库表存储属性 需处理 *****/ |
| 280 | 286 | ... | ... |
| ... | @@ -83,7 +83,7 @@ public class TdsConnectorIdentityRQVO extends FlowRQBaseVO { | ... | @@ -83,7 +83,7 @@ public class TdsConnectorIdentityRQVO extends FlowRQBaseVO { |
| 83 | * 可信身份凭证 | 83 | * 可信身份凭证 |
| 84 | */ | 84 | */ |
| 85 | @Schema(description = "可信身份凭证") | 85 | @Schema(description = "可信身份凭证") |
| 86 | private JSONArray trustedIdentityCredential; | 86 | private String trustedIdentityCredential; |
| 87 | 87 | ||
| 88 | /** | 88 | /** |
| 89 | * 凭证颁发日期 | 89 | * 凭证颁发日期 | ... | ... |
| ... | @@ -71,7 +71,7 @@ public class TdsConnectorIdentityRSVO extends BaseVO { | ... | @@ -71,7 +71,7 @@ public class TdsConnectorIdentityRSVO extends BaseVO { |
| 71 | * 可信身份凭证 | 71 | * 可信身份凭证 |
| 72 | */ | 72 | */ |
| 73 | @Schema(description = "可信身份凭证") | 73 | @Schema(description = "可信身份凭证") |
| 74 | private Map<String,String> trustedIdentityCredential; | 74 | private String trustedIdentityCredential; |
| 75 | 75 | ||
| 76 | /** | 76 | /** |
| 77 | * 凭证颁发日期 | 77 | * 凭证颁发日期 | ... | ... |
| ... | @@ -2,6 +2,7 @@ package com.csbr.qingcloud.portal.mybatis.entity; | ... | @@ -2,6 +2,7 @@ package com.csbr.qingcloud.portal.mybatis.entity; |
| 2 | 2 | ||
| 3 | import com.baomidou.mybatisplus.annotation.FieldStrategy; | 3 | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| 4 | import com.baomidou.mybatisplus.annotation.TableField; | 4 | import com.baomidou.mybatisplus.annotation.TableField; |
| 5 | import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler; | ||
| 5 | import csbr.cloud.entity.domain.base.dao.BaseDO; | 6 | import csbr.cloud.entity.domain.base.dao.BaseDO; |
| 6 | import jdk.jfr.Name; | 7 | import jdk.jfr.Name; |
| 7 | import lombok.Data; | 8 | import lombok.Data; |
| ... | @@ -220,9 +221,15 @@ public class MfEnterprise extends BaseDO { | ... | @@ -220,9 +221,15 @@ public class MfEnterprise extends BaseDO { |
| 220 | @Name("经办人证件类型") | 221 | @Name("经办人证件类型") |
| 221 | private String handlePersonIdType; | 222 | private String handlePersonIdType; |
| 222 | 223 | ||
| 223 | @Name("可信凭证颁发日期") | 224 | /** |
| 224 | private Date tdsVoucherDate; | 225 | * 可信身份凭证 |
| 226 | */ | ||
| 227 | @Name("可信身份凭证") | ||
| 228 | private String trustedIdentityCredential; | ||
| 225 | 229 | ||
| 226 | @Name("可信身份凭证url") | 230 | /** |
| 227 | private String tdsVoucherUrl; | 231 | * 凭证颁发日期 |
| 232 | */ | ||
| 233 | @Name("凭证颁发日期") | ||
| 234 | private Date credentialTime; | ||
| 228 | } | 235 | } | ... | ... |
| ... | @@ -75,8 +75,7 @@ public class MfTdsConnectorIdentity extends BaseShardingDO { | ... | @@ -75,8 +75,7 @@ public class MfTdsConnectorIdentity extends BaseShardingDO { |
| 75 | * 可信身份凭证 | 75 | * 可信身份凭证 |
| 76 | */ | 76 | */ |
| 77 | @Name("可信身份凭证") | 77 | @Name("可信身份凭证") |
| 78 | @TableField(typeHandler = FastjsonTypeHandler.class) | 78 | private String trustedIdentityCredential; |
| 79 | private JSONArray trustedIdentityCredential; | ||
| 80 | 79 | ||
| 81 | /** | 80 | /** |
| 82 | * 凭证颁发日期 | 81 | * 凭证颁发日期 | ... | ... |
-
Please register or sign in to post a comment