新增身份证解密
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
package requests
|
||||
|
||||
type AdminRequest struct {
|
||||
Login // 登陆
|
||||
GetOssSign // 获取医生列表-分页
|
||||
Login // 登陆
|
||||
GetOssSign // 获取医生列表-分页
|
||||
GetDecryptCardNum // 获取用户身份证号
|
||||
}
|
||||
|
||||
// Login 登陆
|
||||
@@ -18,3 +19,9 @@ type GetOssSign struct {
|
||||
UserType int `json:"user_type" form:"user_type" validate:"required,oneof=1 2 3 4" label:"用户类型"` // (1:患者 2:医生 3:药师 4:后台)
|
||||
Scene int `json:"scene" form:"scene" validate:"required,oneof=1 2 3 4" label:"场景"` // (1:头像 2:证书 3:名片)
|
||||
}
|
||||
|
||||
// GetDecryptCardNum 获取用户身份证号
|
||||
type GetDecryptCardNum struct {
|
||||
FamilyId string `json:"family_id" form:"family_id" label:"家庭成员"` // 家庭成员id
|
||||
UserId string `json:"user_id" form:"user_id" validate:"required" label:"用户"` // 用户id
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user