12 lines
328 B
Go
12 lines
328 B
Go
package model
|
|
|
|
//实名认证模型
|
|
type RealName struct {
|
|
Model
|
|
Name string `gorm:"not null"`
|
|
IDNum string `gorm:"type:varchar(18) not null"`
|
|
TelNum string `gorm:"type:varchar(11) not null"`
|
|
IdcardFront string `gorm:"type:varchar(256) not null"`
|
|
IdcardBack string `gorm:"type:varchar(256) not null"`
|
|
}
|