talent_condition.go 408 B

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