Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- package md
-
- type MediumBankInfo struct {
- Id string `json:"id" xorm:"not null pk autoincr INT(11)"`
- Uuid string `json:"uuid" xorm:"not null comment('站长id') index unique(IDX_UUID_TYPE) INT(11)"`
- MediumId string `json:"medium_id" xorm:"not null comment('代理id') unique(IDX_UUID_TYPE) INT(11)"`
- State string `json:"state" xorm:"not null default 0 comment('状态(0:待审核 1:审核通过 2:审核拒绝)') TINYINT(1)"`
- CurrencyConf string `json:"currency_conf" xorm:"default 0 comment('结算币种 1人民币') TINYINT(1)"`
- Memo string `json:"memo" xorm:"comment('备注 审核时填写的') VARCHAR(255)"`
- Bank string `json:"bank" xorm:"comment('开户银行') VARCHAR(255)"`
- BankBranch string `json:"bank_branch" xorm:"comment('开户银行分行') VARCHAR(255)"`
- BankNo string `json:"bank_no" xorm:"comment('银行卡号') VARCHAR(255)"`
- Licence string `json:"licence" xorm:"comment('开户许可证') VARCHAR(255)"`
- }
|