面包店
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.
 
 
 
 
 

10 righe
487 B

  1. package model
  2. type FinUserCommissionLog struct {
  3. Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
  4. Uid int `json:"uid" xorm:"not null INT(10)"`
  5. Oid string `json:"oid" xorm:"not null default '' comment('订单ID') VARCHAR(50)"`
  6. OrderType int `json:"order_type" xorm:"not null default 0 comment('0自购,1分享') TINYINT(1)"`
  7. OrderProvider string `json:"order_provider" xorm:"not null default '' comment('订单供应商') VARCHAR(32)"`
  8. }