123456789101112131415161718192021222324252627282930313233 |
- package http_model
- type CreatorListRequest struct {
- PageSize int32 `json:"page_size"`
- PageNum int32 `json:"page_num"`
- Id string `json:"id"` // 达人id
- TalentWxNickname string `json:"talent_wx_nickname"` // 达人的微信昵称
- CreateDate string `json:"create_date"` // 创建时间
- }
- type CreatorListPreview struct {
- Id string `json:"id"` // 达人id
- TalentWxNickname string `json:"talent_wx_nickname"` // 达人的微信昵称
- IsBindAccount string `json:"is_bind_account"` // 是否绑定账号
- CanWithDraw int64 `json:"canwithdraw"` // 可用余额
- TalentPhone string `json:"talent_phone_number"` // 达人的联系方式
- CreateDate string `json:"create_date"` // 创建时间
- }
- type CreatorListData struct {
- CreatorListPreview []*CreatorListPreview `json:"creator_list_preview"`
- Total string `json:"total"`
- }
- func NewCreatorListRequest() *CreatorListRequest {
- return new(CreatorListRequest)
- }
- func NewCreatorListResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(CreatorListData)
- return resp
- }
|