package common // 签署方用户【7项必填其一】 type User struct { // core:true 【用户id】用户id Id string `json:"id,omitempty"` // core:true;format:phone 【手机号】手机号 【传参】 手机号允许使用大陆、港澳台、国际手机号,手机号格式为:区号+空格+手机号,例:852 9xxxxxxx ,大陆手机号可以不传区号。 Mobile string `json:"mobile,omitempty"` // core:true;format:email 【邮箱】邮箱 【传参】 邮箱需传入符合格式的字符串,例:xxxxxxxx@163.com。 Email string `json:"email,omitempty"` // core:true 【成员编号】成员编号 Number string `json:"number,omitempty"` // core:true 【证件号】证件号 【传参】 1、支持传入用户关联的证件号,包括居民身份证、护照号、港澳居民来往内地通行证等。 2、系统中若存在多个同证件号用户,则优先匹配已认证中最早认证的用户;若无已认证用户,则关联最早创建的用户。 CardNo string `json:"cardNo,omitempty"` // core:true 【登录账号】登录账号 AccountNo string `json:"accountNo,omitempty"` // core:true 【第三方业务系统用户id】第三方业务系统用户id OpenUserId string `json:"openUserId,omitempty"` }