integrated_traffic/src/main/java/com/zcloud/service/specialoperation/PersonnelManagementService....

73 lines
1.4 KiB
Java
Raw Normal View History

2024-01-05 08:51:44 +08:00
package com.zcloud.service.specialoperation;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* luoxiaobao
* 2022-06-16
* www.zcloudchina.com
*/
public interface PersonnelManagementService{
/**
* @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> list(Page page)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
public List<PageData> namelist(PageData pd)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
/**
* @param ArrayDATA_IDS
* @throws Exception
*/
public void deleteAll(String[] ArrayDATA_IDS)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
public PageData findByCertificate(PageData pd)throws Exception;
void editPassword(PageData updateUser) throws Exception;
2024-02-03 17:53:40 +08:00
PageData findForLogin(PageData pd);
2024-02-22 08:42:40 +08:00
PageData findByOutsourced(PageData pd);
2024-01-05 08:51:44 +08:00
}