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 companyInputChartData(PageData pd) throws Exception; public List chartsData(PageData pd) throws Exception; public List projectInputChartsData(PageData pd) throws Exception; public List getCompanyList(String company) throws Exception; public List getDataByScale(PageData pd) throws Exception; public List getData(PageData pd) throws Exception; public List getSumData(PageData pd) throws Exception; public List getSumDataByScale(PageData pd) throws Exception; }