面包店
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

order_goods.go 1.9 KiB

7 meses atrás
7 meses atrás
6 meses atrás
6 meses atrás
6 meses atrás
7 meses atrás
6 meses atrás
7 meses atrás
6 meses atrás
7 meses atrás
6 meses atrás
7 meses atrás
6 meses atrás
6 meses atrás
12345678910111213141516171819202122232425262728
  1. package model
  2. import "time"
  3. type OrderGoods struct {
  4. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  5. Oid int64 `json:"oid" xorm:"default 0 comment('订单号') BIGINT(20)"`
  6. GoodsId int64 `json:"goods_id" xorm:"default 0 comment('商品id') BIGINT(20)"`
  7. SkuId int64 `json:"sku_id" xorm:"default 0 comment('sku') BIGINT(20)"`
  8. Num int `json:"num" xorm:"default 0 comment('购买数量') INT(11)"`
  9. FirstNum int `json:"first_num" xorm:"default 0 comment('购买数量') INT(11)"`
  10. OldNum int `json:"old_num" xorm:"default 0 comment('购买数量') INT(11)"`
  11. IsNew int `json:"is_new" xorm:"default 0 comment('购买数量') INT(11)"`
  12. Price string `json:"price" xorm:"default 0.00 comment('单价') DECIMAL(20,2)"`
  13. State int `json:"state" xorm:"default 0 comment('状态 0待制作 1制作中 2烘焙中 3分拣中 4已完成 ') INT(11)"`
  14. SkuCode string `json:"sku_code" xorm:"VARCHAR(255)"`
  15. DeductMemo string `json:"deduct_memo" xorm:"comment('商品标题') VARCHAR(255)"`
  16. Sku string `json:"sku" xorm:"comment('规格数据') VARCHAR(1000)"`
  17. GoodsTitle string `json:"goods_title" xorm:"comment('商品标题') VARCHAR(255)"`
  18. SuccessNum int `json:"success_num" xorm:"comment('完成数量') INT(11)"`
  19. Memo string `json:"memo" xorm:"comment('制作完成备注') VARCHAR(255)"`
  20. OrdNo string `json:"ord_no" xorm:"comment('') VARCHAR(255)"`
  21. Time time.Time `json:"time" xorm:"DATETIME"`
  22. AdminId int `json:"admin_id" xorm:"default 0 comment('admin 的id') INT(11)"`
  23. EnterpriseId int `json:"enterprise_id" xorm:"default 0 comment('校企 的id') INT(11)"`
  24. GoodsType int `json:"goods_type" xorm:"default 0 comment('') INT(11)"`
  25. MakeDate int `json:"make_date" xorm:"comment('') default 0 INT(11)"`
  26. }