package common type SilentUserRequest struct { // core:true;format:phone 【手机号】手机号 【传参】 手机号允许使用大陆、港澳台、国际手机号,手机号格式为:区号+空格+手机号,例:852 9xxxxxxx ,大陆手机号可以不传区号。 Mobile string `json:"mobile,omitempty"` // core:true 【证件号】证件号 【传参】 1、支持传入用户关联的证件号,包括居民身份证、护照号、港澳居民来往内地通行证等。 2、系统中若存在多个同证件号用户,则优先匹配已认证中最早认证的用户;若无已认证用户,则关联最早创建的用户。 CardNo string `json:"cardNo,omitempty"` // 【用户Id】用户Id Id *int64 `json:"id,omitempty"` // 【成员编号】成员编号 Number string `json:"number,omitempty"` // core:true;format:email 【邮箱】邮箱 【传参】 邮箱需传入符合格式的字符串,例:xxxxxxxx@163.com。 Email string `json:"email,omitempty"` // 【登录账号】登录账号 AccountNo string `json:"accountNo,omitempty"` // 【第三方业务系统用户id】第三方业务系统用户id OpenUserId string `json:"openUserId,omitempty"` // 【业务系统标识】业务系统标识 【作用】 1:根据第三方业务系统用户id查询系统成员/用户信息时使用 2:涉及到多套业务系统集成且不同系统间第三方业务系统用户id可能重复时需要传入该参数 SystemCode string `json:"systemCode,omitempty"` }