package com.landtool.lanbase.modules.org.service; import com.landtool.lanbase.modules.org.entity.OrgRegion; import java.util.Date; import java.util.List; import java.util.Map; /** * @author lanbase * @Description: TODO(行政区划管理表) * @date 2018-01-15 17:48:57 */ public interface OrgRegionService { OrgRegion queryObject(String regionid); List queryList(Map map); int queryTotal(Map map); void save(OrgRegion region); void update(OrgRegion region); void delete(String regionid); void deleteBatch(String[] regionids); List queryRegion(); List queryListByTime(Date rlasteditdate); List queryUnitTreeList(); List queryTreeChildList(Map map); int queryTreeChildTotal(Map map); List queryListByParentid(String parentid); void updateRorder(OrgRegion region); int queryMaxRorder(String parentid); int selectCountOrgRegion(String regionid); }