package request import ( "log-server/model/rentComputer" ) type GetComputerLedgerRequest struct { rentComputer.RentComputerLedger PageInfo OrderKey string `json:"orderKey"` // 排序 Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true } type ExcelLedgerInfo struct { FileName string `json:"fileName"` // 文件名 InfoList struct { rentComputer.RentComputerLedger PageInfo OrderKey string `json:"orderKey"` // 排序 Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true } `json:"infoList"` }