using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Api.Custom.Regions;
using ARW.Model.Models.Business.Custom.Regions;
using ARW.Model.Vo.Api.Custom.Regions;
namespace ARW.Service.Api.IBusinessService.Custom.Regions
{
///
/// 省市区数据表接口类Api
///
/// @author admin
/// @date 2023-06-09
///
public interface IRegionServiceApi : IBaseService
{
///
/// 获取省市区数据表树形列表(Api)
///
///
///
Task> GetRegionTreeListApi(RegionQueryDtoApi parm);
}
}