rent_computer_ledger.go 567 B

12345678910111213141516171819202122
  1. package request
  2. import (
  3. "log-server/model/rentComputer"
  4. )
  5. type GetComputerLedgerRequest struct {
  6. rentComputer.RentComputerLedger
  7. PageInfo
  8. OrderKey string `json:"orderKey"` // 排序
  9. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  10. }
  11. type ExcelLedgerInfo struct {
  12. FileName string `json:"fileName"` // 文件名
  13. InfoList struct {
  14. rentComputer.RentComputerLedger
  15. PageInfo
  16. OrderKey string `json:"orderKey"` // 排序
  17. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  18. } `json:"infoList"`
  19. }