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