rent_set_meal.go 683 B

123456789101112131415
  1. package response
  2. type SetMealStatisticsReply1 struct {
  3. Id uint `json:"id"` //ID
  4. UpdateTime string `json:"update_time"` // 更新时间
  5. CreateTime string `json:"create_time"` // 创建时间
  6. Name string `json:"name"` //套餐名称
  7. Remark string `json:"remark"` //备注
  8. RentPrice float64 `json:"rent_price"` //价格标准
  9. PriceType int `json:"price_type"` //套餐类型 0:天卡 1:周卡 2:月卡
  10. RentPriceDay float64 `json:"rent_price_day"` //折算天租金
  11. ShopId uint `json:"shop_id"` //供应商ID
  12. ShopName string `json:"shop_name"` //供应商名
  13. }