| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.zhcs.dt.service.information.monthProgress;
- import java.util.List;
- import com.zhcs.dt.entity.Page;
- import com.zhcs.dt.util.PageData;
- public interface YjMonthProgressManager {
- /**列表
- * @param page
- * @throws Exception
- */
- public List<PageData> list(Page page)throws Exception;
- public PageData getCompanyAndRoad(String string) throws Exception;
- public String getRoleName(String string) throws Exception;
- public void addMonthlyReport(PageData pd) throws Exception;
- public String getCompanyid(Object object) throws Exception;
- public List<PageData> getReportInfo(PageData pd) throws Exception;
- public PageData showTableRecod(PageData pd) throws Exception;
- public List<PageData> wordListRecorde(PageData pd) throws Exception;
- public void deleteMonthRecord(PageData pd) throws Exception;
- public void insertMonthRecord(PageData pd) throws Exception;
- public void deleteEmergencyProjectRecord(PageData pd) throws Exception;
- public void deleteEmergencyProjectCostRecord(PageData pd) throws Exception;
- public void updateWCQKRecord(PageData pd) throws Exception;
- }
|