面包店
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

15 wiersze
824 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. }