MonthProgressManager.java 832 B

1234567891011121314151617181920212223242526272829303132
  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 MonthProgressManager {
  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 String getCompanyid(Object object) throws Exception;
  14. public List<PageData> getdata(PageData pd) throws Exception;
  15. public List<String> getCompPlanList(PageData pd) throws Exception;
  16. public List<PageData> getTestdata(PageData pd) throws Exception;
  17. public List<PageData> getScidata(PageData pd) throws Exception;
  18. public List<PageData> getCompanyRoadList(PageData pd) throws Exception;
  19. }