PlanInputManager.java 771 B

12345678910111213141516171819202122232425
  1. package com.zhcs.dt.service.information.planInput;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import com.zhcs.dt.util.PageData;
  5. public interface PlanInputManager {
  6. public List<PageData> companyInputChartData(PageData pd) throws Exception;
  7. public List<PageData> chartsData(PageData pd) throws Exception;
  8. public List<PageData> projectInputChartsData(PageData pd) throws Exception;
  9. public List<PageData> getCompanyList(String company) throws Exception;
  10. public List<PageData> getDataByScale(PageData pd) throws Exception;
  11. public List<PageData> getData(PageData pd) throws Exception;
  12. public List<PageData> getSumData(PageData pd) throws Exception;
  13. public List<PageData> getSumDataByScale(PageData pd) throws Exception;
  14. }