118 lines
2.7 KiB
Java
118 lines
2.7 KiB
Java
package com.zcloud.mapper.dsno2.system;
|
||
|
||
import com.zcloud.entity.Page;
|
||
import com.zcloud.entity.PageData;
|
||
import com.zcloud.entity.system.Department;
|
||
|
||
import java.util.List;
|
||
|
||
/**
|
||
* 说明: 组织机构接Mapper
|
||
* 作者:luoxiaobao
|
||
* 官网:www.qdkjchina.com
|
||
*/
|
||
public interface Department2Mapper {
|
||
|
||
/**新增
|
||
* @param pd
|
||
* @throws Exception
|
||
*/
|
||
public void save(PageData pd)throws Exception;
|
||
|
||
/**删除
|
||
* @param pd
|
||
* @throws Exception
|
||
*/
|
||
public void delete(PageData pd)throws Exception;
|
||
|
||
/**修改
|
||
* @param pd
|
||
* @throws Exception
|
||
*/
|
||
public void edit(PageData pd)throws Exception;
|
||
|
||
/**列表
|
||
* @param page
|
||
* @throws Exception
|
||
*/
|
||
public List<PageData> datalistPage(Page page)throws Exception;
|
||
|
||
/**通过id获取数据
|
||
* @param pd
|
||
* @throws Exception
|
||
*/
|
||
public PageData findById(PageData pd)throws Exception;
|
||
|
||
/**通过编码获取数据
|
||
* @param pd
|
||
* @throws Exception
|
||
*/
|
||
public PageData findByBianma(PageData pd)throws Exception;
|
||
|
||
/**
|
||
* 通过ID获取其子级列表
|
||
* @param parentId
|
||
* @return
|
||
* @throws Exception
|
||
*/
|
||
public List<Department> listSubDepartmentByParentId(String parentId) throws Exception;
|
||
|
||
/**
|
||
* 通过ID获取其子级列表
|
||
* @param parentId
|
||
* @return
|
||
* @throws Exception
|
||
*/
|
||
public List<Department> listByCorpInfoId(String parentId,String CORPINFO_ID) throws Exception;
|
||
List<PageData> deptinformation(PageData pageData) throws Exception;
|
||
|
||
/**
|
||
* 获取所有数据并填充每条数据的子级列表(递归处理)
|
||
* @param MENU_ID
|
||
* @return
|
||
* @throws Exception
|
||
*/
|
||
public List<Department> listAllDepartment(String parentId) throws Exception;
|
||
|
||
/**
|
||
* 获取所有数据并填充每条数据的子级列表(递归处理)下拉ztree用
|
||
* @param MENU_ID
|
||
* @return
|
||
* @throws Exception
|
||
*/
|
||
public List<PageData> listAllDepartmentToSelect(String parentId, List<PageData> zdepartmentPdList) throws Exception;
|
||
|
||
/**获取某个部门所有下级部门ID(返回拼接字符串 in的形式)
|
||
* @param DEPARTMENT_ID
|
||
* @return
|
||
* @throws Exception
|
||
*/
|
||
public String getDEPARTMENT_IDS(String DEPARTMENT_ID) throws Exception;
|
||
|
||
public List<PageData> listAll(PageData pd);
|
||
|
||
public List<PageData> listAllMent (PageData pd);
|
||
|
||
public List<Department> listAllDepartmentByType(PageData pd) throws Exception;
|
||
|
||
void saveCorpdept(PageData pd);
|
||
|
||
List<PageData> saftpersonlist(PageData pd) throws Exception;
|
||
|
||
List<PageData> saftmanagelist(PageData pd);
|
||
|
||
List<PageData> findbyCorpIdtoDeptlistPage(Page page);
|
||
|
||
List<PageData> findByDeptIdlistPage(Page page);
|
||
|
||
public PageData findCorpDeptDetail(PageData pd);
|
||
|
||
void editNameBDId(PageData deptPageData);
|
||
|
||
//从管理端修改部门 新
|
||
void editCorpdeptNew(PageData pd);
|
||
|
||
List<PageData> listTreeCorpDept(PageData pd);
|
||
}
|
||
|