Employee.go 520 B

12345678910111213141516
  1. package common
  2. type Employee struct {
  3. // 【成员ID】成员ID
  4. Id string `json:"id,omitempty"`
  5. // 【成员名称】成员名称
  6. Name string `json:"name,omitempty"`
  7. // 【成员对应的用户ID】成员对应的用户ID
  8. UserId string `json:"userId,omitempty"`
  9. // 【成员手机号】成员手机号
  10. Mobile string `json:"mobile,omitempty"`
  11. // 【成员邮箱】成员邮箱
  12. Email string `json:"email,omitempty"`
  13. EmployeeCustomFields []*EmployeeCustomFieldRespone `json:"employeeCustomFields,omitempty"`
  14. }