智慧食堂
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.

12 lignes
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. }