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.
17 lines
448 B
17 lines
448 B
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);
|
|
}
|
|
}
|
|
|