You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB
C#

#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.Imm.Daemon.Repository.service
* 77A94DE4-5143-4392-9125-9E505AFC5D2D
*
* WenJY
*
* 2025-09-05 11:25:32
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Imm.Daemon.Model.dao;
using Sln.Imm.Daemon.Repository.service.@base;
namespace Sln.Imm.Daemon.Repository.service;
public interface IBaseDeviceInfoService : IBaseService<BaseDeviceInfo>
{
/// <summary>
/// 通过导航查询方式获取设备信息及下属参数
/// </summary>
/// <returns></returns>
List<BaseDeviceInfo> GetDeviceInfosByNavigate();
}