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:
@@ -66,18 +66,4 @@ public class ConnectorInfoVO {
|
||||
*/
|
||||
private String ratedVoltage;
|
||||
|
||||
/**
|
||||
* 状态更新时间(用于计算时长)
|
||||
*/
|
||||
private String updateTime;
|
||||
|
||||
/**
|
||||
* 剩余时长(充电中状态,单位:分钟)
|
||||
*/
|
||||
private String timeRemaining;
|
||||
|
||||
/**
|
||||
* 状态持续时长(故障/离线/占用/挂起状态,单位:分钟)
|
||||
*/
|
||||
private String duration;
|
||||
}
|
||||
|
||||
@@ -1,60 +0,0 @@
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
package com.jsowell.pile.vo.uniapp.business;
|
||||
|
||||
import com.jsowell.pile.vo.base.ConnectorInfoVO;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 运营端小程序站点及充电枪状态VO
|
||||
*
|
||||
* @author Auto
|
||||
* @Date 2024/12/19
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class StationWithConnectorStatusVO {
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 站点名称
|
||||
*/
|
||||
private String stationName;
|
||||
|
||||
/**
|
||||
* 总枪口数量
|
||||
*/
|
||||
private Integer connectorNum;
|
||||
|
||||
/**
|
||||
* 充电中枪口数量
|
||||
*/
|
||||
private Integer chargingConnectorNum;
|
||||
|
||||
/**
|
||||
* 空闲枪口数量
|
||||
*/
|
||||
private Integer freeConnectorNum;
|
||||
|
||||
/**
|
||||
* 挂起枪口数量
|
||||
*/
|
||||
private Integer hangingConnectorNum;
|
||||
|
||||
/**
|
||||
* 占用中枪口数量
|
||||
*/
|
||||
private Integer occupiedConnectorNum;
|
||||
|
||||
/**
|
||||
* 离线枪口数量
|
||||
*/
|
||||
private Integer offlineConnectorNum;
|
||||
|
||||
/**
|
||||
* 故障枪口数量
|
||||
*/
|
||||
private Integer faultConnectorNum;
|
||||
|
||||
/**
|
||||
* 充电枪列表
|
||||
*/
|
||||
private List<ConnectorInfoVO> connectorList;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user