| | |
| | | import java.util.Set;
|
| | |
|
| | | import com.moral.common.bean.PageBean;
|
| | | import com.moral.entity.DeviceVersion;
|
| | | import com.moral.entity.Organization;
|
| | |
|
| | | public interface OrganizationService {
|
| | | Set<Integer> getChildOrganizationIds(Integer orgId);
|
| | | Set<Integer> getChildOrganizationIds(Integer orgId);
|
| | |
|
| | | List<Organization> getOrganizationsByAreaName(Map<String, Object> parameters);
|
| | | List<Organization> getOrganizationsByAreaName(Map<String, Object> parameters);
|
| | |
|
| | | public PageBean queryByPageBean(PageBean pageBean);
|
| | | PageBean queryByPageBean(PageBean pageBean);
|
| | |
|
| | | public void addOrModify(Organization organization);
|
| | | void addOrModify(Organization organization);
|
| | |
|
| | | public void deleteByIds(Integer... ids);
|
| | | void deleteByIds(Integer... ids);
|
| | |
|
| | | List<Organization> getOrganizationsByName(String name);
|
| | |
|
| | | Organization getOrganizationById(int id);
|
| | |
|
| | | Organization getFatherOrg(int childId);
|
| | |
|
| | | List<Organization> getOrganizationList(String organizationName);
|
| | |
|
| | | Organization getOrganizationByAccountId(Integer accountId);
|
| | | }
|