rent_computer_shop.go 664 B

12345678910111213141516171819202122
  1. package request
  2. import (
  3. "log-server/model/rentComputer"
  4. )
  5. type GetStatisticsComputerShopRequest struct {
  6. rentComputer.RentComputerShop
  7. PageInfo
  8. OrderKey string `json:"orderKey"` // 排序
  9. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  10. }
  11. type ComputerShopRequest struct {
  12. Id uint `json:"id"`
  13. UpdateTime string `json:"update_time"` // 更新时间
  14. CreateTime string `json:"create_time"` // 创建时间
  15. Name string `json:"name"` //供应商名
  16. PayMethod int `json:"pay_method"` //结算方式 0:先付后用 1:先用后付
  17. Description string `json:"description"` //描述说明
  18. }