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

60 lines
1.2 KiB
Java
Raw Normal View History

2023-11-07 09:32:12 +08:00
package com.zcloud.service.system;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* yangming
* 2022-12-29
*/
public interface PoliceService {
/**
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
public List<PageData> findByResId(Page page)throws Exception;
void lockUser(PageData pd);
PageData findPolice(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
void editdelete(PageData pd)throws Exception;
/**ID
* @param pd
* @throws Exception
*/
PageData findById(PageData pd)throws Exception;
/**ID
* @param pd
* @throws Exception
*/
PageData findByPoliceId(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
void edit(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void editOpinion(PageData pd)throws Exception;
}