You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
401 B
24 lines
401 B
package com.psdc.service;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Author:戴仕崑
|
|
* @Project:psdc
|
|
* @Filename:IPsdcElectricHtdata
|
|
* @Date:2023/5/10 9:00
|
|
* @Version 1.0
|
|
*/
|
|
public interface IPsdcElectricHtdataService {
|
|
|
|
|
|
Map selTotalElectricityInfo();
|
|
|
|
List selThisHourUseElectric();
|
|
|
|
List selDcglThisHourUseElectric();
|
|
|
|
List selDcglThisDayUseElectric();
|
|
|
|
}
|
|
|