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

60 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}