2 Star 2 Fork 4

联犀/core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deptInfoUpdateLogic.go 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-29 15:39 . feat: 添加部门,并支持钉钉同步
package departmentmanagelogic
import (
"context"
"gitee.com/unitedrhino/core/service/syssvr/internal/repo/relationDB"
"gitee.com/unitedrhino/share/ctxs"
"gitee.com/unitedrhino/core/service/syssvr/internal/svc"
"gitee.com/unitedrhino/core/service/syssvr/pb/sys"
"github.com/zeromicro/go-zero/core/logx"
)
type DeptInfoUpdateLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewDeptInfoUpdateLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeptInfoUpdateLogic {
return &DeptInfoUpdateLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *DeptInfoUpdateLogic) DeptInfoUpdate(in *sys.DeptInfo) (*sys.Empty, error) {
if err := ctxs.IsAdmin(l.ctx); err != nil {
return nil, err
}
old, err := relationDB.NewDeptInfoRepo(l.ctx).FindOne(l.ctx, in.Id)
if err != nil {
return nil, err
}
old.Name = in.Name
old.Status = in.Status
old.Sort = in.Sort
old.Desc = in.Desc.GetValue()
err = relationDB.NewDeptInfoRepo(l.ctx).Update(l.ctx, old)
return &sys.Empty{}, err
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
core
v1.0.2

搜索帮助

0d507c66 1850385 C8b1a773 1850385