2024-01-30 16:50:58 +08:00
|
|
|
|
package com.zcloud.service.hiddenDangerCheckStandard;
|
2024-01-30 16:00:22 +08:00
|
|
|
|
|
2024-01-31 11:59:44 +08:00
|
|
|
|
import com.zcloud.entity.Page;
|
2024-01-30 16:00:22 +08:00
|
|
|
|
import com.zcloud.entity.PageData;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 说明:清单管理
|
|
|
|
|
* 作者:luoxiaobao
|
|
|
|
|
* 时间:2020-12-30
|
|
|
|
|
* 官网:www.zcloudchina.com
|
|
|
|
|
*/
|
2024-01-30 16:50:58 +08:00
|
|
|
|
public interface CustomService {
|
2024-01-30 16:00:22 +08:00
|
|
|
|
|
|
|
|
|
/**新增
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void save(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**列表
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listAll(PageData pd)throws Exception;
|
|
|
|
|
|
2024-01-31 11:59:44 +08:00
|
|
|
|
/**列表
|
|
|
|
|
* @param page
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> list(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**禁用
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void delete(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**删除
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void remove(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**彻底删除
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void deleted(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**启用
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void enable(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过id获取数据
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findById(PageData pd)throws Exception;
|
2024-01-30 16:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
|