面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
792 B

  1. package model
  2. import (
  3. "time"
  4. )
  5. type OrderGoodsDoingFlow struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Num int `json:"num" xorm:"default 0 comment('购买数量') INT(11)"`
  8. State int `json:"state" xorm:"default 0 comment('状态 1开始制作 2制作完成烘焙开始 3烘焙完成分拣开始 4已完成 ') INT(11)"`
  9. SuccessNum int `json:"success_num" xorm:"comment('完成数量') INT(11)"`
  10. Memo string `json:"memo" xorm:"comment('制作完成备注') VARCHAR(255)"`
  11. Time time.Time `json:"time" xorm:"DATETIME"`
  12. RecordId int `json:"record_id" xorm:"default 0 comment('order_goods_doing 的id') INT(11)"`
  13. AdminId int `json:"admin_id" xorm:"default 0 comment('admin 的id') INT(11)"`
  14. }