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.
dsMin/dsFillOut/models/t_integrated_system_identit...

13 lines
426 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
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"`
}