...
|
...
|
@@ -29,13 +29,14 @@ type Opinion struct { |
|
|
}
|
|
|
|
|
|
type UserSimple struct {
|
|
|
Id int64 `json:"id"` // 人员id
|
|
|
Name string `json:"name"` // 人员的名字
|
|
|
Avatar string `json:"avatar,omitempty"` // 人员头像URL
|
|
|
Group []string `json:"group,omitempty"` // 人员的分组
|
|
|
Position string `json:"position,omitempty"` // 职位
|
|
|
Company string `json:"company,omitempty"` // 公司
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
Id int64 `json:"id"` // 人员id
|
|
|
Name string `json:"name"` // 人员的名字
|
|
|
Avatar string `json:"avatar,omitempty"` // 人员头像URL
|
|
|
// GroupId int64 `json:"groupId"` //分组id
|
|
|
//Group string `json:"group,omitempty"` // 人员的分组
|
|
|
Position string `json:"position,omitempty"` // 职位
|
|
|
Company string `json:"company,omitempty"` // 公司
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
}
|
|
|
|
|
|
// 记录数据的操作人
|
...
|
...
|
|