37 Star 401 Fork 123

联犀/物联网iot模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
groupInfoUpdateLogic.go 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 22:13 . feat: 更新mod
package devicegrouplogic
import (
"context"
"gitee.com/unitedrhino/share/errors"
"gitee.com/unitedrhino/things/service/dmsvr/internal/repo/relationDB"
"gitee.com/unitedrhino/things/service/dmsvr/internal/svc"
"gitee.com/unitedrhino/things/service/dmsvr/pb/dm"
"github.com/zeromicro/go-zero/core/logx"
)
type GroupInfoUpdateLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
GiDB *relationDB.GroupInfoRepo
}
func NewGroupInfoUpdateLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GroupInfoUpdateLogic {
return &GroupInfoUpdateLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
GiDB: relationDB.NewGroupInfoRepo(ctx),
}
}
// 更新分组
func (l *GroupInfoUpdateLogic) GroupInfoUpdate(in *dm.GroupInfo) (*dm.Empty, error) {
record, err := l.GiDB.FindOne(l.ctx, in.Id)
if err != nil {
return nil, err
}
record.Desc = in.Desc
record.Name = in.Name
record.Tags = in.Tags
if record.Tags == nil {
record.Tags = map[string]string{}
}
err = l.GiDB.Update(l.ctx, record)
if err != nil {
return nil, errors.Parameter.AddMsg(err.Error())
}
return &dm.Empty{}, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/things.git
git@gitee.com:unitedrhino/things.git
unitedrhino
things
物联网iot模块
v1.0.3

搜索帮助