23 lines
520 B
C#
23 lines
520 B
C#
using Nirvana.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Waste.Application.ThirdApiInfo
|
|
{
|
|
/// <summary>
|
|
/// 设备对接接口
|
|
/// </summary>
|
|
public interface IOpenService
|
|
{
|
|
/// <summary>
|
|
/// 获取上报相关信息
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
/// <returns></returns>
|
|
Task<ResultInfo> GetDevInfoAsync(GetDevInfoRequestDto data);
|
|
}
|
|
}
|