mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
update 联联充电相关接口
This commit is contained in:
40
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/domain/StationStatsInfo.java
vendored
Normal file
40
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/domain/StationStatsInfo.java
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
package com.jsowell.thirdparty.domain;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 充电站统计信息
|
||||
*
|
||||
* @author JS-ZZA
|
||||
* @date 2023/4/15 9:29
|
||||
*/
|
||||
@Data
|
||||
public class StationStatsInfo {
|
||||
/**
|
||||
* 充电站 ID
|
||||
*/
|
||||
private String StationID;
|
||||
|
||||
/**
|
||||
* 统计的开始时间
|
||||
*/
|
||||
private String StartTime;
|
||||
|
||||
/**
|
||||
* 统计的结束时间
|
||||
*/
|
||||
private String EndTime;
|
||||
|
||||
/**
|
||||
* 充电站累计电量
|
||||
*/
|
||||
private BigDecimal StationElectricity;
|
||||
|
||||
/**
|
||||
* 充电设备统计信息列表
|
||||
*/
|
||||
private List<EquipmentStatsInfo> equipmentStatsInfos;
|
||||
}
|
||||
Reference in New Issue
Block a user