| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.zhcs.dt.service.information.monthProgress;
- import java.util.List;
- import com.zhcs.dt.util.PageData;
- /**
- * @author zhengfei
- * @date 2019年2月18日
- * @desc 月度养护计划
- */
- public interface PreventionCompletionManager {
-
- /**
- *
- * @Title: listAll
- * @Description: 查询道路月度信息
- * @param @param pd
- * @param @return
- * @param @throws Exception
- * @return List<PageData>
- * @throws
- */
- List<PageData> listAll(PageData pd) throws Exception;
-
- /**
- *
- * @Title: roadlistAll
- * @Description: 查询公司道路信息
- * @param @param pd
- * @param @return
- * @param @throws Exception
- * @return List<PageData>
- * @throws
- */
- List<PageData> roadlistAll(PageData pd) throws Exception;
-
- /**
- *
- * @Title: findSumByCompanyAndRoad
- * @Description: 根据公司道路汇总
- * @param @param pd
- * @param @return
- * @param @throws Exception
- * @return List<PageData>
- * @throws
- */
- List<PageData> findSumByCompanyAndRoad(PageData pd) throws Exception;
-
- /**
- * @Title: save
- * @Description: 新增
- * @param @param pd
- * @return void
- * @throws
- */
- void save(List<PageData> pd)throws Exception;
- List<PageData> getReportlist(PageData pd) throws Exception;
- void addMonthlyReport(PageData pd) throws Exception;
- void delMonthlyReport(PageData pd) throws Exception;
- void delMonthlyCompletion(PageData pd) throws Exception;
-
- }
|