mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-08-16 11:07:36 +08:00
update
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
package com.jsowell.pile.vo.uniapp.business;
|
||||
|
||||
import com.jsowell.common.core.page.PageResponse;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* 运营端小程序站点及充电枪状态分页VO(包含总统计)
|
||||
*
|
||||
* @author Auto
|
||||
* @Date 2024/12/19
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class StationWithConnectorStatusPageVO {
|
||||
/**
|
||||
* 分页数据
|
||||
*/
|
||||
private PageResponse pageResponse;
|
||||
|
||||
/**
|
||||
* 总枪口数量(所有站点的总计)
|
||||
*/
|
||||
private Integer totalConnectorNum;
|
||||
|
||||
/**
|
||||
* 总充电中枪口数量
|
||||
*/
|
||||
private Integer totalChargingConnectorNum;
|
||||
|
||||
/**
|
||||
* 总空闲枪口数量
|
||||
*/
|
||||
private Integer totalFreeConnectorNum;
|
||||
|
||||
/**
|
||||
* 总占用中枪口数量(未充电)
|
||||
*/
|
||||
private Integer totalOccupiedConnectorNum;
|
||||
|
||||
/**
|
||||
* 总挂起枪口数量(预约锁定)
|
||||
*/
|
||||
private Integer totalHangingConnectorNum;
|
||||
|
||||
/**
|
||||
* 总离线枪口数量
|
||||
*/
|
||||
private Integer totalOfflineConnectorNum;
|
||||
|
||||
/**
|
||||
* 总故障枪口数量
|
||||
*/
|
||||
private Integer totalFaultConnectorNum;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user