package models import ( "time" ) type TJoinApp struct { AppId int64 `xorm:"not null pk autoincr comment('Appid') INT(11)"` AppKey string `xorm:"not null comment('AppKey') VARCHAR(24)"` AppSecret string `xorm:"not null comment('AppSecret') VARCHAR(128)"` AppName string `xorm:"not null comment('系统名称') VARCHAR(255)"` RedirectUri string `xorm:"not null comment('回调地址') VARCHAR(1024)"` LastUpdatedTime time.Time `xorm:"not null default ''0000-00-00 00:00:00'' comment('最后修改时间') index TIMESTAMP"` }