智慧食堂
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

nursing_home_user_with_day.go 842 B

1年前
123456789101112
  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. }