| 12345678910111213141516171819202122232425 |
- package request
- import (
- "log-server/model/rentComputer"
- )
- type GetStatisticsSetMealRequest struct {
- rentComputer.RentSetMeal
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type SetMealRequest struct {
- Id uint `json:"id"` //ID
- UpdateTime string `json:"update_time"` // 更新时间
- CreateTime string `json:"create_time"` // 创建时间
- Name string `json:"name"` //套餐名称
- Remark string `json:"remark"` //备注
- RentPrice float64 `json:"rent_price"` //价格标准
- PriceType int `json:"price_type"` //套餐类型 0:天卡 1:周卡 2:月卡
- RentPriceDay float64 `json:"rent_price_day"` //折算天租金
- ShopId uint `json:"shop_id"` //供应商ID
- }
|