3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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);
}