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.

10 lines
407 B

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)"`
}