| 12345678910111213141516171819 |
- package common
- type SealUser struct {
- // 【用户id】用户id
- Id string `json:"id"`
- // 【用户名称】用户名称
- Name string `json:"name,omitempty"`
- // 【手机号】手机号
- Mobile string `json:"mobile,omitempty"`
- // 【邮箱】邮箱
- Email string `json:"email,omitempty"`
- // 【第三方用户id】第三方用户id
- OpenUserId string `json:"openUserId,omitempty"`
- // 【用户登录账号】用户登录账号
- AccountNo string `json:"accountNo,omitempty"`
- // 【成员编号】成员编号:该员工在印章所属法人单位下的成员编号
- Number string `json:"number,omitempty"`
- }
|