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.

11 lines
612 B

This file contains ambiguous Unicode characters!

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 TSysIdentity struct {
IdentityId int64 `xorm:"not null pk autoincr comment('主键,自动增长') INT(11)"`
IdentityName string `xorm:"not null comment('身份名称') VARCHAR(32)"`
IdentityType int64 `xorm:"not null comment('用户的身份类型0超级管理员1系统级管理用户2业务级管理员用户3普通用户。') INT(11)"`
LoginBegin string `xorm:"default 'NULL' comment('生成登录账号使用') VARCHAR(20)"`
SortId int64 `xorm:"default NULL comment('排序号') INT(11)"`
TableName string `xorm:"default 'NULL' VARCHAR(255)"`
}