面包店
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

19 satır
1005 B

  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. BuyInfo string `json:"buy_info" xorm:"comment('购买人信息 json') VARCHAR(2000)"`
  13. Amount string `json:"amount" xorm:"default 0.00 comment('付款金额') DECIMAL(20,2)"`
  14. BuyPhone string `json:"buy_phone" xorm:"comment('购买人手机') VARCHAR(20)"`
  15. EnterpriseName string `json:"enterprise_name" xorm:"comment('校企名称') VARCHAR(20)"`
  16. }