37 Star 391 Fork 118

联犀/物联网iot模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
indexLogic.go 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 22:13 . feat: 更新mod
package device
import (
"context"
"gitee.com/unitedrhino/share/errors"
"gitee.com/unitedrhino/share/utils"
"gitee.com/unitedrhino/things/service/apisvr/internal/svc"
"gitee.com/unitedrhino/things/service/apisvr/internal/types"
"gitee.com/unitedrhino/things/service/dmsvr/pb/dm"
"github.com/zeromicro/go-zero/core/logx"
)
type IndexLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewIndexLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IndexLogic {
return &IndexLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *IndexLogic) Index(req *types.OtaFirmwareDeviceIndexReq) (resp *types.OtaFirmwareDeviceIndexResp, err error) {
index, err := l.svcCtx.OtaM.OtaFirmwareDeviceIndex(l.ctx, utils.Copy[dm.OtaFirmwareDeviceIndexReq](req))
if err != nil {
er := errors.Fmt(err)
l.Errorf("%s.rpc.OtaFirmwareIndex req=%v err=%+v", utils.FuncName(), req, er)
return nil, er
}
return utils.Copy[types.OtaFirmwareDeviceIndexResp](index), nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/things.git
git@gitee.com:unitedrhino/things.git
unitedrhino
things
物联网iot模块
v1.0.3

搜索帮助