| 12345678910111213141516171819202122232425 |
- package com.zhcs.dt.service.information.planInput;
- import java.util.ArrayList;
- import java.util.List;
- import com.zhcs.dt.util.PageData;
- public interface PlanInputManager {
- public List<PageData> companyInputChartData(PageData pd) throws Exception;
-
- public List<PageData> chartsData(PageData pd) throws Exception;
- public List<PageData> projectInputChartsData(PageData pd) throws Exception;
- public List<PageData> getCompanyList(String company) throws Exception;
- public List<PageData> getDataByScale(PageData pd) throws Exception;
- public List<PageData> getData(PageData pd) throws Exception;
- public List<PageData> getSumData(PageData pd) throws Exception;
- public List<PageData> getSumDataByScale(PageData pd) throws Exception;
- }
|