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.
|
package models
|
|
|
|
type TAppIdentity struct {
|
|
AppId string `xorm:"not null pk comment('系统ID') index CHAR(36)"`
|
|
IdentityId int32 `xorm:"not null pk comment('身份ID') INT(11)"`
|
|
}
|