YjMonthProgressManager.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.zhcs.dt.service.information.monthProgress;
  2. import java.util.List;
  3. import com.zhcs.dt.entity.Page;
  4. import com.zhcs.dt.util.PageData;
  5. public interface YjMonthProgressManager {
  6. /**列表
  7. * @param page
  8. * @throws Exception
  9. */
  10. public List<PageData> list(Page page)throws Exception;
  11. public PageData getCompanyAndRoad(String string) throws Exception;
  12. public String getRoleName(String string) throws Exception;
  13. public void addMonthlyReport(PageData pd) throws Exception;
  14. public String getCompanyid(Object object) throws Exception;
  15. public List<PageData> getReportInfo(PageData pd) throws Exception;
  16. public PageData showTableRecod(PageData pd) throws Exception;
  17. public List<PageData> wordListRecorde(PageData pd) throws Exception;
  18. public void deleteMonthRecord(PageData pd) throws Exception;
  19. public void insertMonthRecord(PageData pd) throws Exception;
  20. public void deleteEmergencyProjectRecord(PageData pd) throws Exception;
  21. public void deleteEmergencyProjectCostRecord(PageData pd) throws Exception;
  22. public void updateWCQKRecord(PageData pd) throws Exception;
  23. }