package common type TransmitterInfo struct { // core:true 【用户姓名】用户姓名 ReceiverName string `json:"receiverName,omitempty"` // core:true 【联系方式】联系方式 【传参】 1、可传入用户手机号或者邮箱。 2、手机号允许使用大陆、港澳台、国际手机号,手机号格式为:区号+空格+手机号,例:852 9xxxxxxx ,大陆手机号可以不传区号。 3、邮箱需传入符合格式的字符串,例:xxxxxxxx@163.com。 ReceiverMobile string `json:"receiverMobile,omitempty"` // core:true 【成员编号】成员编号 Number string `json:"number,omitempty"` // core:true 【登录账号】登录账号 AccountNo string `json:"accountNo,omitempty"` }