广告平台(站长下代理使用)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

agent_bank_info.go 994 B

il y a 1 mois
il y a 3 semaines
il y a 1 mois
il y a 3 semaines
il y a 1 mois
1234567891011121314
  1. package md
  2. type AgentBankInfo 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. AgentId string `json:"agent_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. Memo string `json:"memo" xorm:"comment('备注 审核时填写的') VARCHAR(255)"`
  8. CurrencyConf string `json:"currency_conf" xorm:"default 0 comment('结算币种 1人民币') TINYINT(1)"`
  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. }