Merge branch 'feature-tds-v1.0.0' into 'develop'
可信空间连接器入住接口 See merge request !5
Showing
2 changed files
with
16 additions
and
0 deletions
| ... | @@ -4,6 +4,7 @@ import com.csbr.cloud.common.annotations.SystemParamsDict; | ... | @@ -4,6 +4,7 @@ import com.csbr.cloud.common.annotations.SystemParamsDict; |
| 4 | import com.csbr.cloud.workflow.domain.vo.appove.BizApproveVO; | 4 | import com.csbr.cloud.workflow.domain.vo.appove.BizApproveVO; |
| 5 | import com.fasterxml.jackson.annotation.JsonFormat; | 5 | import com.fasterxml.jackson.annotation.JsonFormat; |
| 6 | import io.swagger.v3.oas.annotations.media.Schema; | 6 | import io.swagger.v3.oas.annotations.media.Schema; |
| 7 | import jdk.jfr.Name; | ||
| 7 | import lombok.Data; | 8 | import lombok.Data; |
| 8 | 9 | ||
| 9 | import java.math.BigDecimal; | 10 | import java.math.BigDecimal; |
| ... | @@ -266,6 +267,15 @@ public class EnterpriseRSVO { | ... | @@ -266,6 +267,15 @@ public class EnterpriseRSVO { |
| 266 | @SystemParamsDict(dictTypeName = "证件类型", codeFieldName = "handlePersonIdType") | 267 | @SystemParamsDict(dictTypeName = "证件类型", codeFieldName = "handlePersonIdType") |
| 267 | private String handlePersonIdTypeName; | 268 | private String handlePersonIdTypeName; |
| 268 | 269 | ||
| 270 | @Schema(description = "可信凭证颁发日期") | ||
| 271 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | ||
| 272 | private Date tdsVoucherDate; | ||
| 273 | |||
| 274 | @Schema(description = "可信身份凭证url") | ||
| 275 | private String tdsVoucherUrl; | ||
| 276 | |||
| 277 | private String tdsVoucherUnit="北京传世博润科技有限公司"; | ||
| 278 | |||
| 269 | /******** 库表存储属性 需处理 *****/ | 279 | /******** 库表存储属性 需处理 *****/ |
| 270 | 280 | ||
| 271 | /******** 自定义扩展 *****/ | 281 | /******** 自定义扩展 *****/ | ... | ... |
| ... | @@ -219,4 +219,10 @@ public class MfEnterprise extends BaseDO { | ... | @@ -219,4 +219,10 @@ public class MfEnterprise extends BaseDO { |
| 219 | 219 | ||
| 220 | @Name("经办人证件类型") | 220 | @Name("经办人证件类型") |
| 221 | private String handlePersonIdType; | 221 | private String handlePersonIdType; |
| 222 | |||
| 223 | @Name("可信凭证颁发日期") | ||
| 224 | private Date tdsVoucherDate; | ||
| 225 | |||
| 226 | @Name("可信身份凭证url") | ||
| 227 | private String tdsVoucherUrl; | ||
| 222 | } | 228 | } | ... | ... |
-
Please register or sign in to post a comment