package common type Employee struct { // 【成员ID】成员ID Id string `json:"id,omitempty"` // 【成员名称】成员名称 Name string `json:"name,omitempty"` // 【成员对应的用户ID】成员对应的用户ID UserId string `json:"userId,omitempty"` // 【成员手机号】成员手机号 Mobile string `json:"mobile,omitempty"` // 【成员邮箱】成员邮箱 Email string `json:"email,omitempty"` EmployeeCustomFields []*EmployeeCustomFieldRespone `json:"employeeCustomFields,omitempty"` }