1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| 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();
| }
|
|