面包店
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

24 líneas
1.4 KiB

  1. package model
  2. import (
  3. "time"
  4. )
  5. type OrderGoodsDoing struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Oid int64 `json:"oid" xorm:"default 0 comment('订单号') BIGINT(20)"`
  8. GoodsId int64 `json:"goods_id" xorm:"default 0 comment('商品id') BIGINT(20)"`
  9. SkuId int64 `json:"sku_id" xorm:"default 0 comment('sku') BIGINT(20)"`
  10. Num int `json:"num" xorm:"default 0 comment('购买数量') INT(11)"`
  11. State int `json:"state" xorm:"default 0 comment('状态 1开始制作 2制作完成烘焙开始 3烘焙完成分拣开始 4已完成 ') INT(11)"`
  12. SkuCode string `json:"sku_code" xorm:"VARCHAR(255)"`
  13. GoodsTitle string `json:"goods_title" xorm:"comment('商品标题') VARCHAR(255)"`
  14. Sku string `json:"sku" xorm:"comment('规格数据') VARCHAR(1000)"`
  15. SuccessNum int `json:"success_num" xorm:"comment('完成数量') INT(11)"`
  16. Memo string `json:"memo" xorm:"comment('制作完成备注') VARCHAR(255)"`
  17. Time time.Time `json:"time" xorm:"DATETIME"`
  18. RecordId int `json:"record_id" xorm:"default 0 comment('order_goods 的id') INT(11)"`
  19. AdminId int `json:"admin_id" xorm:"default 0 comment('admin 的id') INT(11)"`
  20. EnterpriseId int `json:"enterprise_id" xorm:"default 0 comment('校企 的id') INT(11)"`
  21. }