18 lines
424 B
Go
18 lines
424 B
Go
package entitys
|
|
|
|
type DingTalkUserInfo struct {
|
|
UserId string `json:"user_id"`
|
|
StaffId string `json:"staff_id"`
|
|
Name string `json:"name"`
|
|
Dept []Dept `json:"dept"`
|
|
IsBoss int `json:"is_boss"`
|
|
IsSenior int `json:"is_senior"`
|
|
HiredDate int `json:"hired_date"`
|
|
Extension string `json:"extension"`
|
|
}
|
|
|
|
type Dept struct {
|
|
DeptName string `json:"dept_name"`
|
|
DeptId int `json:"dept_id"`
|
|
}
|