You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
448 B
18 lines
448 B
2 years ago
|
using Znyc.CloudCar.Model.Dtos.EquipmentPicture;
|
||
|
|
||
|
namespace Znyc.CloudCar.IServices.EquipmentPicture
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 设备信息图片服务
|
||
|
/// </summary>
|
||
|
public interface IEquipmentPictureService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 查询设备图片
|
||
|
/// </summary>
|
||
|
/// <param name="id"></param>
|
||
|
/// <returns></returns>
|
||
|
Task<List<EquipmentPictureOutput>> GetListAsync(long id);
|
||
|
}
|
||
|
}
|