智慧食堂
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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