package models import ( "time" ) type TIntegratedSystemIdentity struct { Appid string `xorm:"not null pk index CHAR(32)"` IdentityId int64 `xorm:"not null pk INT(11)"` Visiable int64 `xorm:"not null comment('可见范围,1:全部可见,2:按职务分管可见,0:不可见') INT(255)"` UpdateTs time.Time `xorm:"not null default 'current_timestamp()' comment('时间戳') TIMESTAMP"` }