rent_set_meal.go 865 B

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