This commit is contained in:
Lemon
2026-05-08 11:43:57 +08:00
parent b563659f84
commit 13a9d146de
2 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
/**
* 充电站地图坐标VO
*
* @author jsowell
*/
@Data
public class StationMapVO {
/**
* 站点名称
*/
private String stationName;
/**
* 经度
*/
private String stationLng;
/**
* 纬度
*/
private String stationLat;
}

View File

@@ -0,0 +1,31 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
/**
* 使用率趋势VO
*
* @author jsowell
*/
@Data
public class UsageTrendVO {
/**
* 日期
*/
private String date;
/**
* 订单数量
*/
private Long orderCount;
/**
* 充电电量
*/
private String electricity;
/**
* 订单金额
*/
private String orderAmount;
}