using BPA.SAAS.Manage.Application.Device.Dtos.Device;
using BPA.SAAS.Manage.Application.Device.Dtos.ProductTopics;
using BPA.SAAS.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Product;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Application.Device.Interface
{
public interface IProductTopicsService
{
///
/// 分页查询
///
///
///
Task GetProductTopicsPage(ProductTopicsQueryInputDto inputDto);
///
/// 查询topics列表
///
///
///
Task> GetProductTopicList(ProductTopicsQueryDto inputDto);
///
/// 添加
///
///
///
Task AddProductTopics(ProductTopicsBaseDto inputDto);
///
/// 更新
///
///
///
Task UpdateProductTopics(ProductTopicsBaseDto inputDto);
///
/// 删除
///
///
///
Task DelProductTopics(List inputList);
}
}