面包店
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

16 righe
720 B

  1. package model
  2. import (
  3. "time"
  4. )
  5. type BusinessCollegeOrd struct {
  6. Id int64 `json:"id" xorm:"pk comment('订单id') BIGINT(22)"`
  7. Uid int `json:"uid" xorm:"not null default 0 comment('uid') INT(10)"`
  8. ModId int `json:"mod_id" xorm:"not null default 0 comment('模块ID') INT(10)"`
  9. PayAmount string `json:"pay_amount" xorm:"not null default 0 comment('付费金额') DECIMAL(2)"`
  10. PayChannel int `json:"pay_channel" xorm:"not null default 0 comment('1:支付宝,2:微信,3:余额') TINYINT(1)"`
  11. State int `json:"state" xorm:"not null default 0 comment('支付状态:0未支付1已支付') TINYINT(1)"`
  12. CreateAt time.Time `json:"create_at" xorm:"created"`
  13. }