package models type TJoinApp struct { AppId int32 `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)"` }