From 67d06a785d5fc4524639ace27651c01ff05a4b58 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期四, 29 五月 2025 22:31:33 +0800
Subject: [PATCH] 修改bug

---
 ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TChargingGun.java |   39 ++++++++++++++++++++++++++++++++++++++-
 1 files changed, 38 insertions(+), 1 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TChargingGun.java b/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TChargingGun.java
index 2bef523..acfc5b1 100644
--- a/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TChargingGun.java
+++ b/ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TChargingGun.java
@@ -103,7 +103,9 @@
     @TableField("parking_lock_state")
     private Integer parkingLockState;
 
-    @ApiModelProperty(value = "国家标准", required = true)
+    @ApiModelProperty(value = "国家标准 1:2011\n" +
+            "2:2015\n" +
+            "3:兼容2011和2015", required = true)
     @TableField("national_standard")
     private String nationalStandard;
 
@@ -111,4 +113,39 @@
     @TableField("remark")
     private String remark;
 
+    @ApiModelProperty(value = "已充电百分比")
+    @TableField(exist = false)
+    private Integer soc;
+    
+    @ApiModelProperty(value = "完整编号(桩号+抢号)")
+    @TableField("fullNumber")
+    private String fullNumber;
+    @ApiModelProperty(value = "2.0修改字段 设备接口分类 1:车辆充电设备接口\n" +
+            "2:换电站内的电池箱充电设备\n" +
+            "接口" , required = true)
+    @TableField("equipment_classification")
+    private Integer equipmentClassification;
+
+    @ApiModelProperty(value = "2.0修改字段-恒功率电压上限", required = false)
+    @TableField("constant_voltage_upper_limits")
+    private BigDecimal constantVoltageUpperLimits;
+    @ApiModelProperty(value = "2.0修改字段-恒功率电压下限", required = false)
+    @TableField("constant_voltage_lower_limits")
+    private BigDecimal constantVoltageLowerLimits;
+
+    @ApiModelProperty(value = "2.0修改字段-恒功率电流上限", required = false)
+    @TableField("constant_current_upper_limits")
+    private BigDecimal constantCurrentUpperLimits;
+    @ApiModelProperty(value = "2.0修改字段-恒功率电流下限", required = false)
+    @TableField("constant_current_lower_limits")
+    private BigDecimal constantCurrentLowerLimits;
+    @ApiModelProperty(value = "2.0修改字段-辅助电源 1:12V2:24V3:兼容12V和24V",required = true)
+    @TableField("aux_power")
+    private Integer auxPower;
+    @ApiModelProperty(value = "2.0修改字段-运营状态0:未知1:建设中5:关闭下线6:维护中50:正常使用",required = true)
+    @TableField("opreate_status")
+    private Integer opreateStatus;
+    @ApiModelProperty(value = "2.0修改字段-运营时间描述")
+    @TableField("opreate_hours")
+    private String opreateHours;
 }

--
Gitblit v1.7.1