1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package com.welampiot.vo;
- import com.welampiot.dto.ChargeDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: ChargeVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/4/18 - 11:14
- * @Version: v1.0
- */
- @Data
- public class ChargeVO implements Serializable {
- private Integer total; //设备总数
- private Integer onlineCount; //在线数
- private Integer alarmCount; //告警数
- private Integer chargeCount; //充电中数量
- private Integer totalTime; //充电时长
- private Float totalMoney; //充电总金额
- private Float totalEng; //充电总能耗
- private List<ChargeDTO> list;
- /** 电桩类型(1 直流,2 交流,3 交直流一体,4 无线,5 其他)**/
- private Integer type;
- /** 最大电压 **/
- private Float macVoltage;
- /** 工作电压 **/
- private Float voltage;
- /** 最大电流 **/
- private Float macCurrent;
- /** 工作电流 **/
- private Float current;
- /** 创建时间 **/
- private String createTime;
- /** 电桩编码 **/
- private String connectorCode;
- /** 终端编码 **/
- private String stationCode;
- /** 电费描述 **/
- private String electricityFee;
- /** 服务费描述 **/
- private String serviceFee;
- /** 功率 **/
- private Integer power;
- private static final long serialVersionUID = 1L;
- }
|