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.
|
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BrokerBusinessFinance struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
BusinessId uint // 入驻商id
|
|
OpeningBank string // 开户银行
|
|
BankAccount string // 银行账户
|
|
Address string // 地址
|
|
Telephone string // 电话
|
|
Proof string // 凭证
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|