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.

15 lines
587 B

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