log_statistics.go 444 B

123456789101112131415161718
  1. package request
  2. import "log-server/model/log"
  3. type GetStatisticsLogRequest struct {
  4. log.StatisticsLog
  5. PageInfo
  6. OrderKey string `json:"orderKey"` // 排序
  7. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  8. }
  9. type GetStatisticsComputerRequest struct {
  10. log.LogComputer
  11. PageInfo
  12. OrderKey string `json:"orderKey"` // 排序
  13. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  14. }