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.

18 lines
345 B

8 months ago
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
}