12345678910111213141516 |
- package vo
- type TalentDataParam struct {
- EnterpriseId string `json:"enterprise_id"`
- SubAccountId int64 `json:"sub_account_id"`
- TalentId string `json:"Talent_id"`
- Platform int `json:"platform"`
- Page int `json:"page"`
- PageSize int `json:"page_size"`
- Others string `json:"others"` // 任务标题
- PlatFormUserId string `json:"platform_userid"`
- SortField []string `json:"sort_field,omitempty"`
- SortOrder []string `json:"sort_order,omitempty"`
- TaskType int `json:"task_type"` // 1带货,2种草,3本地生活
- RelType int `json:"rel_type"` // 1不限,2只与本账号相关
- }
|