using Hotline.Share.Dtos.Snapshot; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hotline.Application.Snapshot; public interface IIndustryApplication { /// /// 新增行业 /// /// Task AddIndustryAsync(AddIndustryDto dto, CancellationToken cancellationToken); /// /// 获取行业集合 /// /// /// ISugarQueryable GetIndustres(IndustryListInDto dto); }