面包店
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
984 B

  1. package model
  2. type OrderGoodsMakeStock struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Gid int64 `json:"gid" xorm:"BIGINT(20)"`
  5. SkuId int64 `json:"sku_id" xorm:"BIGINT(20)"`
  6. SkuCode string `json:"sku_code" xorm:"VARCHAR(255)"`
  7. GoodsTitle string `json:"goods_title" xorm:"comment('商品标题') VARCHAR(255)"`
  8. Sku string `json:"sku" xorm:"comment('规格数据') VARCHAR(1000)"`
  9. WaitMakeNum int `json:"wait_make_num" xorm:"default 0 comment('待制作') INT(11)"`
  10. WaitBakingNum int `json:"wait_baking_num" xorm:"comment('待烘焙') INT(11)"`
  11. WaitSortingNum int `json:"wait_sorting_num" xorm:"default 0 comment('待分拣') INT(11)"`
  12. SuccessNum int `json:"success_num" xorm:"default 0 comment('已分拣') INT(11)"`
  13. GoodsType int `json:"goods_type" xorm:"default 0 comment('') INT(11)"`
  14. MakeDate int `json:"make_date" xorm:"comment('') default 0 INT(11)"`
  15. }