37 Star 391 Fork 118

联犀/物联网iot模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
protocolInfoReadLogic.go 953 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 22:13 . feat: 更新mod
package protocolmanagelogic
import (
"context"
"gitee.com/unitedrhino/things/service/dmsvr/internal/logic"
"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 ProtocolInfoReadLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewProtocolInfoReadLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ProtocolInfoReadLogic {
return &ProtocolInfoReadLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
// 协议详情
func (l *ProtocolInfoReadLogic) ProtocolInfoRead(in *dm.WithIDCode) (*dm.ProtocolInfo, error) {
f := relationDB.ProtocolInfoFilter{
ID: in.Id,
Code: in.Code,
}
po, err := relationDB.NewProtocolInfoRepo(l.ctx).FindOneByFilter(l.ctx, f)
return logic.ToProtocolInfoPb(po), err
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/things.git
git@gitee.com:unitedrhino/things.git
unitedrhino
things
物联网iot模块
v1.0.1

搜索帮助