60 lines
1.2 KiB
Java
60 lines
1.2 KiB
Java
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;
|
||
}
|