2 Star 4 Fork 6

联犀/中台模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deptInfo.go 3.70 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-12-17 23:53 . feat: 完成部门实时同步
package relationDB
import (
"context"
"gitee.com/unitedrhino/share/stores"
"gorm.io/gorm"
"gorm.io/gorm/clause"
)
/*
这个是参考样例
使用教程:
1. 将DeptInfo全局替换为模型的表名
2. 完善todo
*/
type DeptInfoRepo struct {
db *gorm.DB
}
func NewDeptInfoRepo(in any) *DeptInfoRepo {
return &DeptInfoRepo{db: stores.GetCommonConn(in)}
}
type DeptInfoFilter struct {
ID int64
IDs []int64
WithChildren bool
IDPath string
IDPaths []string
ParentID int64
Status int64
Name string
Names []string
DingTalkID int64 //钉钉的部门ID
DingTalkIDs []int64 //钉钉的部门ID
}
func (p DeptInfoRepo) fmtFilter(ctx context.Context, f DeptInfoFilter) *gorm.DB {
db := p.db.WithContext(ctx)
if f.Name != "" {
db = db.Where("name like ?", "%"+f.Name+"%")
}
if len(f.Names) > 0 {
db = db.Where("name in ?", f.Names)
}
if f.DingTalkID != 0 {
db = db.Where("ding_talk_id = ?", f.DingTalkID)
}
if len(f.DingTalkIDs) > 0 {
db = db.Where("ding_talk_id in ?", f.DingTalkIDs)
}
if f.IDPath != "" {
db = db.Where("id_path like ?", f.IDPath+"%")
}
if len(f.IDPaths) > 0 {
or := p.db
for _, v := range f.IDPaths {
or = or.Or("id_path like ?", v+"%")
}
db = db.Where(or)
}
if f.ParentID != 0 {
db = db.Where("parent_id = ?", f.ParentID)
}
if f.ID != 0 {
db = db.Where("id = ?", f.ID)
}
if len(f.IDs) > 0 {
db = db.Where("id in ?", f.IDs)
}
if f.WithChildren {
db = db.Preload("Children")
}
return db
}
func (p DeptInfoRepo) Insert(ctx context.Context, data *SysDeptInfo) error {
result := p.db.WithContext(ctx).Create(data)
return stores.ErrFmt(result.Error)
}
func (p DeptInfoRepo) FindOneByFilter(ctx context.Context, f DeptInfoFilter) (*SysDeptInfo, error) {
var result SysDeptInfo
db := p.fmtFilter(ctx, f)
err := db.First(&result).Error
if err != nil {
return nil, stores.ErrFmt(err)
}
return &result, nil
}
func (p DeptInfoRepo) FindByFilter(ctx context.Context, f DeptInfoFilter, page *stores.PageInfo) ([]*SysDeptInfo, error) {
var results []*SysDeptInfo
db := p.fmtFilter(ctx, f).Model(&SysDeptInfo{})
db = page.ToGorm(db)
err := db.Find(&results).Error
if err != nil {
return nil, stores.ErrFmt(err)
}
return results, nil
}
func (p DeptInfoRepo) CountByFilter(ctx context.Context, f DeptInfoFilter) (size int64, err error) {
db := p.fmtFilter(ctx, f).Model(&SysDeptInfo{})
err = db.Count(&size).Error
return size, stores.ErrFmt(err)
}
func (p DeptInfoRepo) Update(ctx context.Context, data *SysDeptInfo) error {
err := p.db.WithContext(ctx).Where("id = ?", data.ID).Save(data).Error
return stores.ErrFmt(err)
}
func (d DeptInfoRepo) UpdateWithField(ctx context.Context, f DeptInfoFilter, updates map[string]any) error {
db := d.fmtFilter(ctx, f)
err := db.Model(&SysDeptInfo{}).Updates(updates).Error
return stores.ErrFmt(err)
}
func (p DeptInfoRepo) DeleteByFilter(ctx context.Context, f DeptInfoFilter) error {
db := p.fmtFilter(ctx, f)
err := db.Delete(&SysDeptInfo{}).Error
return stores.ErrFmt(err)
}
func (p DeptInfoRepo) Delete(ctx context.Context, id int64) error {
err := p.db.WithContext(ctx).Where("id = ?", id).Delete(&SysDeptInfo{}).Error
return stores.ErrFmt(err)
}
func (p DeptInfoRepo) FindOne(ctx context.Context, id int64) (*SysDeptInfo, error) {
var result SysDeptInfo
err := p.db.WithContext(ctx).Where("id = ?", id).First(&result).Error
if err != nil {
return nil, stores.ErrFmt(err)
}
return &result, nil
}
// 批量插入 LightStrategyDevice 记录
func (p DeptInfoRepo) MultiInsert(ctx context.Context, data []*SysDeptInfo) error {
err := p.db.WithContext(ctx).Clauses(clause.OnConflict{UpdateAll: true}).Model(&SysDeptInfo{}).Create(data).Error
return stores.ErrFmt(err)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
中台模块
v1.2.4

搜索帮助