project_task_count.go 763 B

12345678910111213141516171819202122232425
  1. package http_model
  2. type ProjectTaskCountRequest struct {
  3. SProjectId int `json:"s_project_id"` // 服务商种草任务ID
  4. }
  5. type ProjectTaskCountData struct {
  6. Stage1 int64 `json:"stage_1"` // 达人未处理
  7. Stage2 int64 `json:"stage_2"` // 已提报
  8. Stage3 int64 `json:"stage_3"` // 拒绝合作
  9. Stage4 int64 `json:"stage_4"` // 已提报-未处理
  10. Stage5 int64 `json:"stage_5"` // 已提报-同意合作
  11. Stage6 int64 `json:"stage_6"` // 已提报-品牌拒绝
  12. Stage7 int64 `json:"stage_7"` // 全部报名达人
  13. }
  14. func NewProjectTaskCountRequest() *ProjectTaskCountRequest {
  15. return new(ProjectTaskCountRequest)
  16. }
  17. func NewProjectTaskCountResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(ProjectTaskCountData)
  20. return resp
  21. }