package com.bonus.sys.service; import java.util.List; import com.bonus.sys.BaseService; import com.bonus.sys.beans.OrgBean; import com.bonus.sys.beans.ZNode; public interface OrgService extends BaseService { int delete(Integer id); int insertOrgBean(OrgBean record); int updateOrgBean(OrgBean record); List findRepairGroup(OrgBean o); List getBackGroup(); Integer checkIsReportDept(Integer orgId); List findRepairGroupList(); List getOrgTree(); String getNextCode(OrgBean org); OrgBean findOrgById(OrgBean org); List checkNameIsExist(OrgBean o); int addOrg(OrgBean o); int updateOrg(OrgBean o); List findOrgBySelect(); OrgBean findParentOrgById(String companyId); }