talent_condition.go 481 B

12345678910
  1. package common_model
  2. type TalentConditions struct {
  3. ProjectId int64 `condition:"project_id"` // 项目ID
  4. LogisticsStatus int64 `condition:"logistics_status"` // 物流状态
  5. ScriptStatus int64 `condition:"script_status"` // 脚本状态
  6. StrategyId int64 `condition:"strategy_id"` // 策略ID
  7. TaskId string `condition:"task_id"` // 任务ID
  8. PlatformNickname string `condition:"platform_nickname"` // 账号昵称
  9. }