12345678910111213141516171819202122232425 |
- package http_model
- type ProjectTaskCountRequest struct {
- SProjectId int `json:"s_project_id"` // 服务商种草任务ID
- }
- type ProjectTaskCountData struct {
- Stage1 int64 `json:"stage_1"` // 达人未处理
- Stage2 int64 `json:"stage_2"` // 已提报
- Stage3 int64 `json:"stage_3"` // 拒绝合作
- Stage4 int64 `json:"stage_4"` // 已提报-未处理
- Stage5 int64 `json:"stage_5"` // 已提报-同意合作
- Stage6 int64 `json:"stage_6"` // 已提报-品牌拒绝
- Stage7 int64 `json:"stage_7"` // 全部报名达人
- }
- func NewProjectTaskCountRequest() *ProjectTaskCountRequest {
- return new(ProjectTaskCountRequest)
- }
- func NewProjectTaskCountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ProjectTaskCountData)
- return resp
- }
|