1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.moral.service;
|
| import java.util.List;
| import java.util.Set;
|
| import com.moral.entity.Organization;
|
| public interface OrganizationService {
|
| Set<Integer> getChildOrganizationIds(Integer orgId);
|
| List<Organization> getOrganizationsByAreaName(String areaName);
|
| }
|
|