123456789101112131415161718192021222324252627282930 |
- package http_model
- import "youngee_b_api/model/gorm_model"
- type ShowTaskProgressData struct {
- TaskId string `json:"task_id"` // 种草子任务ID
- ProjectId string `json:"project_id"` // 种草任务ID
- TalentId string `json:"talent_id"` // 达人ID
- TalentHeadUrl string `json:"talent_head_url"` // 达人头像url
- TalentPlatformAccountId string `json:"talent_platform_account_id"` // 达人平台账号
- TalentLocation string `json:"talent_location"` // 达人地域
- ServiceCharge float64 `json:"service_charge"` // 服务费
- DraftFee float64 `json:"draft_fee"` // 达人稿费
- TaskStage int `json:"task_stage"` // 任务状态
- TaskLogs []*gorm_model.YounggeeTaskLog `json:"task_logs"` // 任务日志
- }
- type ShowTaskProgressRequest struct {
- TaskId string `json:"task_id"` // 种草子任务ID
- }
- func NewShowTaskProgressRequest() *ShowTaskProgressRequest {
- return new(ShowTaskProgressRequest)
- }
- func NewShowTaskProgressResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ShowTaskProgressData)
- return resp
- }
|