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.
24 lines
576 B
24 lines
576 B
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type CustomerMaster struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
CustomerId uint
|
|
Name string // 姓名
|
|
IdCard string // 身份证号
|
|
IdCardFront string // 身份证正面
|
|
IdCardBack string // 身份证反面
|
|
BankCard string // 银行卡号
|
|
Bank string // 开户行
|
|
BankAccount string // 开户账号
|
|
Photo string // 半身照
|
|
AuditId uint // 审核id
|
|
//Audit CustomerMasterAudit `gorm:"foreignKey:AuditId"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
//Phone string // 手机号
|
|
}
|