From a432ff3c95923f9929236de9f7a9224e8517bb70 Mon Sep 17 00:00:00 2001
From: huliguo <2023611923@qq.com>
Date: 星期五, 23 五月 2025 20:55:43 +0800
Subject: [PATCH] 大屏

---
 ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/model/TChargingGun.java |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 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 b6f5cbc..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;
 
@@ -118,5 +120,32 @@
     @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