ActionOperatorInfo.go 932 B

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