package com.zcloud.service.hiddenDangerCheckStandard; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import java.util.List; /** * 说明:清单管理 * 作者:luoxiaobao * 时间:2020-12-30 * 官网:www.zcloudchina.com */ public interface CustomService { /**新增 * @param pd * @throws Exception */ public void save(PageData pd)throws Exception; /**列表 * @param pd * @throws Exception */ public List listAll(PageData pd)throws Exception; /**列表 * @param page * @throws Exception */ public List 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 */ PageData findById(PageData pd)throws Exception; /**获取用户的检查清单 * @param pd * @throws Exception */ List getMyCheckList(PageData pd)throws Exception; }