package model import ( "time" ) type DealerFinance struct { Id uint `gorm:"primaryKey"` DealerId uint // 车商id OpeningBank string // 开户银行 BankAccount string // 银行账户 Address string // 地址 Telephone string // 电话 Proof string // 凭证 CreatedAt time.Time UpdatedAt time.Time }