|
@@ -4,7 +4,7 @@ import "time"
|
|
|
|
|
|
type GetSecTaskListRequest struct {
|
|
type GetSecTaskListRequest struct {
|
|
PageSize int64 `json:"page_size"`
|
|
PageSize int64 `json:"page_size"`
|
|
- PageNum int64 `json:"page_num"`
|
|
|
|
|
|
+ PageNum int64 `json:"page"`
|
|
SelectionId string `json:"selection_id"`
|
|
SelectionId string `json:"selection_id"`
|
|
SecTaskStatus int `json:"sec_task_status"`
|
|
SecTaskStatus int `json:"sec_task_status"`
|
|
SearchValue string `json:"search_value"`
|
|
SearchValue string `json:"search_value"`
|
|
@@ -14,8 +14,8 @@ type GetSecTaskListRequest struct {
|
|
RewardStage int `json:"reward_stage"` // 悬赏阶段,1-2分别代表待结算(管理后台设置)、已结算(小程序端设置)
|
|
RewardStage int `json:"reward_stage"` // 悬赏阶段,1-2分别代表待结算(管理后台设置)、已结算(小程序端设置)
|
|
SaleNumMin int `json:"sale_num_min"` // 30天橱窗销量区间最小值
|
|
SaleNumMin int `json:"sale_num_min"` // 30天橱窗销量区间最小值
|
|
SaleNumMax int `json:"sale_num_max"` // 30天橱窗销量区间最大值
|
|
SaleNumMax int `json:"sale_num_max"` // 30天橱窗销量区间最大值
|
|
- OrderBy []string `json:"order_by"` // 排序条件
|
|
|
|
- OrderDesc []int `json:"order_desc"` // 是否降序
|
|
|
|
|
|
+ OrderBy []string `json:"sort_field"` // 排序条件
|
|
|
|
+ OrderDesc []string `json:"sort_order"` // 是否降序
|
|
}
|
|
}
|
|
|
|
|
|
type GetSecTaskListData struct {
|
|
type GetSecTaskListData struct {
|
|
@@ -66,6 +66,8 @@ type SecTaskInfo struct {
|
|
ChooseTalentUserId string `json:"choose_talent_user_id"` // 同意/拒绝达人操作人ID
|
|
ChooseTalentUserId string `json:"choose_talent_user_id"` // 同意/拒绝达人操作人ID
|
|
ChooseTalentUserType int `json:"choose_talent_user_type"` // 同意/拒绝达人操作人类型,1商家,2子账号
|
|
ChooseTalentUserType int `json:"choose_talent_user_type"` // 同意/拒绝达人操作人类型,1商家,2子账号
|
|
ChooseTalentUserName string `json:"choose_talent_user_name"` // 同意/拒绝达人操作人名称
|
|
ChooseTalentUserName string `json:"choose_talent_user_name"` // 同意/拒绝达人操作人名称
|
|
|
|
+ TalentOrigin string `json:"talent_origin"` // 达人来源,"公海"
|
|
|
|
+ SupplierType int `json:"supplier_type"` // 服务商类型,0达人来自公海,1为个人服务商,2为企业服务商
|
|
}
|
|
}
|
|
|
|
|
|
func NewGetSecTaskListRequest() *GetSecTaskListRequest {
|
|
func NewGetSecTaskListRequest() *GetSecTaskListRequest {
|