广告平台(站长下代理使用)
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

agent_bank_info.go 994 B

1 månad sedan
1234567891011121314
  1. package md
  2. type AgentBankInfo struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Uuid int `json:"uuid" xorm:"not null comment('站长id') index unique(IDX_UUID_TYPE) INT(11)"`
  5. AgentId int `json:"agent_id" xorm:"not null comment('代理id') unique(IDX_UUID_TYPE) INT(11)"`
  6. State int `json:"state" xorm:"not null default 0 comment('状态(0:待审核 1:审核通过 2:审核拒绝)') TINYINT(1)"`
  7. Memo string `json:"memo" xorm:"comment('备注 审核时填写的') VARCHAR(255)"`
  8. CurrencyConf int `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. }