This commit is contained in:
laodaming 2023-11-10 15:43:46 +08:00
parent e999672037
commit ca6f0c51e5
3 changed files with 15 additions and 19 deletions

View File

@ -7,20 +7,19 @@ import (
// ldap_groups
type LdapGroups struct {
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
GroupName *string `gorm:"default:'';" json:"group_name"` //
Remark *string `gorm:"default:'';" json:"remark"` //
Creator *string `gorm:"default:'';" json:"creator"` //
GroupType *string `gorm:"default:'';" json:"group_type"` //
ParentId *int64 `gorm:"default:0;" json:"parent_id"` //
SourceDeptId *string `gorm:"default:'';" json:"source_dept_id"` //
Source *string `gorm:"default:'';" json:"source"` //
SourceDeptParentId *string `gorm:"default:'';" json:"source_dept_parent_id"` //
GroupDn *string `gorm:"default:'';" json:"group_dn"` //
SyncState *int64 `gorm:"default:0;" json:"sync_state"` //
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"` //
Dtime *time.Time `gorm:"index;default:'0000-00-00 00:00:00';" json:"dtime"` //
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
GroupName *string `gorm:"default:'';" json:"group_name"` //
Remark *string `gorm:"default:'';" json:"remark"` //
Creator *string `gorm:"default:'';" json:"creator"` //
GroupType *string `gorm:"default:'';" json:"group_type"` //
ParentId *int64 `gorm:"default:0;" json:"parent_id"` //
DeptId *string `gorm:"default:'';" json:"dept_id"` //
DeptParentId *string `gorm:"default:'';" json:"dept_parent_id"` //
GroupDn *string `gorm:"default:'';" json:"group_dn"` //
SyncState *int64 `gorm:"default:0;" json:"sync_state"` //
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"` //
Dtime *time.Time `gorm:"index;default:'0000-00-00 00:00:00';" json:"dtime"` //
}
type LdapGroupsModel struct {
db *gorm.DB

View File

@ -8,8 +8,7 @@ import (
// ldap_users
type LdapUsers struct {
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
Source *int64 `gorm:"default:0;" json:"source"` // 来源 1飞书
AppId *string `gorm:"default:'';" json:"app_id"` //
UserId *string `gorm:"default:'';" json:"user_id"` //
OpenId *string `gorm:"default:'';" json:"open_id"` //
UnionId *string `gorm:"default:'';" json:"union_id"` //
Name *string `gorm:"default:'';" json:"name"` //

View File

@ -115,10 +115,8 @@ func (l *WebhookLogic) OnUserChange(data []byte) error {
feiShuMsgCreateTime := time.UnixMilli(feiShuMsgCreateTimeInt64)
departmentIds := strings.Join(msg.Event.Object.DepartmentIds, ",")
joinTime := time.Unix(msg.Event.Object.Joint64ime, 0)
source := int64(1)
return l.svcCtx.AllModels.LdapUsers.CreateOrUpdate(l.ctx, msg.Header.AppId, msg.Event.Object.OpenId, &gmodel.LdapUsers{
Source: &source,
AppId: &msg.Header.AppId,
UserId: &msg.Event.Object.UserId,
OpenId: &msg.Event.Object.OpenId,
UnionId: &msg.Event.Object.UnionId,
Name: &msg.Event.Object.Name,