面包店
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

15 rader
871 B

  1. package model
  2. type OrderGoods struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Oid int64 `json:"oid" xorm:"default 0 comment('订单号') BIGINT(20)"`
  5. GoodsId int64 `json:"goods_id" xorm:"default 0 comment('商品id') BIGINT(20)"`
  6. SkuId int64 `json:"sku_id" xorm:"default 0 comment('sku') BIGINT(20)"`
  7. Num int `json:"num" xorm:"default 0 comment('购买数量') INT(11)"`
  8. Price string `json:"price" xorm:"default 0.00 comment('单价') DECIMAL(20,2)"`
  9. State int `json:"state" xorm:"default 0 comment('状态 0待制作 1制作中 2烘焙中 3分拣中 4已完成 ') INT(11)"`
  10. SkuCode string `json:"sku_code" xorm:"VARCHAR(255)"`
  11. GoodsTitle string `json:"goods_title" xorm:"comment('商品标题') VARCHAR(255)"`
  12. Sku string `json:"sku" xorm:"comment('规格数据') VARCHAR(1000)"`
  13. }