params.go 260 B

1234567891011
  1. package dashboard
  2. type rankParam struct {
  3. Start string `json:"start"`
  4. End string `json:"end"`
  5. }
  6. type queryParam struct {
  7. Id string `json:"id"`
  8. Type uint8 `json:"type"` // 0:不限、1:一周、2:一月、3:一季、4:半年、5:一年
  9. }