新增云证书操作

This commit is contained in:
2023-10-27 09:22:27 +08:00
parent dd4bbbb288
commit f8825ecdd9
9 changed files with 682 additions and 102 deletions
+11
View File
@@ -0,0 +1,11 @@
package requests
type UserCaCertRequest struct {
AddUserSignConfig // 添加用户签章配置
}
// AddUserSignConfig 添加用户签章配置
type AddUserSignConfig struct {
Type int `json:"type" form:"type" validate:"required,oneof=1 2 3" label:"类型"` // 1:医院 2:医生 3:药师
UserId string `json:"user_id" form:"user_id" label:"ID"` // 用户id,当type=23时需要
}