2023-10-27 09:22:27 +08:00

12 lines
421 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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时需要
}