37 Star 385 Fork 118

联犀/物联网iot模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
otaModuleInfoCreateLogic.go 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 22:13 . feat: 更新mod
package otamanagelogic
import (
"context"
"gitee.com/unitedrhino/share/ctxs"
"gitee.com/unitedrhino/share/domain/deviceMsg/msgOta"
"gitee.com/unitedrhino/share/errors"
"gitee.com/unitedrhino/share/utils"
"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 OtaModuleInfoCreateLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewOtaModuleInfoCreateLogic(ctx context.Context, svcCtx *svc.ServiceContext) *OtaModuleInfoCreateLogic {
return &OtaModuleInfoCreateLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *OtaModuleInfoCreateLogic) OtaModuleInfoCreate(in *dm.OtaModuleInfo) (*dm.WithID, error) {
if err := ctxs.IsRoot(l.ctx); err != nil {
return nil, err
}
l.ctx = ctxs.WithRoot(l.ctx)
if in.Code == msgOta.ModuleCodeDefault || in.Code == "" {
return nil, errors.Parameter.AddMsg("编码不能为空及不能为default")
}
_, err := l.svcCtx.ProductCache.GetData(l.ctx, in.ProductID)
if err != nil {
if errors.Cmp(err, errors.NotFind) {
return nil, errors.Parameter.AddMsg("product not find")
}
return nil, err
}
po := utils.Copy[relationDB.DmOtaModuleInfo](in)
in.Id = 0
err = relationDB.NewOtaModuleInfoRepo(l.ctx).Insert(l.ctx, po)
if err != nil {
return nil, err
}
return &dm.WithID{Id: po.ID}, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/things.git
git@gitee.com:unitedrhino/things.git
unitedrhino
things
物联网iot模块
v1.2.0

搜索帮助