广告平台(媒体使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 rivejä
996 B

  1. package md
  2. type MediumBankInfo struct {
  3. Id string `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Uuid string `json:"uuid" xorm:"not null comment('站长id') index unique(IDX_UUID_TYPE) INT(11)"`
  5. MediumId string `json:"medium_id" xorm:"not null comment('代理id') unique(IDX_UUID_TYPE) INT(11)"`
  6. State string `json:"state" xorm:"not null default 0 comment('状态(0:待审核 1:审核通过 2:审核拒绝)') TINYINT(1)"`
  7. CurrencyConf string `json:"currency_conf" xorm:"default 0 comment('结算币种 1人民币') TINYINT(1)"`
  8. Memo string `json:"memo" xorm:"comment('备注 审核时填写的') VARCHAR(255)"`
  9. Bank string `json:"bank" xorm:"comment('开户银行') VARCHAR(255)"`
  10. BankBranch string `json:"bank_branch" xorm:"comment('开户银行分行') VARCHAR(255)"`
  11. BankNo string `json:"bank_no" xorm:"comment('银行卡号') VARCHAR(255)"`
  12. Licence string `json:"licence" xorm:"comment('开户许可证') VARCHAR(255)"`
  13. }