SealUser.go 617 B

12345678910111213141516171819
  1. package common
  2. type SealUser struct {
  3. // 【用户id】用户id
  4. Id string `json:"id"`
  5. // 【用户名称】用户名称
  6. Name string `json:"name,omitempty"`
  7. // 【手机号】手机号
  8. Mobile string `json:"mobile,omitempty"`
  9. // 【邮箱】邮箱
  10. Email string `json:"email,omitempty"`
  11. // 【第三方用户id】第三方用户id
  12. OpenUserId string `json:"openUserId,omitempty"`
  13. // 【用户登录账号】用户登录账号
  14. AccountNo string `json:"accountNo,omitempty"`
  15. // 【成员编号】成员编号:该员工在印章所属法人单位下的成员编号
  16. Number string `json:"number,omitempty"`
  17. }