package models type TAppBase struct { AppId string `xorm:"not null pk comment('系统ID') CHAR(36)"` AppCode string `xorm:"not null comment('系统编码') VARCHAR(50)"` AppName string `xorm:"not null comment('系统名称') VARCHAR(100)"` AccessKey string `xorm:"not null comment('AK') CHAR(20)"` SecretKey string `xorm:"not null comment('SK') CHAR(26)"` AppUrl string `xorm:"default 'NULL' comment('系统集成页面调用地址') VARCHAR(1024)"` AppIcon string `xorm:"default 'NULL' comment('系统图标的路径') VARCHAR(1024)"` RedirectUri string `xorm:"default 'NULL' comment('统一认证回调地址') VARCHAR(1024)"` LogoutUri string `xorm:"default 'NULL' comment('统一认证登出地址') VARCHAR(1024)"` BUse int32 `xorm:"not null comment('是否可用 -2:不可用 1:可用') TINYINT(1)"` }