rpc.go 304 B

1234567891011121314151617181920
  1. package model
  2. import "time"
  3. //ArgSpecial arg
  4. type ArgSpecial struct {
  5. GroupID int64
  6. }
  7. //ArgInfo arg
  8. type ArgInfo struct {
  9. Mid int64
  10. From int
  11. }
  12. //ArgMidWithDate arg
  13. type ArgMidWithDate struct {
  14. Mid int64
  15. Date time.Time // 需要查询的时间,如果不填,会使用当前最新的数据
  16. }