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
|
|
|
|
|
*/
|
2024-02-01 22:37:47 +08:00
|
|
|
|
void save(PageData pd)throws Exception;
|
2024-01-30 16:00:22 +08:00
|
|
|
|
|
|
|
|
|
/**列表
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 08:37:20 +08:00
|
|
|
|
List<PageData> listAll(PageData pd)throws Exception;
|
2024-01-30 16:00:22 +08:00
|
|
|
|
|
2024-01-31 11:59:44 +08:00
|
|
|
|
/**列表
|
|
|
|
|
* @param page
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 08:37:20 +08:00
|
|
|
|
List<PageData> list(Page page)throws Exception;
|
2024-01-31 11:59:44 +08:00
|
|
|
|
|
|
|
|
|
/**禁用
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 08:37:20 +08:00
|
|
|
|
void delete(PageData pd)throws Exception;
|
2024-01-31 11:59:44 +08:00
|
|
|
|
|
|
|
|
|
/**删除
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 08:37:20 +08:00
|
|
|
|
void remove(PageData pd)throws Exception;
|
2024-01-31 11:59:44 +08:00
|
|
|
|
|
|
|
|
|
/**彻底删除
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 08:37:20 +08:00
|
|
|
|
void deleted(PageData pd)throws Exception;
|
2024-01-31 11:59:44 +08:00
|
|
|
|
|
|
|
|
|
/**启用
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 08:37:20 +08:00
|
|
|
|
void enable(PageData pd)throws Exception;
|
|
|
|
|
|
2024-02-03 14:05:34 +08:00
|
|
|
|
/**修改
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void edit(PageData pd)throws Exception;
|
|
|
|
|
public List<PageData> stoplist(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**部门清单列表
|
|
|
|
|
* * @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> recordList(Page page)throws Exception;
|
|
|
|
|
|
2024-02-01 08:37:20 +08:00
|
|
|
|
/**通过id获取数据
|
2024-01-31 15:15:23 +08:00
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
PageData findById(PageData pd)throws Exception;
|
2024-01-31 11:59:44 +08:00
|
|
|
|
|
2024-01-31 15:15:23 +08:00
|
|
|
|
/**获取用户的检查清单
|
2024-01-31 11:59:44 +08:00
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-01-31 15:15:23 +08:00
|
|
|
|
List<PageData> getMyCheckList(PageData pd)throws Exception;
|
2024-02-01 08:37:20 +08:00
|
|
|
|
|
|
|
|
|
/**列表
|
|
|
|
|
* @param page
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
List<PageData> checklistPage(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询公司清单总数
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2024-02-01 22:37:47 +08:00
|
|
|
|
int getListCount(PageData pd)throws Exception;
|
2024-02-01 08:37:20 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询公司检查过清单的总数
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2024-02-01 22:37:47 +08:00
|
|
|
|
int getWorkedListCount(PageData pd)throws Exception;
|
2024-02-01 08:37:20 +08:00
|
|
|
|
|
|
|
|
|
/**查询人员清单
|
|
|
|
|
* @param page
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-02-01 22:37:47 +08:00
|
|
|
|
List<PageData> getListByCorplistPage(Page page)throws Exception;
|
|
|
|
|
|
2024-02-03 14:05:34 +08:00
|
|
|
|
|
2024-02-04 09:09:25 +08:00
|
|
|
|
|
2024-01-30 16:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
|