87 lines
1.6 KiB
Go
87 lines
1.6 KiB
Go
package proto
|
|
|
|
import (
|
|
"service/api/base"
|
|
"service/dbstruct"
|
|
)
|
|
|
|
// op 创建
|
|
type OpCreateReq struct {
|
|
base.BaseRequest
|
|
*dbstruct.ZoneMomentThumbsUp
|
|
}
|
|
|
|
type OpCreateData struct {
|
|
}
|
|
|
|
type OpCreateResp struct {
|
|
base.BaseResponse
|
|
Data *OpCreateData `json:"data"`
|
|
}
|
|
|
|
// op 删除
|
|
type OpDeleteReq struct {
|
|
base.BaseRequest
|
|
ZoneMomentId *int64 `json:"zone_moment_id"`
|
|
Mid *int64 `json:"mid"`
|
|
}
|
|
|
|
type OpDeleteData struct {
|
|
}
|
|
|
|
type OpDeleteResp struct {
|
|
base.BaseResponse
|
|
Data *OpDeleteData `json:"data"`
|
|
}
|
|
|
|
// op 更新
|
|
type OpUpdateReq struct {
|
|
base.BaseRequest
|
|
*dbstruct.ZoneMomentThumbsUp
|
|
}
|
|
|
|
type OpUpdateData struct {
|
|
}
|
|
|
|
type OpUpdateResp struct {
|
|
base.BaseResponse
|
|
Data *OpUpdateData `json:"data"`
|
|
}
|
|
|
|
// op 列表
|
|
type OpListReq struct {
|
|
base.BaseRequest
|
|
ZoneMomentId *int64 `json:"zone_moment_id"`
|
|
Offset int `json:"offset"`
|
|
Limit int `json:"limit"`
|
|
}
|
|
|
|
type OpListData struct {
|
|
List []*dbstruct.ZoneMomentThumbsUp `json:"list"`
|
|
Offset int `json:"offset"`
|
|
More int `json:"more"`
|
|
}
|
|
|
|
type OpListResp struct {
|
|
base.BaseResponse
|
|
Data *OpListData `json:"data"`
|
|
}
|
|
|
|
// op 列表-按句柄
|
|
type OpListBySentenceReq struct {
|
|
base.BaseRequest
|
|
ZoneMomentId *int64 `json:"zone_moment_id"`
|
|
Mid *int64 `json:"mid"`
|
|
}
|
|
|
|
type OpListBySentenceData struct {
|
|
List []*dbstruct.ZoneMomentThumbsUp `json:"list"`
|
|
Offset int `json:"offset"`
|
|
More int `json:"more"`
|
|
}
|
|
|
|
type OpListBySentenceResp struct {
|
|
base.BaseResponse
|
|
Data *OpListBySentenceData `json:"data"`
|
|
}
|