qa-prevention-gwj/src/main/java/com/zcloud/service/inspection/SafetyEnvironmentalService....

169 lines
3.5 KiB
Java
Raw Normal View History

2023-11-07 09:32:12 +08:00
package com.zcloud.service.inspection;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* luoxiaobao
* 2022-06-08
* www.zcloudchina.com
*/
public interface SafetyEnvironmentalService{
List<PageData> getHiddenCountByDepat (PageData pd) throws Exception;
List<PageData> getHiddenCountByUser (PageData pd) throws Exception;
/**
* @param pd
* @throws Exception
*/
public List<PageData> save(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void delete(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public List<PageData> edit(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void edieditsttust(PageData pd)throws Exception; //执行考评方法时将检查状态改成已归档因为bug6535提出要是隐患考评完毕状态应该是8已归档
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
/**()
* @param pd
* @throws Exception
*/
public List<PageData> findByyin(PageData pd)throws Exception;
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
/**
* @param pd
* @throws Exception
*/
public void deleteAll(PageData pd)throws Exception;
/**(ID)
* @param pd
* @throws Exception
*/
List<PageData> findByIds(PageData pd)throws Exception;
/**
*
* @param pd
*/
void editStatus(PageData pd)throws Exception;
PageData findShowById(PageData pd)throws Exception;
/**
*
* @param pd
* @return
*/
PageData findFormById(PageData pd)throws Exception;
/**
*
* @param pd
* @throws Exception
*/
void explain(PageData pd)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
PageData statisticsBranch(PageData pd)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
List<PageData> statisticsJointStock(PageData pd) throws Exception;
/**
* /
* @param pd
* @return
* @throws Exception
*/
PageData checkedCount (PageData pd)throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
PageData repulseCount (PageData pd)throws Exception;
/**
* +
* @param pd
* @return
* @throws Exception
*/
PageData repulseAndCheckCountCount (PageData pd)throws Exception;
List<PageData> pleadList(Page page) throws Exception;
List<PageData> checkList(Page page) ;
/**
* description:
*
* @param data
* @return
* @throws Exception
*/
PageData departmentUtil(PageData data) throws Exception;
/**
*
* @param pd
* @return
* @throws Exception
*/
List<PageData> statisticsBranchGroupDept(PageData pd) throws Exception;
String getHiddenTotal(Page page);
/**
* + ,
* @param pd
* @return
* @throws Exception
*/
PageData repulseAndCheckCountCountV2 (PageData pd)throws Exception;
}