98 lines
1.8 KiB
Go
98 lines
1.8 KiB
Go
package proto
|
|
|
|
import (
|
|
"service/api/base"
|
|
"service/dbstruct"
|
|
)
|
|
|
|
// op 创建
|
|
type OpCreateReq struct {
|
|
base.BaseRequest
|
|
*dbstruct.Zone
|
|
}
|
|
|
|
type OpCreateData struct {
|
|
}
|
|
|
|
type OpCreateResp struct {
|
|
base.BaseResponse
|
|
Data *OpCreateData `json:"data"`
|
|
}
|
|
|
|
// op 删除
|
|
type OpDeleteReq struct {
|
|
base.BaseRequest
|
|
Id int64 `json:"id"`
|
|
}
|
|
|
|
type OpDeleteData struct {
|
|
}
|
|
|
|
type OpDeleteResp struct {
|
|
base.BaseResponse
|
|
Data *OpDeleteData `json:"data"`
|
|
}
|
|
|
|
// op 更新
|
|
type OpUpdateReq struct {
|
|
base.BaseRequest
|
|
*dbstruct.Zone
|
|
}
|
|
|
|
type OpUpdateData struct {
|
|
}
|
|
|
|
type OpUpdateResp struct {
|
|
base.BaseResponse
|
|
Data *OpUpdateData `json:"data"`
|
|
}
|
|
|
|
// op 列表
|
|
type OpListReq struct {
|
|
base.BaseRequest
|
|
Offset int `json:"offset"`
|
|
Limit int `json:"limit"`
|
|
}
|
|
|
|
type OpListData struct {
|
|
List []*dbstruct.Zone `json:"list"`
|
|
Offset int `json:"offset"`
|
|
More int `json:"more"`
|
|
}
|
|
|
|
type OpListResp struct {
|
|
base.BaseResponse
|
|
Data *OpListData `json:"data"`
|
|
}
|
|
|
|
// op 列表
|
|
type OpListByUserIdReq struct {
|
|
base.BaseRequest
|
|
UserId int64 `json:"user_id"`
|
|
Offset int `json:"offset"`
|
|
Limit int `json:"limit"`
|
|
}
|
|
|
|
type OpListByUserIdData struct {
|
|
List []*OpZoneVO `json:"list"`
|
|
Offset int `json:"offset"`
|
|
More int `json:"more"`
|
|
}
|
|
|
|
type OpListByUserIdResp struct {
|
|
base.BaseResponse
|
|
Data *OpListByUserIdData `json:"data"`
|
|
}
|
|
|
|
// op 代运营解锁主播所有空间
|
|
type OpZoneUnlockThirdPartnersParam struct {
|
|
ThirdPartMids []int64 `json:"third_part_mids"` // 代运营的mid
|
|
StreamerMid int64 `json:"streamer_mid"` // 主播的mid
|
|
}
|
|
|
|
// op 代运营解锁主播所有空间
|
|
type OpZoneUnlockCollaboratorsParam struct {
|
|
CollaboratorMids []int64 `json:"collaborator_mids"` // 协作者的mids
|
|
StreamerMid int64 `json:"streamer_mid"` // 主播的mid
|
|
}
|