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<OrgRegion> queryList(Map<String, Object> map);
|
|
int queryTotal(Map<String, Object> map);
|
|
void save(OrgRegion region);
|
|
void update(OrgRegion region);
|
|
void delete(String regionid);
|
|
void deleteBatch(String[] regionids);
|
|
List<OrgRegion> queryRegion();
|
|
List<OrgRegion> queryListByTime(Date rlasteditdate);
|
|
List<OrgRegion> queryUnitTreeList();
|
|
List<OrgRegion> queryTreeChildList(Map<String, Object> map);
|
|
int queryTreeChildTotal(Map<String, Object> map);
|
|
List<OrgRegion> queryListByParentid(String parentid);
|
|
void updateRorder(OrgRegion region);
|
|
int queryMaxRorder(String parentid);
|
|
int selectCountOrgRegion(String regionid);
|
}
|