智慧食堂
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

nursing_home_package_with_day.go 861 B

il y a 1 an
1234567891011
  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. }