Pu Zhibing
2025-02-13 ce3b68cce4b030e222448044adf7325d0c897376
ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/ConnectorInfo.java
@@ -1,5 +1,6 @@
package com.ruoyi.integration.drainage.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import javax.validation.constraints.NotNull;
@@ -17,47 +18,62 @@
    * 充电设备接口编码
    */
   @NotNull
   private String ConnectorID;
   @JsonProperty("ConnectorID")
   private String connectorID;
   /**
    * 充电设备接口名称
    */
   @Null
   private String ConnectorName;
   @JsonProperty("ConnectorName")
   private String connectorName;
   /**
    * 充电设备接口类型
    */
   @NotNull
   private Integer ConnectorType;
   @JsonProperty("ConnectorType")
   private Integer connectorType;
   /**
    * 额定电压上限
    */
   @NotNull
   private Integer VoltageUpperLimits;
   @JsonProperty("VoltageUpperLimits")
   private Integer voltageUpperLimits;
   /**
    * 额定电压下限
    */
   @NotNull
   private Integer VoltageLowerLimits;
   @JsonProperty("VoltageLowerLimits")
   private Integer voltageLowerLimits;
   /**
    * 额定电流
    */
   @NotNull
   private Integer Current;
   @JsonProperty("Current")
   private Integer current;
   /**
    * 额定功率
    */
   @NotNull
   private BigDecimal Power;
   @JsonProperty("Power")
   private BigDecimal power;
   /**
    * 车位号
    */
   @Null
   private String ParkNo;
   @JsonProperty("ParkNo")
   private String parkNo;
   /**
    * 国家标准
    * 1:2011
    * 2:2015
    */
   @NotNull
   private Integer NationalStandard;
   @JsonProperty("NationalStandard")
   private Integer nationalStandard;
   /**
    * 枪二维码
    */
   @Null
   @JsonProperty("QRCode")
   private String QRCode;
}