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