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.
19 lines
935 B
19 lines
935 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BotUserVerifyLog struct {
|
|
BackImg int `xorm:"not null default 0 comment('身份证照片') INT"`
|
|
Code string `xorm:"not null default '' comment('身份证号') VARCHAR(255)"`
|
|
Country int `xorm:"not null default 0 comment('国家') INT"`
|
|
CreateTime time.Time `xorm:"comment('创建时间') DATETIME"`
|
|
FrontImg int `xorm:"not null default 0 comment('身份证照片') INT"`
|
|
Id int `xorm:"not null pk autoincr INT"`
|
|
LockPassword string `xorm:"not null default '' VARCHAR(200)"`
|
|
Name string `xorm:"not null default '' comment('名称') VARCHAR(255)"`
|
|
Status int `xorm:"not null default 1 comment('1 待审核 2 审核通过 3 审核失败') SMALLINT"`
|
|
UpdateTime time.Time `xorm:"comment('修改时间') DATETIME"`
|
|
UserId int `xorm:"not null default 0 comment('用户id') index INT"`
|
|
}
|
|
|