| 12345678910111213 |
- package common
- type ActionOperatorInfo struct {
- // <ext>core:true</ext> 【姓名】姓名 【作用】 当签署人不存在时,将创建新用户并以该参数作为用户姓名;若签署人账号已存在,该参数传参无效。
- OperatorName string `json:"operatorName,omitempty"`
- // <ext>core:true</ext> 【证件号】证件号
- OperatorCardId string `json:"operatorCardId,omitempty"`
- // <ext>core:true</ext> 【联系方式】联系方式 【传参】 1、可传入用户手机号或者邮箱。 2、手机号允许使用大陆、港澳台、国际手机号,手机号格式为:区号+空格+手机号,例:852 9xxxxxxx ,大陆手机号可以不传区号。 3、邮箱需传入符合格式的字符串,例:xxxxxxxx@163.com。
- OperatorContact string `json:"operatorContact,omitempty"`
- // <ext>core:true</ext> 【成员编号】成员编号
- OperatorNumber string `json:"operatorNumber,omitempty"`
- }
|