智慧食堂
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
842 B

  1. package model
  2. type NursingHomeUserWithDay struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. OrdNo string `json:"ord_no" xorm:"not null default '' comment('订单号') VARCHAR(50)"`
  5. Uid int `json:"uid" xorm:"not null default 0 comment('用户id') INT(11)"`
  6. IdentityId int `json:"identity_id" xorm:"not null default 0 comment('身份id') INT(11)"`
  7. Kind int `json:"kind" xorm:"not null default 1 comment('就餐类型(1:早餐 2:午餐 3:晚餐)') TINYINT(1)"`
  8. Amount string `json:"amount" xorm:"not null default '' comment('金额') CHAR(50)"`
  9. Date string `json:"date" xorm:"not null default '0000-00-00' comment('日期') CHAR(50)"`
  10. State int `json:"state" xorm:"not null default 1 comment('状态(1:待就餐 2:已就餐 3:退款中 4:已退款)') TINYINT(1)"`
  11. }