liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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);
}