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