package com.ycl.service.region;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ycl.entity.region.SccgRegion;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 遂昌行政区域 服务类
|
* </p>
|
*
|
* @author lyq
|
* @since 2022-09-16
|
*/
|
public interface ISccgRegionService extends IService<SccgRegion> {
|
/**
|
* 树结构
|
* @return
|
*/
|
List<SccgRegion> getTree();
|
IPage<SccgRegion> list(SccgRegion sccgRegion);
|
|
List<SccgRegion> getChildren(Long parentId);
|
}
|