| 123456789101112131415161718 |
- package request
- import "log-server/model/log"
- type GetStatisticsLogRequest struct {
- log.StatisticsLog
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type GetStatisticsComputerRequest struct {
- log.LogComputer
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
|