This commit is contained in:
Lemon
2026-05-08 11:44:05 +08:00
parent 13a9d146de
commit 6c3edaab19

View File

@@ -0,0 +1,41 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
/**
* 大数据平台总览数据VO
*
* @author jsowell
*/
@Data
public class BigDataOverviewVO {
/**
* 总用户数
*/
private Long totalUsers;
/**
* 总订单数
*/
private Long totalOrders;
/**
* 累计交易额
*/
private String totalTransactionAmount;
/**
* 累计充电电量kWh
*/
private String totalElectricity;
/**
* 充电桩数量
*/
private Long totalPiles;
/**
* 充电站数量
*/
private Long totalStations;
}