package model import ( "gorm.io/gorm" ) //实名认证模型 type RealName struct { gorm.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"` }