面包店
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

22 rindas
1.2 KiB

  1. package model
  2. import (
  3. "time"
  4. )
  5. type Order struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Oid int64 `json:"oid" xorm:"comment('订单号') BIGINT(20)"`
  8. State int `json:"state" xorm:"default 0 comment('状态 0待制作 1制作中 2烘焙中 3分拣中 4已完成 5已取消') INT(11)"`
  9. CreateAt time.Time `json:"create_at" xorm:"comment('下单时间') DATETIME"`
  10. CancelAt time.Time `json:"cancel_at" xorm:"comment('取消时间') DATETIME"`
  11. EnterpriseId int `json:"enterprise_id" xorm:"default 0 comment('校企id') INT(11)"`
  12. Date int `json:"date" xorm:"default 0 comment('校企id') INT(11)"`
  13. BuyInfo string `json:"buy_info" xorm:"comment('购买人信息 json') VARCHAR(2000)"`
  14. Amount string `json:"amount" xorm:"default 0.00 comment('付款金额') DECIMAL(20,2)"`
  15. BuyPhone string `json:"buy_phone" xorm:"comment('购买人手机') VARCHAR(20)"`
  16. EnterpriseName string `json:"enterprise_name" xorm:"comment('校企名称') VARCHAR(20)"`
  17. OrdNo string `json:"ord_no" xorm:"comment('') VARCHAR(255)"`
  18. MakeDate int `json:"make_date" xorm:"comment('') default 0 INT(11)"`
  19. }