仪表盘
版本库
文件存储
活动
搜索
登录
main
/
ecms
能源管控
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
fix bug
liulingling.177216
2024-08-26
349f1cfc5fa77fbc636d542df0d8050fddec48c2
[ecms.git]
/
energy_management_server
/
src
/
main
/
java
/
com
/
dingzhuo
/
energy
/
project
/
reportForm
/
service
/
ImonthlyReportService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.dingzhuo.energy.project.reportForm.service;
import com.dingzhuo.energy.common.utils.time.TimeType;
import com.dingzhuo.energy.project.reportForm.domain.monthlyReport;
import java.util.Date;
import java.util.List;
/**
* 阶段数据录入接口
*
* @author sys
* @date 2020-03-25
*/
public interface ImonthlyReportService {
public List<monthlyReport> getMonthlyReporList(List<String> indexIds, List<monthlyReport> dataList, Date beginTime, Date endTime, TimeType timeType, String indexStorageId);
}