新增添加用户签章配置

This commit is contained in:
2023-10-27 13:58:29 +08:00
parent c3591615f9
commit 6438942e18
6 changed files with 379 additions and 236 deletions
+7 -7
View File
@@ -71,13 +71,13 @@ type RemoveCloudCertRequest struct {
// AddUserSignConfigRequest 添加用户签章配置
type AddUserSignConfigRequest struct {
UserId string `json:"userId"` // 用户标识信息(为云证书entityId)
ConfigKey string `json:"configKey"` // 签章配置唯一标识,一张云证书配置一个
KeypairType string `json:"keypairType"` // 秘钥类型(3云证书)
CertSn string `json:"certSn"` // 证书序列号,使用医生身份证号即可
SignType string `json:"signType"` // 签章方式(签章类型; 4客户端坐标签章;5客户端关键字签章;)
SignParam string `json:"authNoticeType"` // 签章配置,JSON
SealImg string `json:"sealImg"` // 签章图片,base64格式
UserId string `json:"userId"` // 用户标识信息(为云证书entityId)
ConfigKey string `json:"configKey"` // 签章配置唯一标识,一张云证书配置一个
KeypairType string `json:"keypairType"` // 秘钥类型(3云证书)
CertSn string `json:"certSn"` // 证书序列号,使用医生身份证号即可
SignType string `json:"signType"` // 签章方式(签章类型; 4客户端坐标签章;5客户端关键字签章;)
SignParam string `json:"signParam"` // 签章配置,JSON
SealImg string `json:"sealImg"` // 签章图片,base64格式
SealType string `json:"sealType"`
SignTemplate string `json:"signTemplate"`
}