rpc.go 297 B

12345678910111213141516171819
  1. package model
  2. // ArgRPCMid def.
  3. type ArgRPCMid struct {
  4. Mid int64
  5. }
  6. // PointHistoryResp point history resp.
  7. type PointHistoryResp struct {
  8. Phs []*OldPointHistory
  9. Total int
  10. }
  11. //ArgRPCPointHistory def .
  12. type ArgRPCPointHistory struct {
  13. Mid int64
  14. PS int `form:"ps"`
  15. PN int `form:"pn"`
  16. }