using StopShopping.Services.Models.Req; using StopShopping.Services.Models.Resp; namespace StopShopping.Services; /// /// 行政区划服务 /// public interface IDistrictService { /// /// 初始化行政区划数据库 /// /// /// Task InitialDatabaseAsync(CancellationToken cancellationToken); /// /// 获取到区的区域,直辖市无level=2 /// /// Task>> GetTop3LevelDistrictsAsync(); /// /// 获取直接下级区域 /// /// /// ApiResponse> GetChildren(DistrictParentIdParams model); }