12 lines
421 B
Go
12 lines
421 B
Go
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=2,3时需要
|
||
}
|