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 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 getReportInfo(PageData pd) throws Exception; public PageData showTableRecod(PageData pd) throws Exception; public List 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; }