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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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)" `
}