98ca0466 by xu

可信空间连接器入住接口

1 parent 1acc4dd5
...@@ -251,14 +251,20 @@ public class EnterpriseRSVO { ...@@ -251,14 +251,20 @@ public class EnterpriseRSVO {
251 @SystemParamsDict(dictTypeName = "证件类型", codeFieldName = "handlePersonIdType") 251 @SystemParamsDict(dictTypeName = "证件类型", codeFieldName = "handlePersonIdType")
252 private String handlePersonIdTypeName; 252 private String handlePersonIdTypeName;
253 253
254 @Schema(description = "可信凭证颁发日期") 254 /**
255 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") 255 * 可信身份凭证
256 private Date tdsVoucherDate; 256 */
257 @Schema(description = "可信身份凭证")
258 private String trustedIdentityCredential;
257 259
258 @Schema(description = "可信身份凭证url") 260 /**
259 private String tdsVoucherUrl; 261 * 凭证颁发日期
262 */
263 @Schema(description = "凭证颁发日期")
264 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
265 private Date credentialTime;
260 266
261 private String tdsVoucherUnit="北京传世博润科技有限公司"; 267 private String trustedIdentityCredentialUnit="北京传世博润科技有限公司";
262 268
263 /******** 库表存储属性 需处理 *****/ 269 /******** 库表存储属性 需处理 *****/
264 270
......
...@@ -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 * 凭证颁发日期
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!