Files
go-common/app/service/main/point/model/rpc.go
2019-04-22 18:49:16 +08:00

20 lines
297 B
Go

package model
// ArgRPCMid def.
type ArgRPCMid struct {
Mid int64
}
// PointHistoryResp point history resp.
type PointHistoryResp struct {
Phs []*OldPointHistory
Total int
}
//ArgRPCPointHistory def .
type ArgRPCPointHistory struct {
Mid int64
PS int `form:"ps"`
PN int `form:"pn"`
}