talent_search_param.go 687 B

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