| 1234567891011121314151617181920212223242526272829303132 |
- 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<PageData> 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<PageData> getdata(PageData pd) throws Exception;
- public List<String> getCompPlanList(PageData pd) throws Exception;
- public List<PageData> getTestdata(PageData pd) throws Exception;
- public List<PageData> getScidata(PageData pd) throws Exception;
- public List<PageData> getCompanyRoadList(PageData pd) throws Exception;
- }
|