12345678910111213141516171819202122232425 |
- package http_model
- type LocalTaskCountRequest struct {
- SLocalId int `json:"s_local_id"` // 服务商本地生活任务ID
- }
- type LocalTaskCountData 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 NewLocalTaskCountRequest() *LocalTaskCountRequest {
- return new(LocalTaskCountRequest)
- }
- func NewLocalTaskCountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(LocalTaskCountData)
- return resp
- }
|