doum
3 天以前 3c7399c25c0f35c8aa7cb6af1935e31d1a3f0102
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.doumee.service.business;
 
import com.doumee.dao.business.vo.DailyEnergyStatVO;
 
import java.util.List;
 
/**
 * 工作台电量/电费统计
 */
public interface YwWorkDeskEnergyService {
 
    List<DailyEnergyStatVO> electricalDailyStats();
 
    List<DailyEnergyStatVO> conditionerDailyStats();
 
    /**
     * 抄表同步后,按抄表时间段前后各扩展一天,刷新每日电量/电费统计
     */
    String refreshElectricalDailyStatsForRange(String readTimeBegin, String readTimeEnd);
}