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 MonthProgressManager { /**列表 * @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 String getCompanyid(Object object) throws Exception; public List getdata(PageData pd) throws Exception; public List getCompPlanList(PageData pd) throws Exception; public List getTestdata(PageData pd) throws Exception; public List getScidata(PageData pd) throws Exception; public List getCompanyRoadList(PageData pd) throws Exception; }