project_update_param.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package vo
  2. type ProjectUpdateParam struct {
  3. EnterpriseId string `json:"enterprise_id"`
  4. SubAccountId int64 `json:"sub_account_id"`
  5. ProjectID string `json:"project_id"`
  6. ProductId int64 `json:"product_id"`
  7. ProjectType int64 `json:"project_type"` // 项目类型,1代表全流程项目,2代表专项项目
  8. ProjectStatus int64 `json:"project_status"` // 项目状态,1-10分别代表创建中、待审核、审核通过、招募中、招募完毕、待支付、已支付、失效、执行中、已结案
  9. ProjectName string `json:"task_name"` // 项目名称(任务标题)
  10. TalentType string `json:"talent_type"` // 达人类型
  11. RecruitDdl string `json:"recruit_ddl"` // 招募截止时间
  12. RecruitStrategys []CreateRecruitStrategy `json:"recruit_strategys"` // 招募策略
  13. ProjectForm int64 `json:"project_form"` // 项目形式,1-4分别代表实体商品寄拍、虚拟产品测评、线下探店打卡、素材微原创
  14. ContentType int64 `json:"content_type"` // 内容形式,1代表图文,2代表视频
  15. ProjectDetail string `json:"project_detail"` // 项目详情
  16. ProjectBrief []*ProjectBriefInfo `json:"project_brief"`
  17. ProjectMaterial []*ProjectMaterialInfo `json:"project_material"`
  18. }
  19. type ProjectBriefInfo struct {
  20. FileUrl string `json:"file_url"`
  21. FileUid string `json:"file_uid"`
  22. Name string `json:"name"`
  23. }
  24. type ProjectMaterialInfo struct {
  25. FileUrl string `json:"file_url"`
  26. FileUid string `json:"file_uid"`
  27. Name string `json:"name"`
  28. }
  29. // 招募策略
  30. type CreateRecruitStrategy struct {
  31. StrategyID int64 `json:"strategy_id"` // 策略id
  32. FeeForm int64 `json:"fee_form"` // 稿费形式,1-3分别代表自报价、一口价、产品置换
  33. FollowersLow int64 `json:"followers_low"` // 达人粉丝数下限
  34. FollowersUp int64 `json:"followers_up"` // 达人粉丝数上限
  35. RecruitNumber int64 `json:"recruit_number"` // 招募数量
  36. Offer float64 `json:"offer"` // 报价
  37. TOffer float64 `json:"t_offer"` // 达人所见报价
  38. ServiceCharge float64 `json:"service_charge"` // 服务费
  39. }