qa-prevention-gwj/src/main/java/com/zcloud/service/system/DepartmentService.java

236 lines
5.5 KiB
Java
Raw Normal View History

2023-11-07 09:32:12 +08:00
package com.zcloud.service.system;
import java.util.List;
import java.util.Map;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import com.zcloud.entity.system.Department;
/**
*
* FH Q313596790
*
*/
public interface DepartmentService{
/**
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void delete(PageData pd)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
List<PageData> listTreeManageAndCorp2(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public PageData findByName(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;
/**
* ()
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Department> listAllDepartment(String parentId) throws Exception;
/**
* ()
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Department> listAllDepartment(String parentId,String url) 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;
/**
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
/**name\corpinfoid()
* @param pd
* @throws Exception
*/
public List<PageData> isrepeat(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public PageData findByCorpId(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> listForLevelName(Page page)throws Exception;
/**
*
* @param pd
* @return
*/
public int getDepCount(PageData pd)throws Exception;
/**
*
* @param pd
* @return
*/
public int getWorkedDepCount(PageData pd)throws Exception;
/**
*
* @param pd
* @return
*/
List<PageData> statisticsByCorp(PageData pd)throws Exception;
/**
*
* @param pd
* @return
*/
List<PageData> saftmanagelist(PageData pd)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
List<PageData> listTreeCorpDept(PageData pd) throws Exception;
List<PageData> listDept(PageData pd) throws Exception;
List<PageData> listDept(Page page) throws Exception;
/**
* @param pd
* @throws Exception
*/
public void editByLeaderOrCharge(PageData pd)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
public List<PageData> saftpersonlist(PageData pd) throws Exception;
List<PageData> listForDoor(PageData pd) throws Exception;
List<PageData> getGenealogy(PageData pd) throws Exception;
List<PageData> listTreeManageAndCorpNum(PageData pd);
/**
*
* @param pd
* @return
* @throws Exception
*/
List<PageData> islistAll(PageData pd) throws Exception;
/**
* () 使
* @param MENU_ID
* @return
* @throws Exception
*/
public List<Department> listAllDepartmentV2(String parentId,String url) throws Exception;
/**
* 使
* pidid
* @param pd
* @return
* @throws Exception
*/
public List<PageData> getSonIdsByParid(PageData pd)throws Exception;
/**
* id
* @param pd
* @return
* @throws Exception
*/
public Map<String,String> getDepartMapFroExcel (PageData pd) throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
List<PageData> listTreeManageAndCorp1(PageData pd)throws Exception;
List<PageData> listTreeManageAndCorpForPcPunishThePerson(PageData pd) throws Exception;
2023-12-07 15:02:01 +08:00
PageData getDepartmentInfo(PageData pd) throws Exception;
2023-12-12 19:16:04 +08:00
List<PageData> listTreeManageAndCorpHasOrder(PageData pd);
2023-12-19 20:03:25 +08:00
List<Department> listAllCorpDepartment(String number) throws Exception;
PageData getCorpDepartment(PageData condition) throws Exception;
2023-11-07 09:32:12 +08:00
}