| 1234567891011121314151617181920 |
- package rentComputer
- // RentSetMeal 套餐表
- type RentSetMeal 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
- //ShopName string `json:"shop_name"` //供应商名
- }
- func (RentSetMeal) TableName() string {
- return "rent_set_meal"
- }
|