合图调整
This commit is contained in:
parent
c6ad2dbe8e
commit
de05d258ef
|
@ -16,6 +16,7 @@ type LdapGroup struct {
|
|||
Metadata *[]byte `gorm:"default:'';" json:"metadata"` //
|
||||
Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` //
|
||||
Utime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"utime"` //
|
||||
Type *string `gorm:"default:'';" json:"type"` // 类型:people=个人
|
||||
}
|
||||
type LdapGroupModel struct {
|
||||
db *gorm.DB
|
||||
|
|
|
@ -7,10 +7,11 @@ import (
|
|||
|
||||
// ldap_user ldap_用户id递增表
|
||||
type LdapUser struct {
|
||||
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
|
||||
UserDn *string `gorm:"index;default:'';" json:"user_dn"` //
|
||||
Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` //
|
||||
Utime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"utime"` //
|
||||
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
|
||||
GroupId *int64 `gorm:"default:0;" json:"group_id"` // 权限组
|
||||
UserDn *string `gorm:"index;default:'';" json:"user_dn"` //
|
||||
Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` //
|
||||
Utime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"utime"` //
|
||||
}
|
||||
type LdapUserModel struct {
|
||||
db *gorm.DB
|
||||
|
|
Loading…
Reference in New Issue
Block a user