智慧食堂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
861 B

  1. package model
  2. type NursingHomePackageWithDay struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Date string `json:"date" xorm:"not null default '0000-00-00' comment('日期') CHAR(50)"`
  5. PackageId int `json:"package_id" xorm:"not null default 0 comment('套餐id') INT(11)"`
  6. IsOpenBreakfast int `json:"is_open_breakfast" xorm:"not null default 0 comment('是否开启早餐(1:开启 0:关闭)') TINYINT(1)"`
  7. IsOpenLunch int `json:"is_open_lunch" xorm:"not null default 0 comment('是否开启午餐(1:开启 0:关闭)') TINYINT(1)"`
  8. IsOpenDinner int `json:"is_open_dinner" xorm:"not null default 0 comment('是否开启晚餐(1:开启 0:关闭)') TINYINT(1)"`
  9. IsOpenReplenish int `json:"is_open_replenish" xorm:"default 0 comment('是否开启补餐(1:开启 0:关闭)') TINYINT(1)"`
  10. }