re_local_detail.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package vo
  2. import (
  3. "youngee_b_api/app/entity"
  4. )
  5. type ReLocalDetail struct {
  6. // 系统信息
  7. LocalId string `json:"localId"` // 项目id
  8. LocalStatus int64 `json:"localStatus"` // 项目状态,1-10分别代表创建中、待审核、审核通过、招募中、招募完毕、待支付、已支付、执行中、失效、已结案
  9. LocalPlatform int64 `json:"localPlatform"` // 项目平台,1-7分别代表红book、抖音、微博、快手、b站、大众点评、知乎
  10. CreatedAt string `json:"createdAt"` // 创建时间
  11. CreatorName string `json:"creatorName"` // 创建者
  12. Phone string `json:"phone"` // 联系方式
  13. WX string `json:"wx"` // 微信
  14. EstimatedCost float64 `json:"estimatedCost"` // 成本预估
  15. ServiceChargeRate float64 `json:"serviceChargeRate"` // 公开服务费率
  16. // 支付方式参数待定
  17. // 关联主体
  18. StoreInfo *ReStorePreview `json:"storeInfo"`
  19. PromoteBody int64 `json:"promoteBody"`
  20. TeamBuyingInfo *ReTeamBuyingPreview `json:"teamBuyingInfo"`
  21. Donate int64 `json:"donate"`
  22. // 招募要求
  23. TalentType string `json:"talentType"`
  24. RecruitDdl string `json:"recruitDdl"`
  25. RecruitStrategys []*LocalRecruitStrategy `json:"recruitStrategys"` // 招募策略
  26. // 执行要求
  27. TaskForm int64 `json:"taskForm"`
  28. ContentType int64 `json:"contentType"`
  29. TaskDetail string `json:"taskDetail"`
  30. TaskBriefs []*entity.ProjectBrief `json:"taskBriefs"` // 选品brief列表
  31. TaskMaterials []*entity.ProjectMaterial `json:"taskMaterials"` // 选品示例列表
  32. Tools string `json:"tools"` // 工具选择
  33. }
  34. type LocalRecruitStrategy struct {
  35. StrategyId int64 `json:"strategyId"`
  36. FeeForm int64 `json:"feeForm"`
  37. FollowersLow int64 `json:"followersLow"`
  38. FollowersUp int64 `json:"followersUp"`
  39. RecruitNumber int64 `json:"recruitNumber"`
  40. Offer float64 `json:"offer"`
  41. TOffer float64 `json:"tOffer"` // 达人所见报价
  42. ServiceCharge float64 `json:"serviceCharge"`
  43. SelectedNumber int64 `json:"selectedNumber"` // 确认合作数量
  44. TotalOffer float64 `json:"totalOffer"` // 合计
  45. }