ChargeVO.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.ChargeDTO;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * ClassName: ChargeVO
  8. * Package: com.welampiot.vo
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/4/18 - 11:14
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class ChargeVO implements Serializable {
  17. private Integer total; //设备总数
  18. private Integer onlineCount; //在线数
  19. private Integer alarmCount; //告警数
  20. private Integer chargeCount; //充电中数量
  21. private Integer totalTime; //充电时长
  22. private Float totalMoney; //充电总金额
  23. private Float totalEng; //充电总能耗
  24. private List<ChargeDTO> list;
  25. /** 电桩类型(1 直流,2 交流,3 交直流一体,4 无线,5 其他)**/
  26. private Integer type;
  27. /** 最大电压 **/
  28. private Float macVoltage;
  29. /** 工作电压 **/
  30. private Float voltage;
  31. /** 最大电流 **/
  32. private Float macCurrent;
  33. /** 工作电流 **/
  34. private Float current;
  35. /** 创建时间 **/
  36. private String createTime;
  37. /** 电桩编码 **/
  38. private String connectorCode;
  39. /** 终端编码 **/
  40. private String stationCode;
  41. /** 电费描述 **/
  42. private String electricityFee;
  43. /** 服务费描述 **/
  44. private String serviceFee;
  45. /** 功率 **/
  46. private Integer power;
  47. private static final long serialVersionUID = 1L;
  48. }