local_task_count.go 751 B

12345678910111213141516171819202122232425
  1. package http_model
  2. type LocalTaskCountRequest struct {
  3. SLocalId int `json:"s_local_id"` // 服务商本地生活任务ID
  4. }
  5. type LocalTaskCountData 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 NewLocalTaskCountRequest() *LocalTaskCountRequest {
  15. return new(LocalTaskCountRequest)
  16. }
  17. func NewLocalTaskCountResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(LocalTaskCountData)
  20. return resp
  21. }