代码拉取完成,页面将自动刷新
package devicemanagelogic
import (
"context"
"gitee.com/unitedrhino/share/devices"
"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 DeviceProfileIndexLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewDeviceProfileIndexLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeviceProfileIndexLogic {
return &DeviceProfileIndexLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *DeviceProfileIndexLogic) DeviceProfileIndex(in *dm.DeviceProfileIndexReq) (*dm.DeviceProfileIndexResp, error) {
pos, err := relationDB.NewDeviceProfileRepo(l.ctx).FindByFilter(l.ctx, relationDB.DeviceProfileFilter{
Codes: in.Codes,
Device: devices.Core{
ProductID: in.Device.ProductID,
DeviceName: in.Device.DeviceName,
},
}, nil)
if err != nil {
return nil, err
}
var rets []*dm.DeviceProfile
for _, po := range pos {
ret := utils.Copy[dm.DeviceProfile](po)
ret.Device = &dm.DeviceCore{
ProductID: po.ProductID,
DeviceName: po.DeviceName,
}
rets = append(rets, ret)
}
return &dm.DeviceProfileIndexResp{Profiles: rets}, err
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。