From 08ca6df9f2aa546da9b492416d495facb459d34a Mon Sep 17 00:00:00 2001 From: tq <1916474859@qq,com> Date: Thu, 8 Aug 2024 17:27:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=85=E9=9A=9C=E5=AF=BC=E5=87=BA=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=9D=A1=E4=BB=B6=E6=9F=A5=E8=AF=A2,=E6=95=85?= =?UTF-8?q?=E9=9A=9C=E5=9B=BD=E9=99=85=E5=8C=96=E5=A2=9E=E5=8A=A0=E8=A1=A5?= =?UTF-8?q?=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/EquipAlarmRecordController.cs | 63 +- ....EquipAlarmRecordController.en.Designer.cs | 1626 +++++++++++++++-- ...rollers.EquipAlarmRecordController.en.resx | 529 +++++- ....EquipAlarmRecordController.zh.Designer.cs | 1626 +++++++++++++++-- ...rollers.EquipAlarmRecordController.zh.resx | 538 +++++- 5 files changed, 4120 insertions(+), 262 deletions(-) diff --git a/WebStarter/Controllers/EquipAlarmRecordController.cs b/WebStarter/Controllers/EquipAlarmRecordController.cs index 926f116..7641080 100644 --- a/WebStarter/Controllers/EquipAlarmRecordController.cs +++ b/WebStarter/Controllers/EquipAlarmRecordController.cs @@ -1,13 +1,16 @@ +using System.Linq.Expressions; using AutoMapper; using Entity.Api.Req; using Entity.DbModel.Station; using Entity.Dto; +using Furion.LinqBuilder; using HybirdFrameworkCore.Entity; using Magicodes.ExporterAndImporter.Excel; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Localization; using Repository.Station; using Service.Station; +using SqlSugar; namespace WebStarter.Controllers; @@ -56,11 +59,37 @@ public class EquipAlarmRecordController : ControllerBase /// [HttpPost] [Route("ExportEquipAlarmRecord")] - public async Task ExportEquipAlarmRecord() + public async Task ExportEquipAlarmRecord([FromBody] QueryAlarmReq req) { var language = Request.Headers["Accept-Language"].ToString().ToLower(); - List equipAlarmRecords = await equipAlarmRecordService.QueryAsync(); + // 创建查询条件的表达式 + Expression> predicate = it => true; + + // 动态添加查询条件 + if (req.TypeCode != -1) + { + predicate = predicate.And(it => it.EquipTypeCode == req.TypeCode); + } + if (!string.IsNullOrWhiteSpace(req.EquipCode)) + { + predicate = predicate.And(it => it.EquipCode == req.EquipCode); + } + if (!string.IsNullOrWhiteSpace(req.ErrorLevel)) + { + predicate = predicate.And(it => it.ErrorLevel == req.ErrorLevel); + } + if (req.StartTime.HasValue && req.ProcessTime.HasValue) + { + predicate = predicate.And(it => it.StartTime >= req.StartTime && it.StartTime <= req.ProcessTime); + } + + // 执行查询 + List equipAlarmRecords = await equipAlarmRecordService.QueryListByClauseAsync( + predicate, + it => it.CreatedTime, + OrderByType.Desc + ); if (equipAlarmRecords.Count > 0) { @@ -126,11 +155,37 @@ public class EquipAlarmRecordController : ControllerBase /// [HttpPost] [Route("ExportEquipAlarmProcessRecord")] - public async Task ExportEquipAlarmProcessRecord() + public async Task ExportEquipAlarmProcessRecord([FromBody] QueryAlarmReq req) { var language = Request.Headers["Accept-Language"].ToString().ToLower(); + + // 创建查询条件的表达式 + Expression> predicate = it => true; + + // 动态添加查询条件 + if (req.TypeCode != -1) + { + predicate = predicate.And(it => it.EquipTypeCode == req.TypeCode); + } + if (!string.IsNullOrWhiteSpace(req.EquipCode)) + { + predicate = predicate.And(it => it.EquipCode == req.EquipCode); + } + if (!string.IsNullOrWhiteSpace(req.ErrorLevel)) + { + predicate = predicate.And(it => it.ErrorLevel == req.ErrorLevel); + } + if (req.StartTime.HasValue && req.ProcessTime.HasValue) + { + predicate = predicate.And(it => it.StartTime >= req.StartTime && it.ProcessTime <= req.ProcessTime); + } - List equipAlarmProcessRecords = await ProcessRecordRepository.QueryAsync(); + // 执行查询 + List equipAlarmProcessRecords = await ProcessRecordRepository.QueryListByClauseAsync( + predicate, + it => it.CreatedTime, + OrderByType.Desc + ); if (equipAlarmProcessRecords.Count > 0) { diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs index 8ab836f..8147c1f 100644 --- a/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs @@ -59,6 +59,15 @@ namespace WebStarter.Resources { } } + /// + /// Looks up a localized string similar to 1# output switch off. + /// + internal static string _1_输出开关断开 { + get { + return ResourceManager.GetString("1#输出开关断开", resourceCulture); + } + } + /// /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Extension Timeout Alarm. /// @@ -194,6 +203,15 @@ namespace WebStarter.Resources { } } + /// + /// Looks up a localized string similar to 2# output switch off. + /// + internal static string _2_输出开关断开 { + get { + return ResourceManager.GetString("2#输出开关断开", resourceCulture); + } + } + /// /// Looks up a localized string similar to Safety PLC not running. /// @@ -2948,6 +2966,60 @@ namespace WebStarter.Resources { } } + /// + /// Looks up a localized string similar to BCP message reception timeout. + /// + internal static string BCP_报文接收超时 { + get { + return ResourceManager.GetString("BCP 报文接收超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage higher than maximum allowed charging voltage in BMS message. + /// + internal static string BMS_单体测量最高电压大于单体最高允许充电电压过高 { + get { + return ResourceManager.GetString("BMS 单体测量最高电压大于单体最高允许充电电压过高", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS abnormal stop charging. + /// + internal static string BMS_异常停止充电 { + get { + return ResourceManager.GetString("BMS 异常停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS normal stop charging. + /// + internal static string BMS_正常停止充电 { + get { + return ResourceManager.GetString("BMS 正常停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS auxiliary power anomaly. + /// + internal static string BMS_辅助电源异常 { + get { + return ResourceManager.GetString("BMS 辅助电源异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS communication timeout. + /// + internal static string BMS_通讯超时 { + get { + return ResourceManager.GetString("BMS 通讯超时", resourceCulture); + } + } + /// /// Looks up a localized string similar to BMS Communication Fault. /// @@ -2958,362 +3030,1676 @@ namespace WebStarter.Resources { } /// - /// Looks up a localized string similar to Vehicle Control Guidance Fault During Charging. + /// Looks up a localized string similar to BRM message reception timeout. /// - internal static string 充电中车辆控制导引故障 { + internal static string BRM_报文接收超时 { get { - return ResourceManager.GetString("充电中车辆控制导引故障", resourceCulture); + return ResourceManager.GetString("BRM 报文接收超时", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Interface Electromagnetic Lock Fault. + /// Looks up a localized string similar to SOC too low in BSM message. /// - internal static string 充电接口电磁锁故障 { + internal static string BSM_报文中_SOC_过低 { get { - return ResourceManager.GetString("充电接口电磁锁故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中 SOC 过低", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Interface Overtemperature Fault. + /// Looks up a localized string similar to SOC too high in BSM message. /// - internal static string 充电接口过温故障 { + internal static string BSM_报文中_SOC_过高 { get { - return ResourceManager.GetString("充电接口过温故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中 SOC 过高", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Gun Not In Place Alarm. + /// Looks up a localized string similar to Charging overcurrent alarm in BSM message. /// - internal static string 充电枪未归位告警 { + internal static string BSM_报文中充电过流告警 { get { - return ResourceManager.GetString("充电枪未归位告警", resourceCulture); + return ResourceManager.GetString("BSM 报文中充电过流告警", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Gun Overtemperature Alarm. + /// Looks up a localized string similar to Single battery cell voltage too low in BSM message. /// - internal static string 充电枪过温告警 { + internal static string BSM_报文中单体动力蓄电池电压过低 { get { - return ResourceManager.GetString("充电枪过温告警", resourceCulture); + return ResourceManager.GetString("BSM 报文中单体动力蓄电池电压过低", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile AC Input Contactor Refusal/Malfunction Fault. + /// Looks up a localized string similar to Single battery cell voltage too high in BSM message. /// - internal static string 充电桩交流输入接触器拒动_误动故障 { + internal static string BSM_报文中单体动力蓄电池电压过高 { get { - return ResourceManager.GetString("充电桩交流输入接触器拒动/误动故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中单体动力蓄电池电压过高", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile AC Input Contactor Sticking Fault. + /// Looks up a localized string similar to Connector connection status abnormal in BSM message. /// - internal static string 充电桩交流输入接触器粘连故障 { + internal static string BSM_报文中连接器连接状态异常 { get { - return ResourceManager.GetString("充电桩交流输入接触器粘连故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中连接器连接状态异常", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile AC Input Circuit Breaker Fault (System Power Supply Circuit Breaker). + /// Looks up a localized string similar to Battery pack overtemperature in BSM message. /// - internal static string 充电桩交流输入断路器故障_系统供电断路器_ { + internal static string BSM_报文电池组温度过高 { get { - return ResourceManager.GetString("充电桩交流输入断路器故障(系统供电断路器)", resourceCulture); + return ResourceManager.GetString("BSM 报文电池组温度过高", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile Input Undervoltage Fault. + /// Looks up a localized string similar to Insulation fault in BSM message. /// - internal static string 充电桩输入电压欠压故障 { + internal static string BSM_报文绝缘故障 { get { - return ResourceManager.GetString("充电桩输入电压欠压故障", resourceCulture); + return ResourceManager.GetString("BSM 报文绝缘故障", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile Input Overvoltage Fault. + /// Looks up a localized string similar to Output connector overtemperature of BMS components in BST message. /// - internal static string 充电桩输入电压过压故障 { + internal static string BST_报文_BMS_元件输出连接器过温 { get { - return ResourceManager.GetString("充电桩输入电压过压故障", resourceCulture); + return ResourceManager.GetString("BST 报文 BMS 元件输出连接器过温", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile Overtemperature Alarm. + /// Looks up a localized string similar to Charging connector fault in BST message. /// - internal static string 充电桩过温告警 { + internal static string BST_报文充电连接器故障 { get { - return ResourceManager.GetString("充电桩过温告警", resourceCulture); + return ResourceManager.GetString("BST 报文充电连接器故障", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile Overtemperature Fault. + /// Looks up a localized string similar to Other faults in BST message. /// - internal static string 充电桩过温故障 { + internal static string BST_报文其他故障 { get { - return ResourceManager.GetString("充电桩过温故障", resourceCulture); + return ResourceManager.GetString("BST 报文其他故障", resourceCulture); } } /// - /// Looks up a localized string similar to Charging Pile Fan Fault. + /// Looks up a localized string similar to Voltage anomaly in BST message. /// - internal static string 充电桩风扇故障 { + internal static string BST_报文电压异 { get { - return ResourceManager.GetString("充电桩风扇故障", resourceCulture); + return ResourceManager.GetString("BST 报文电压异", resourceCulture); } } /// - /// Looks up a localized string similar to Sub-Control Valve Fault. + /// Looks up a localized string similar to Battery pack overtemperature in BST message. /// - internal static string 分控阀故障 { + internal static string BST_报文电池组温度过高 { get { - return ResourceManager.GetString("分控阀故障", resourceCulture); + return ResourceManager.GetString("BST 报文电池组温度过高", resourceCulture); } } /// - /// Looks up a localized string similar to Single Battery Voltage Above Upper Limit. + /// Looks up a localized string similar to Insulation fault in BST message. /// - internal static string 单体蓄电池电压越上限 { + internal static string BST_报文绝缘故障 { get { - return ResourceManager.GetString("单体蓄电池电压越上限", resourceCulture); + return ResourceManager.GetString("BST 报文绝缘故障", resourceCulture); } } /// - /// Looks up a localized string similar to Single Battery Voltage Below Lower Limit. + /// Looks up a localized string similar to Vehicle detection point 2 voltage detection fault in BST message. /// - internal static string 单体蓄电池电压越下限 { + internal static string BST_报文车辆检测点_2_电压检测故障 { get { - return ResourceManager.GetString("单体蓄电池电压越下限", resourceCulture); + return ResourceManager.GetString("BST 报文车辆检测点 2 电压检测故障", resourceCulture); } } /// - /// Looks up a localized string similar to Backup Power Undervoltage. + /// Looks up a localized string similar to Output connector overtemperature fault in BST message. /// - internal static string 备电欠压 { + internal static string BST_报文输出连接器过温故障 { get { - return ResourceManager.GetString("备电欠压", resourceCulture); + return ResourceManager.GetString("BST 报文输出连接器过温故障", resourceCulture); } } /// - /// Looks up a localized string similar to Emergency Stop Button Action Fault. + /// Looks up a localized string similar to High-voltage relay failure in BST message. /// - internal static string 急停按钮动作故障 { + internal static string BST_报文高压继电器故障 { get { - return ResourceManager.GetString("急停按钮动作故障", resourceCulture); + return ResourceManager.GetString("BST 报文高压继电器故障", resourceCulture); } } /// - /// Looks up a localized string similar to Module Output Reverse Fault. + /// Looks up a localized string similar to S2 switch operation timeout. /// - internal static string 模块输出反接 { + internal static string S2_开关动作超时 { get { - return ResourceManager.GetString("模块输出反接", resourceCulture); + return ResourceManager.GetString("S2 开关动作超时", resourceCulture); } } /// - /// Looks up a localized string similar to Positive DC Output Contactor Sticking Fault. + /// Looks up a localized string similar to SOC anomaly. /// - internal static string 正极直流输出接触器粘连故障 { + internal static string SOC_异常 { get { - return ResourceManager.GetString("正极直流输出接触器粘连故障", resourceCulture); + return ResourceManager.GetString("SOC 异常", resourceCulture); } } /// - /// Looks up a localized string similar to Water Immersion Alarm. + /// Looks up a localized string similar to SOC too low general alarm. /// - internal static string 水浸告警 { + internal static string SOC过低一般报警 { get { - return ResourceManager.GetString("水浸告警", resourceCulture); + return ResourceManager.GetString("SOC过低一般报警", resourceCulture); } } /// - /// Looks up a localized string similar to Discharge Circuit Fault. + /// Looks up a localized string similar to SOC too low severe alarm. /// - internal static string 泄放回路故障 { + internal static string SOC过低严重报警 { get { - return ResourceManager.GetString("泄放回路故障", resourceCulture); + return ResourceManager.GetString("SOC过低严重报警", resourceCulture); } } /// - /// Looks up a localized string similar to Smoke Sensor Fault. + /// Looks up a localized string similar to SOC too low minor alarm. /// - internal static string 烟感故障 { + internal static string SOC过低轻微报警 { get { - return ResourceManager.GetString("烟感故障", resourceCulture); + return ResourceManager.GetString("SOC过低轻微报警", resourceCulture); } } /// - /// Looks up a localized string similar to Battery Polarity Reverse Fault. + /// Looks up a localized string similar to Connection anomaly with vehicle. /// - internal static string 电池极性反接故障 { + internal static string 与车辆连接异常 { get { - return ResourceManager.GetString("电池极性反接故障", resourceCulture); + return ResourceManager.GetString("与车辆连接异常", resourceCulture); } } /// - /// Looks up a localized string similar to Electric Meter Power Abnormal. + /// Looks up a localized string similar to Mainboard hardware failure. /// - internal static string 电表电度异常 { + internal static string 主板硬件故障 { get { - return ResourceManager.GetString("电表电度异常", resourceCulture); + return ResourceManager.GetString("主板硬件故障", resourceCulture); } } /// - /// Looks up a localized string similar to Electric Meter Communication Abnormal. + /// Looks up a localized string similar to Main positive relay open circuit fault. /// - internal static string 电表通信异常 { + internal static string 主正继电器断路故障 { get { - return ResourceManager.GetString("电表通信异常", resourceCulture); + return ResourceManager.GetString("主正继电器断路故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Positive Output Contactor Refusal/Malfunction Fault. + /// Looks up a localized string similar to Main positive relay sticking fault. /// - internal static string 直流母线正极输出_接触器拒动_误动故障 { + internal static string 主正继电器粘连故障 { get { - return ResourceManager.GetString("直流母线正极输出 接触器拒动/误动故障", resourceCulture); + return ResourceManager.GetString("主正继电器粘连故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Positive Output Fuse Fault. + /// Looks up a localized string similar to Main negative relay open circuit fault. /// - internal static string 直流母线正级输出_熔断器故障 { + internal static string 主负继电器断路故障 { get { - return ResourceManager.GetString("直流母线正级输出 熔断器故障", resourceCulture); + return ResourceManager.GetString("主负继电器断路故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Negative Output Contactor Refusal/Malfunction Fault. + /// Looks up a localized string similar to Main negative relay sticking fault. /// - internal static string 直流母线负极输出_接触器拒动_误动故障 { + internal static string 主负继电器粘连故障 { get { - return ResourceManager.GetString("直流母线负极输出 接触器拒动/误动故障", resourceCulture); + return ResourceManager.GetString("主负继电器粘连故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Negative Output Fuse Fault. + /// Looks up a localized string similar to AC circuit breaker fault. /// - internal static string 直流母线负级输出_熔断器故障 { + internal static string 交流断路器故障 { get { - return ResourceManager.GetString("直流母线负级输出 熔断器故障", resourceCulture); + return ResourceManager.GetString("交流断路器故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Output Undervoltage Fault. + /// Looks up a localized string similar to AC meter communication failure. /// - internal static string 直流母线输出欠压故障 { + internal static string 交流电能表通讯故障 { get { - return ResourceManager.GetString("直流母线输出欠压故障", resourceCulture); + return ResourceManager.GetString("交流电能表通讯故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Output Overvoltage Fault. + /// Looks up a localized string similar to AC input contactor failure. /// - internal static string 直流母线输出过压故障 { + internal static string 交流输入接触器拒动_误动故障 { get { - return ResourceManager.GetString("直流母线输出过压故障", resourceCulture); + return ResourceManager.GetString("交流输入接触器拒动/误动故障", resourceCulture); } } /// - /// Looks up a localized string similar to DC Bus Output Overcurrent Fault. + /// Looks up a localized string similar to AC input contactor sticking fault. /// - internal static string 直流母线输出过流故障 { + internal static string 交流输入接触器粘连故障 { get { - return ResourceManager.GetString("直流母线输出过流故障", resourceCulture); + return ResourceManager.GetString("交流输入接触器粘连故障", resourceCulture); } } /// - /// Looks up a localized string similar to Insulation Monitoring Alarm. + /// Looks up a localized string similar to AC output undervoltage fault. /// - internal static string 绝缘监测告警 { + internal static string 交流输出电压欠压故障 { get { - return ResourceManager.GetString("绝缘监测告警", resourceCulture); + return ResourceManager.GetString("交流输出电压欠压故障", resourceCulture); } } /// - /// Looks up a localized string similar to Insulation Monitoring Fault. + /// Looks up a localized string similar to AC output overvoltage fault. /// - internal static string 绝缘监测故障 { + internal static string 交流输出电压过压故障 { get { - return ResourceManager.GetString("绝缘监测故障", resourceCulture); + return ResourceManager.GetString("交流输出电压过压故障", resourceCulture); } } /// - /// Looks up a localized string similar to Negative DC Output Contactor Sticking Fault. + /// Looks up a localized string similar to AC output overcurrent fault. /// - internal static string 负极直流输出接触器粘连故障 { + internal static string 交流输出电流过流故障 { get { - return ResourceManager.GetString("负极直流输出接触器粘连故障", resourceCulture); + return ResourceManager.GetString("交流输出电流过流故障", resourceCulture); } } /// - /// Looks up a localized string similar to Auxiliary Power Supply Fault. + /// Looks up a localized string similar to AC output short circuit fault. /// - internal static string 辅助电源故障 { + internal static string 交流输出短路故障 { get { - return ResourceManager.GetString("辅助电源故障", resourceCulture); + return ResourceManager.GetString("交流输出短路故障", resourceCulture); } } /// - /// Looks up a localized string similar to Reverse Power Alarm. + /// Looks up a localized string similar to Low temperature shutdown alarm. /// - internal static string 逆功率报警 { + internal static string 低温关机告警 { get { - return ResourceManager.GetString("逆功率报警", resourceCulture); + return ResourceManager.GetString("低温关机告警", resourceCulture); } } /// - /// Looks up a localized string similar to Surge Protector Fault. + /// Looks up a localized string similar to Vehicle control guide alarm during charging. /// - internal static string 避雷器故障 { + internal static string 充电中车辆控制导引告警 { get { - return ResourceManager.GetString("避雷器故障", resourceCulture); + return ResourceManager.GetString("充电中车辆控制导引告警", resourceCulture); } } /// - /// Looks up a localized string similar to Access Control Fault. + /// Looks up a localized string similar to Vehicle Control Guidance Fault During Charging. /// - internal static string 门禁故障 { + internal static string 充电中车辆控制导引故障 { get { - return ResourceManager.GetString("门禁故障", resourceCulture); + return ResourceManager.GetString("充电中车辆控制导引故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery not connected before charging. + /// + internal static string 充电前电池未连接 { + get { + return ResourceManager.GetString("充电前电池未连接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging interface electronic lock failure. + /// + internal static string 充电接口电子锁故障 { + get { + return ResourceManager.GetString("充电接口电子锁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Interface Electromagnetic Lock Fault. + /// + internal static string 充电接口电磁锁故障 { + get { + return ResourceManager.GetString("充电接口电磁锁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Interface Overtemperature Fault. + /// + internal static string 充电接口过温故障 { + get { + return ResourceManager.GetString("充电接口过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging telemetry data timeout in billing unit. + /// + internal static string 充电接收计费单元遥测数据超时 { + get { + return ResourceManager.GetString("充电接收计费单元遥测数据超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging controller not connected to vehicle. + /// + internal static string 充电控制器与车辆未连接 { + get { + return ResourceManager.GetString("充电控制器与车辆未连接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging controller determines BMS other abnormal termination. + /// + internal static string 充电控制器判断_BMS_其它异常终止 { + get { + return ResourceManager.GetString("充电控制器判断 BMS 其它异常终止", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other charger faults. + /// + internal static string 充电机其它故障 { + get { + return ResourceManager.GetString("充电机其它故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charger receiving BMS enable message timeout. + /// + internal static string 充电机接收_BMS_使能报文超时 { + get { + return ResourceManager.GetString("充电机接收 BMS 使能报文超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charger fan failure. + /// + internal static string 充电机风扇故障 { + get { + return ResourceManager.GetString("充电机风扇故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Gun Not In Place Alarm. + /// + internal static string 充电枪未归位告警 { + get { + return ResourceManager.GetString("充电枪未归位告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging gun not returned to position. + /// + internal static string 充电枪未归位故障 { + get { + return ResourceManager.GetString("充电枪未归位故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Gun Overtemperature Alarm. + /// + internal static string 充电枪过温告警 { + get { + return ResourceManager.GetString("充电枪过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging gun overtemperature fault. + /// + internal static string 充电枪过温故障 { + get { + return ResourceManager.GetString("充电枪过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging gun lock timeout. + /// + internal static string 充电枪锁止超时 { + get { + return ResourceManager.GetString("充电枪锁止超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging cabinet controller communication failure. + /// + internal static string 充电柜控制器通信故障 { + get { + return ResourceManager.GetString("充电柜控制器通信故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile AC Input Contactor Refusal/Malfunction Fault. + /// + internal static string 充电桩交流输入接触器拒动_误动故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile AC Input Contactor Sticking Fault. + /// + internal static string 充电桩交流输入接触器粘连故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile AC Input Circuit Breaker Fault (System Power Supply Circuit Breaker). + /// + internal static string 充电桩交流输入断路器故障_系统供电断路器_ { + get { + return ResourceManager.GetString("充电桩交流输入断路器故障(系统供电断路器)", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Input Undervoltage Fault. + /// + internal static string 充电桩输入电压欠压故障 { + get { + return ResourceManager.GetString("充电桩输入电压欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Input Overvoltage Fault. + /// + internal static string 充电桩输入电压过压故障 { + get { + return ResourceManager.GetString("充电桩输入电压过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Overtemperature Alarm. + /// + internal static string 充电桩过温告警 { + get { + return ResourceManager.GetString("充电桩过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging pile overtemperature fault. + /// + internal static string 充电桩过温故障 { + get { + return ResourceManager.GetString("充电桩过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Fan Fault. + /// + internal static string 充电桩风扇故障 { + get { + return ResourceManager.GetString("充电桩风扇故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging module AC input phase loss alarm. + /// + internal static string 充电模块交流输入缺相告警 { + get { + return ResourceManager.GetString("充电模块交流输入缺相告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging module failure. + /// + internal static string 充电模块故障 { + get { + return ResourceManager.GetString("充电模块故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging module communication alarm. + /// + internal static string 充电模块通信告警 { + get { + return ResourceManager.GetString("充电模块通信告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging current too large general alarm. + /// + internal static string 充电电流过大一般报警 { + get { + return ResourceManager.GetString("充电电流过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging current too large severe alarm. + /// + internal static string 充电电流过大严重报警 { + get { + return ResourceManager.GetString("充电电流过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging current too large minor alarm. + /// + internal static string 充电电流过大轻微报警 { + get { + return ResourceManager.GetString("充电电流过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging current overcurrent. + /// + internal static string 充电电流过流 { + get { + return ResourceManager.GetString("充电电流过流", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging terminal stops service. + /// + internal static string 充电终端停止服务 { + get { + return ResourceManager.GetString("充电终端停止服务", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other faults. + /// + internal static string 其他故障 { + get { + return ResourceManager.GetString("其他故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sub-Control Valve Fault. + /// + internal static string 分控阀故障 { + get { + return ResourceManager.GetString("分控阀故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Power battery system internal communication failure. + /// + internal static string 动力电池系统内部通讯故障 { + get { + return ResourceManager.GetString("动力电池系统内部通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage difference too large general alarm. + /// + internal static string 单体压差过大一般报警 { + get { + return ResourceManager.GetString("单体压差过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage difference too large severe alarm. + /// + internal static string 单体压差过大严重报警 { + get { + return ResourceManager.GetString("单体压差过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage difference too large minor alarm. + /// + internal static string 单体压差过大轻微报警 { + get { + return ResourceManager.GetString("单体压差过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage too low general alarm. + /// + internal static string 单体电压过低一般报警 { + get { + return ResourceManager.GetString("单体电压过低一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage too low severe alarm. + /// + internal static string 单体电压过低严重报警 { + get { + return ResourceManager.GetString("单体电压过低严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage too low minor alarm. + /// + internal static string 单体电压过低轻微报警 { + get { + return ResourceManager.GetString("单体电压过低轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage too high general alarm. + /// + internal static string 单体电压过高一般报警 { + get { + return ResourceManager.GetString("单体电压过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage too high severe alarm. + /// + internal static string 单体电压过高严重报警 { + get { + return ResourceManager.GetString("单体电压过高严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single cell voltage too high minor alarm. + /// + internal static string 单体电压过高轻微报警 { + get { + return ResourceManager.GetString("单体电压过高轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single Battery Voltage Above Upper Limit. + /// + internal static string 单体蓄电池电压越上限 { + get { + return ResourceManager.GetString("单体蓄电池电压越上限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single Battery Voltage Below Lower Limit. + /// + internal static string 单体蓄电池电压越下限 { + get { + return ResourceManager.GetString("单体蓄电池电压越下限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Backend communication failure. + /// + internal static string 后台通讯故障 { + get { + return ResourceManager.GetString("后台通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output contactor outside voltage > charger maximum output voltage before charging starts. + /// + internal static string 启动充电前直流输出接触器外侧电压大于充电机最大输出电压 { + get { + return ResourceManager.GetString("启动充电前直流输出接触器外侧电压大于充电机最大输出电压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output contactor outside voltage charger minimum output voltage before charging starts. + /// + internal static string 启动充电前直流输出接触器外侧电压小于充电机最小输出电压 { + get { + return ResourceManager.GetString("启动充电前直流输出接触器外侧电压小于充电机最小输出电压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Backup Power Undervoltage. + /// + internal static string 备电欠压 { + get { + return ResourceManager.GetString("备电欠压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Platform clock and local deviation too large. + /// + internal static string 平台时钟与本地偏差过大 { + get { + return ResourceManager.GetString("平台时钟与本地偏差过大", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parallel contactor failure. + /// + internal static string 并联接触器拒动_误动故障 { + get { + return ResourceManager.GetString("并联接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parallel contactor sticking fault. + /// + internal static string 并联接触器粘连故障 { + get { + return ResourceManager.GetString("并联接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emergency charging state. + /// + internal static string 应急充电状态 { + get { + return ResourceManager.GetString("应急充电状态", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emergency charging state reset. + /// + internal static string 应急充电状态复位 { + get { + return ResourceManager.GetString("应急充电状态复位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Abnormal power down. + /// + internal static string 异常掉电 { + get { + return ResourceManager.GetString("异常掉电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emergency Stop Button Action Fault. + /// + internal static string 急停按钮动作故障 { + get { + return ResourceManager.GetString("急停按钮动作故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emergency stop failure. + /// + internal static string 急停故障 { + get { + return ResourceManager.GetString("急停故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge current too large general alarm. + /// + internal static string 放电电流过大一般报警 { + get { + return ResourceManager.GetString("放电电流过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge current too large severe alarm. + /// + internal static string 放电电流过大严重报警 { + get { + return ResourceManager.GetString("放电电流过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge current too large minor alarm. + /// + internal static string 放电电流过大轻微报警 { + get { + return ResourceManager.GetString("放电电流过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Data validation failure. + /// + internal static string 数据合法校验失败 { + get { + return ResourceManager.GetString("数据合法校验失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Module group output mode switch failure. + /// + internal static string 整组模块输出模式切换失败 { + get { + return ResourceManager.GetString("整组模块输出模式切换失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Module group communication failure. + /// + internal static string 整组模块通讯故障 { + get { + return ResourceManager.GetString("整组模块通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No power available. + /// + internal static string 无功率可用 { + get { + return ResourceManager.GetString("无功率可用", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Module Output Reverse Fault. + /// + internal static string 模块输出反接 { + get { + return ResourceManager.GetString("模块输出反接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Positive/negative pole temperature too high general alarm. + /// + internal static string 正_负极柱温度过高一般报警 { + get { + return ResourceManager.GetString("正/负极柱温度过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Positive/negative pole temperature too high minor alarm. + /// + internal static string 正_负极柱温度过高轻微报警 { + get { + return ResourceManager.GetString("正/负极柱温度过高轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Positive DC Output Contactor Sticking Fault. + /// + internal static string 正极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("正极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Immersion Alarm. + /// + internal static string 水浸告警 { + get { + return ResourceManager.GetString("水浸告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge Circuit Fault. + /// + internal static string 泄放回路故障 { + get { + return ResourceManager.GetString("泄放回路故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge circuit fault. + /// + internal static string 泄放电路故障 { + get { + return ResourceManager.GetString("泄放电路故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Smoke Sensor Fault. + /// + internal static string 烟感故障 { + get { + return ResourceManager.GetString("烟感故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery highest allowable charging voltage less than charger minimum output voltage fault. + /// + internal static string 电池最高允许充电电压小于充电机最小输出电压故障 { + get { + return ResourceManager.GetString("电池最高允许充电电压小于充电机最小输出电压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery reverse connection fault. + /// + internal static string 电池反接故障 { + get { + return ResourceManager.GetString("电池反接故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery Polarity Reverse Fault. + /// + internal static string 电池极性反接故障 { + get { + return ResourceManager.GetString("电池极性反接故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature difference too large general alarm. + /// + internal static string 电池温差过大一般报警 { + get { + return ResourceManager.GetString("电池温差过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature difference too large severe alarm. + /// + internal static string 电池温差过大严重报警 { + get { + return ResourceManager.GetString("电池温差过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature difference too large minor alarm. + /// + internal static string 电池温差过大轻微报警 { + get { + return ResourceManager.GetString("电池温差过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature too low general alarm. + /// + internal static string 电池温度过低一般报警 { + get { + return ResourceManager.GetString("电池温度过低一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature too low severe alarm. + /// + internal static string 电池温度过低严重报警 { + get { + return ResourceManager.GetString("电池温度过低严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature too low minor alarm. + /// + internal static string 电池温度过低轻微报警 { + get { + return ResourceManager.GetString("电池温度过低轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature too high general alarm. + /// + internal static string 电池温度过高一般报警 { + get { + return ResourceManager.GetString("电池温度过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature too high severe alarm. + /// + internal static string 电池温度过高严重报警 { + get { + return ResourceManager.GetString("电池温度过高严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery temperature too high minor alarm. + /// + internal static string 电池温度过高轻微报警 { + get { + return ResourceManager.GetString("电池温度过高轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery thermal failure. + /// + internal static string 电池热失效故障 { + get { + return ResourceManager.GetString("电池热失效故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery pack overvoltage. + /// + internal static string 电池组过压 { + get { + return ResourceManager.GetString("电池组过压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current mismatch. + /// + internal static string 电流不匹配 { + get { + return ResourceManager.GetString("电流不匹配", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current sampling mismatch. + /// + internal static string 电流采样不匹配 { + get { + return ResourceManager.GetString("电流采样不匹配", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Meter data overflow fault. + /// + internal static string 电能表数据溢出故障 { + get { + return ResourceManager.GetString("电能表数据溢出故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Meter data overflow warning. + /// + internal static string 电能表数据溢出预警 { + get { + return ResourceManager.GetString("电能表数据溢出预警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Meter period mismatch. + /// + internal static string 电能表时段不匹配 { + get { + return ResourceManager.GetString("电能表时段不匹配", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Meter clock anomaly. + /// + internal static string 电能表时钟异常 { + get { + return ResourceManager.GetString("电能表时钟异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Electric Meter Power Abnormal. + /// + internal static string 电表电度异常 { + get { + return ResourceManager.GetString("电表电度异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Electric Meter Communication Abnormal. + /// + internal static string 电表通信异常 { + get { + return ResourceManager.GetString("电表通信异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Energy cannot be transferred. + /// + internal static string 电量不能传输 { + get { + return ResourceManager.GetString("电量不能传输", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Positive Output Contactor Refusal/Malfunction Fault. + /// + internal static string 直流母线正极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线正极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Positive Output Fuse Fault. + /// + internal static string 直流母线正级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线正级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Negative Output Contactor Refusal/Malfunction Fault. + /// + internal static string 直流母线负极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线负极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Negative Output Fuse Fault. + /// + internal static string 直流母线负级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线负级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC bus output contactor failure. + /// + internal static string 直流母线输出接触器故障 { + get { + return ResourceManager.GetString("直流母线输出接触器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Output Undervoltage Fault. + /// + internal static string 直流母线输出欠压故障 { + get { + return ResourceManager.GetString("直流母线输出欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC bus output fuse failure. + /// + internal static string 直流母线输出熔断器故障 { + get { + return ResourceManager.GetString("直流母线输出熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Output Overvoltage Fault. + /// + internal static string 直流母线输出过压故障 { + get { + return ResourceManager.GetString("直流母线输出过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Output Overcurrent Fault. + /// + internal static string 直流母线输出过流故障 { + get { + return ResourceManager.GetString("直流母线输出过流故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC meter communication failure. + /// + internal static string 直流电能表通讯故障 { + get { + return ResourceManager.GetString("直流电能表通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output contactor failure. + /// + internal static string 直流输出接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流输出接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output contactor sticking fault. + /// + internal static string 直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output undervoltage alarm. + /// + internal static string 直流输出欠压告警 { + get { + return ResourceManager.GetString("直流输出欠压告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output overvoltage alarm. + /// + internal static string 直流输出过压告警 { + get { + return ResourceManager.GetString("直流输出过压告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC output overcurrent alarm. + /// + internal static string 直流输出过流告警 { + get { + return ResourceManager.GetString("直流输出过流告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hardware failure. + /// + internal static string 硬件故障 { + get { + return ResourceManager.GetString("硬件故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC bus voltage anomaly alarm during idle. + /// + internal static string 空闲时直流母线电压异常告警 { + get { + return ResourceManager.GetString("空闲时直流母线电压异常告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for insulation test failure. + /// + internal static string 等待绝缘检测失败 { + get { + return ResourceManager.GetString("等待绝缘检测失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Terminal reset and power on. + /// + internal static string 终端复位上电 { + get { + return ResourceManager.GetString("终端复位上电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pre-insulation monitoring DC output contactor outside voltage ≥10V. + /// + internal static string 绝缘监测前直流输出接触器外侧电压大于等于10V { + get { + return ResourceManager.GetString("绝缘监测前直流输出接触器外侧电压大于等于10V", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation Monitoring Alarm. + /// + internal static string 绝缘监测告警 { + get { + return ResourceManager.GetString("绝缘监测告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation monitoring anomaly. + /// + internal static string 绝缘监测异常 { + get { + return ResourceManager.GetString("绝缘监测异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation monitoring failure. + /// + internal static string 绝缘监测故障 { + get { + return ResourceManager.GetString("绝缘监测故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation monitoring module failure. + /// + internal static string 绝缘监测模块故障 { + get { + return ResourceManager.GetString("绝缘监测模块故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation equipment communication failure. + /// + internal static string 绝缘设备通讯故障 { + get { + return ResourceManager.GetString("绝缘设备通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maintenance door open stop charging. + /// + internal static string 维修门开停止充电 { + get { + return ResourceManager.GetString("维修门开停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Card reader communication failure. + /// + internal static string 读卡器通讯故障 { + get { + return ResourceManager.GetString("读卡器通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Negative DC Output Contactor Sticking Fault. + /// + internal static string 负极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("负极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle parameter anomaly. + /// + internal static string 车辆参数异常 { + get { + return ResourceManager.GetString("车辆参数异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle stops charging. + /// + internal static string 车辆终止充电 { + get { + return ResourceManager.GetString("车辆终止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auxiliary Power Supply Fault. + /// + internal static string 辅助电源故障 { + get { + return ResourceManager.GetString("辅助电源故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input undervoltage. + /// + internal static string 输入电压欠压 { + get { + return ResourceManager.GetString("输入电压欠压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input overvoltage. + /// + internal static string 输入电压过压 { + get { + return ResourceManager.GetString("输入电压过压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input high voltage contactor failure. + /// + internal static string 输入高压接触器拒动_误动故障 { + get { + return ResourceManager.GetString("输入高压接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input high voltage contactor sticking fault. + /// + internal static string 输入高压接触器粘连故障 { + get { + return ResourceManager.GetString("输入高压接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input high voltage circuit breaker fault. + /// + internal static string 输入高压断路器故障 { + get { + return ResourceManager.GetString("输入高压断路器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output undervoltage fault. + /// + internal static string 输出电压欠压故障 { + get { + return ResourceManager.GetString("输出电压欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output overvoltage fault. + /// + internal static string 输出电压过压故障 { + get { + return ResourceManager.GetString("输出电压过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output short circuit anomaly. + /// + internal static string 输出短路异常 { + get { + return ResourceManager.GetString("输出短路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output high voltage contactor failure. + /// + internal static string 输出高压接触器拒动_误动故障 { + get { + return ResourceManager.GetString("输出高压接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output high voltage contactor sticking fault. + /// + internal static string 输出高压接触器粘连故障 { + get { + return ResourceManager.GetString("输出高压接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output high voltage fuse failure. + /// + internal static string 输出高压熔断器故障 { + get { + return ResourceManager.GetString("输出高压熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reached discharge SOC termination. + /// + internal static string 达到放电_SOC_终止 { + get { + return ResourceManager.GetString("达到放电 SOC 终止", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reached discharge voltage termination. + /// + internal static string 达到放电电压终止 { + get { + return ResourceManager.GetString("达到放电电压终止", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Overcharge stop charging. + /// + internal static string 过充停止充电 { + get { + return ResourceManager.GetString("过充停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connector positive/negative end temperature too high general alarm. + /// + internal static string 连接器正_负端温度过高一般报警 { + get { + return ResourceManager.GetString("连接器正/负端温度过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reverse Power Alarm. + /// + internal static string 逆功率报警 { + get { + return ResourceManager.GetString("逆功率报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Surge Protector Fault. + /// + internal static string 避雷器故障 { + get { + return ResourceManager.GetString("避雷器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access Control Fault. + /// + internal static string 门禁故障 { + get { + return ResourceManager.GetString("门禁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Precharge failure alarm. + /// + internal static string 预充失败告警 { + get { + return ResourceManager.GetString("预充失败告警", resourceCulture); } } } diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx index 4955d56..ed23d48 100644 --- a/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx @@ -1821,17 +1821,12 @@ Insulation Monitoring Alarm - - Insulation Monitoring Fault - + Battery Polarity Reverse Fault Vehicle Control Guidance Fault During Charging - - - Charging Pile Overtemperature Fault Charging Interface Overtemperature Fault @@ -2008,5 +2003,527 @@ Sub-Control Valve Fault + + Card reader communication failure + + + AC input contactor failure + + + Mainboard hardware failure + + + Charging module communication alarm + + + Emergency stop failure + + + Insulation monitoring failure + + + Insulation equipment communication failure + + + Input overvoltage + + + Input undervoltage + + + Charging module AC input phase loss alarm + + + DC output overvoltage alarm + + + DC output undervoltage alarm + + + DC output overcurrent alarm + + + Output short circuit anomaly + + + DC meter communication failure + + + AC meter communication failure + + + Insulation monitoring anomaly + + + BMS communication timeout + + + Battery reverse connection fault + + + Battery not connected before charging + + + Battery pack overvoltage + + + Connector connection status abnormal in BSM message + + + Abnormal power down + + + Charging cabinet controller communication failure + + + 1# output switch off + + + 2# output switch off + + + Charging gun not returned to position + + + Charging pile overtemperature fault + + + Vehicle control guide alarm during charging + + + AC circuit breaker fault + + + Charging interface electronic lock failure + + + Charging gun overtemperature fault + + + + DC output contactor failure + + + DC bus output fuse failure + + + Charger fan failure + + + Charging overcurrent alarm in BSM message + + + BMS auxiliary power anomaly + + + Charging connector fault in BST message + + + Insulation monitoring module failure + + + High-voltage relay failure in BST message + + + Emergency charging state + + + Terminal reset and power on + + + Waiting for insulation test failure + + + Precharge failure alarm + + + Charging current overcurrent + + + DC bus voltage anomaly alarm during idle + + + Module group communication failure + + + Single battery cell voltage too low in BSM message + + + Single battery cell voltage too high in BSM message + + + SOC too high in BSM message + + + Vehicle parameter anomaly + + + BRO message (0xAA) reception timeout + + + Charger receiving BMS enable message timeout + + + Vehicle detection point 2 voltage detection fault in BST message + + + Other faults in BST message + + + Overcurrent in BST message (current exceeds demand) + + + Voltage anomaly in BST message + + + Energy cannot be transferred + + + Current mismatch + + + Discharge circuit fault + + + Output connector overtemperature fault in BST message + + + Output connector overtemperature of BMS components in BST message + + + Connection anomaly with vehicle + + + Low temperature shutdown alarm + + + Pre-insulation monitoring DC output contactor outside voltage ≥10V + + + DC output contactor outside voltage charger minimum output voltage before charging starts + + + DC output contactor outside voltage > charger maximum output voltage before charging starts + + + DC output contactor outside voltage differs from communication message battery voltage by ±5% before charging starts + + + Battery pack overtemperature in BST message + + + Insulation fault in BST message + + + Charging telemetry data timeout in billing unit + + + Emergency charging state reset + + + Maintenance door open stop charging + + + Charging gun lock timeout + + + Reached discharge voltage termination + + + Reached discharge SOC termination + + + SOC too low in BSM message + + + Single cell voltage higher than maximum allowed charging voltage in BMS message + + + BRM message reception timeout + + + BRM message data item anomaly (message length error, BMS communication protocol version error, other data errors) + + + BCP message reception timeout + + + BCP message data item anomaly (message length error, BMS communication protocol version error, other data errors) + + + BRO message (0x00) reception timeout + + + Battery charging demand message (BCL) timeout + + + Battery charging total status (BCS) timeout + + + Power battery status information (BSM) timeout + + + Battery highest allowable charging voltage less than charger minimum output voltage fault + + + Data validation failure + + + Charging controller and billing control unit version verification not completed + + + Charging controller and billing control unit charging parameter issuance not completed + + + Charging controller service paused (refer to charging service start control) + + + Charging controller in "working" state + + + Charging controller in "paused" state + + + Charging controller not connected to vehicle + + + Input high voltage circuit breaker fault + + + Input high voltage contactor failure + + + Input high voltage contactor sticking fault + + + Output high voltage contactor failure + + + Output high voltage contactor sticking fault + + + Output high voltage fuse failure + + + Parallel contactor failure + + + Parallel contactor sticking fault + + + Charging module failure + + + Input voltage fault (input overvoltage/undervoltage, AC input phase loss, input overcurrent, etc.) + + + Output undervoltage fault + + + Output overvoltage fault + + + AC input contactor sticking fault + + + AC input fault (overvoltage, undervoltage, phase loss, overcurrent) + + + DC output contactor sticking fault + + + BMS normal stop charging + + + BMS abnormal stop charging + + + Charging controller determines BMS other abnormal termination + + + Battery pack overtemperature in BSM message + + + Insulation fault in BSM message + + + DC bus output contactor failure + + + SOC anomaly + + + Other charger faults + + + Overcharge stop charging + + + Module group output mode switch failure + + + AC output overvoltage fault + + + AC output undervoltage fault + + + AC output overcurrent fault + + + AC output short circuit fault + + + Vehicle stops charging + + + S2 switch operation timeout + + + Meter period mismatch + + + Meter clock anomaly + + + Backend communication failure + + + Charging terminal stops service + + + Meter data overflow warning + + + Meter data overflow fault + + + No power available + + + Current sampling mismatch + + + Platform clock and local deviation too large + + + Single cell voltage too low minor alarm + + + Single cell voltage too low general alarm + + + Single cell voltage too low severe alarm + + + Single cell voltage too high minor alarm + + + Single cell voltage too high general alarm + + + Single cell voltage too high severe alarm + + + Single cell voltage difference too large minor alarm + + + Single cell voltage difference too large general alarm + + + Single cell voltage difference too large severe alarm + + + Battery temperature too low minor alarm + + + Battery temperature too low general alarm + + + Battery temperature too low severe alarm + + + Battery temperature too high minor alarm + + + Battery temperature too high general alarm + + + Battery temperature too high severe alarm + + + Battery temperature difference too large minor alarm + + + Battery temperature difference too large general alarm + + + Battery temperature difference too large severe alarm + + + SOC too low minor alarm + + + SOC too low general alarm + + + SOC too low severe alarm + + + Discharge current too large minor alarm + + + Discharge current too large general alarm + + + Discharge current too large severe alarm + + + Charging current too large minor alarm + + + Charging current too large general alarm + + + Charging current too large severe alarm + + + Connector positive/negative end temperature too high general alarm + + + Positive/negative pole temperature too high minor alarm + + + Positive/negative pole temperature too high general alarm + + + Main positive relay sticking fault + + + Main positive relay open circuit fault + + + Main negative relay sticking fault + + + Main negative relay open circuit fault + + + Hardware failure + + + Power battery system internal communication failure + + + Battery thermal failure + + + Other faults + + + + + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs index 88548e7..6de2364 100644 --- a/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs @@ -59,6 +59,15 @@ namespace WebStarter.Resources { } } + /// + /// Looks up a localized string similar to 1#输出开关断开. + /// + internal static string _1_输出开关断开 { + get { + return ResourceManager.GetString("1#输出开关断开", resourceCulture); + } + } + /// /// Looks up a localized string similar to 吊具推杆1夹爪推杆伸出超时报警. /// @@ -194,6 +203,15 @@ namespace WebStarter.Resources { } } + /// + /// Looks up a localized string similar to 2#输出开关断开. + /// + internal static string _2_输出开关断开 { + get { + return ResourceManager.GetString("2#输出开关断开", resourceCulture); + } + } + /// /// Looks up a localized string similar to 安全PLC没有运行. /// @@ -2957,6 +2975,60 @@ namespace WebStarter.Resources { } } + /// + /// Looks up a localized string similar to BCP 报文接收超时. + /// + internal static string BCP_报文接收超时 { + get { + return ResourceManager.GetString("BCP 报文接收超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS 单体测量最高电压大于单体最高允许充电电压过高. + /// + internal static string BMS_单体测量最高电压大于单体最高允许充电电压过高 { + get { + return ResourceManager.GetString("BMS 单体测量最高电压大于单体最高允许充电电压过高", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS 异常停止充电. + /// + internal static string BMS_异常停止充电 { + get { + return ResourceManager.GetString("BMS 异常停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS 正常停止充电. + /// + internal static string BMS_正常停止充电 { + get { + return ResourceManager.GetString("BMS 正常停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS 辅助电源异常. + /// + internal static string BMS_辅助电源异常 { + get { + return ResourceManager.GetString("BMS 辅助电源异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS 通讯超时. + /// + internal static string BMS_通讯超时 { + get { + return ResourceManager.GetString("BMS 通讯超时", resourceCulture); + } + } + /// /// Looks up a localized string similar to BMS通信故障. /// @@ -2967,362 +3039,1676 @@ namespace WebStarter.Resources { } /// - /// Looks up a localized string similar to 充电中车辆控制导引故障. + /// Looks up a localized string similar to BRM 报文接收超时. /// - internal static string 充电中车辆控制导引故障 { + internal static string BRM_报文接收超时 { get { - return ResourceManager.GetString("充电中车辆控制导引故障", resourceCulture); + return ResourceManager.GetString("BRM 报文接收超时", resourceCulture); } } /// - /// Looks up a localized string similar to 充电接口电磁锁故障. + /// Looks up a localized string similar to BSM 报文中 SOC 过低. /// - internal static string 充电接口电磁锁故障 { + internal static string BSM_报文中_SOC_过低 { get { - return ResourceManager.GetString("充电接口电磁锁故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中 SOC 过低", resourceCulture); } } /// - /// Looks up a localized string similar to 充电接口过温故障. + /// Looks up a localized string similar to BSM 报文中 SOC 过高. /// - internal static string 充电接口过温故障 { + internal static string BSM_报文中_SOC_过高 { get { - return ResourceManager.GetString("充电接口过温故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中 SOC 过高", resourceCulture); } } /// - /// Looks up a localized string similar to 充电枪未归位告警. + /// Looks up a localized string similar to BSM 报文中充电过流告警. /// - internal static string 充电枪未归位告警 { + internal static string BSM_报文中充电过流告警 { get { - return ResourceManager.GetString("充电枪未归位告警", resourceCulture); + return ResourceManager.GetString("BSM 报文中充电过流告警", resourceCulture); } } /// - /// Looks up a localized string similar to 充电枪过温告警. + /// Looks up a localized string similar to BSM 报文中单体动力蓄电池电压过低. /// - internal static string 充电枪过温告警 { + internal static string BSM_报文中单体动力蓄电池电压过低 { get { - return ResourceManager.GetString("充电枪过温告警", resourceCulture); + return ResourceManager.GetString("BSM 报文中单体动力蓄电池电压过低", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩交流输入接触器据动/误动故障. + /// Looks up a localized string similar to BSM 报文中单体动力蓄电池电压过高. /// - internal static string 充电桩交流输入接触器据动_误动故障 { + internal static string BSM_报文中单体动力蓄电池电压过高 { get { - return ResourceManager.GetString("充电桩交流输入接触器据动/误动故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中单体动力蓄电池电压过高", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩交流输入接触器粘连故障. + /// Looks up a localized string similar to BSM 报文中连接器连接状态异常. /// - internal static string 充电桩交流输入接触器粘连故障 { + internal static string BSM_报文中连接器连接状态异常 { get { - return ResourceManager.GetString("充电桩交流输入接触器粘连故障", resourceCulture); + return ResourceManager.GetString("BSM 报文中连接器连接状态异常", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩交流输入断路器故障(系统供电断路器). + /// Looks up a localized string similar to BSM 报文电池组温度过高. /// - internal static string 充电桩交流输入断路器故障_系统供电断路器_ { + internal static string BSM_报文电池组温度过高 { get { - return ResourceManager.GetString("充电桩交流输入断路器故障(系统供电断路器)", resourceCulture); + return ResourceManager.GetString("BSM 报文电池组温度过高", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩输入电压欠压故障. + /// Looks up a localized string similar to BSM 报文绝缘故障. /// - internal static string 充电桩输入电压欠压故障 { + internal static string BSM_报文绝缘故障 { get { - return ResourceManager.GetString("充电桩输入电压欠压故障", resourceCulture); + return ResourceManager.GetString("BSM 报文绝缘故障", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩输入电压过压故障. + /// Looks up a localized string similar to BST 报文 BMS 元件输出连接器过温. /// - internal static string 充电桩输入电压过压故障 { + internal static string BST_报文_BMS_元件输出连接器过温 { get { - return ResourceManager.GetString("充电桩输入电压过压故障", resourceCulture); + return ResourceManager.GetString("BST 报文 BMS 元件输出连接器过温", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩过温告警. + /// Looks up a localized string similar to BST 报文充电连接器故障. /// - internal static string 充电桩过温告警 { + internal static string BST_报文充电连接器故障 { get { - return ResourceManager.GetString("充电桩过温告警", resourceCulture); + return ResourceManager.GetString("BST 报文充电连接器故障", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩过温故障. + /// Looks up a localized string similar to BST 报文其他故障. /// - internal static string 充电桩过温故障 { + internal static string BST_报文其他故障 { get { - return ResourceManager.GetString("充电桩过温故障", resourceCulture); + return ResourceManager.GetString("BST 报文其他故障", resourceCulture); } } /// - /// Looks up a localized string similar to 充电桩风扇故障. + /// Looks up a localized string similar to BST 报文电压异. /// - internal static string 充电桩风扇故障 { + internal static string BST_报文电压异 { get { - return ResourceManager.GetString("充电桩风扇故障", resourceCulture); + return ResourceManager.GetString("BST 报文电压异", resourceCulture); } } /// - /// Looks up a localized string similar to 分控阀故障. + /// Looks up a localized string similar to BST 报文电池组温度过高. /// - internal static string 分控阀故障 { + internal static string BST_报文电池组温度过高 { get { - return ResourceManager.GetString("分控阀故障", resourceCulture); + return ResourceManager.GetString("BST 报文电池组温度过高", resourceCulture); } } /// - /// Looks up a localized string similar to 单体蓄电池电压越上限. + /// Looks up a localized string similar to BST 报文绝缘故障. /// - internal static string 单体蓄电池电压越上限 { + internal static string BST_报文绝缘故障 { get { - return ResourceManager.GetString("单体蓄电池电压越上限", resourceCulture); + return ResourceManager.GetString("BST 报文绝缘故障", resourceCulture); } } /// - /// Looks up a localized string similar to 单体蓄电池电压越下限. + /// Looks up a localized string similar to BST 报文车辆检测点 2 电压检测故障. /// - internal static string 单体蓄电池电压越下限 { + internal static string BST_报文车辆检测点_2_电压检测故障 { get { - return ResourceManager.GetString("单体蓄电池电压越下限", resourceCulture); + return ResourceManager.GetString("BST 报文车辆检测点 2 电压检测故障", resourceCulture); } } /// - /// Looks up a localized string similar to 备电欠压. + /// Looks up a localized string similar to BST 报文输出连接器过温故障. /// - internal static string 备电欠压 { + internal static string BST_报文输出连接器过温故障 { get { - return ResourceManager.GetString("备电欠压", resourceCulture); + return ResourceManager.GetString("BST 报文输出连接器过温故障", resourceCulture); } } /// - /// Looks up a localized string similar to 急停按钮动作故障. + /// Looks up a localized string similar to BST 报文高压继电器故障. /// - internal static string 急停按钮动作故障 { + internal static string BST_报文高压继电器故障 { get { - return ResourceManager.GetString("急停按钮动作故障", resourceCulture); + return ResourceManager.GetString("BST 报文高压继电器故障", resourceCulture); } } /// - /// Looks up a localized string similar to 模块输出反接. + /// Looks up a localized string similar to S2 开关动作超时. /// - internal static string 模块输出反接 { + internal static string S2_开关动作超时 { get { - return ResourceManager.GetString("模块输出反接", resourceCulture); + return ResourceManager.GetString("S2 开关动作超时", resourceCulture); } } /// - /// Looks up a localized string similar to 正极直流输出接触器粘连故障. + /// Looks up a localized string similar to SOC 异常. /// - internal static string 正极直流输出接触器粘连故障 { + internal static string SOC_异常 { get { - return ResourceManager.GetString("正极直流输出接触器粘连故障", resourceCulture); + return ResourceManager.GetString("SOC 异常", resourceCulture); } } /// - /// Looks up a localized string similar to 水浸告警. + /// Looks up a localized string similar to SOC过低一般报警. /// - internal static string 水浸告警 { + internal static string SOC过低一般报警 { get { - return ResourceManager.GetString("水浸告警", resourceCulture); + return ResourceManager.GetString("SOC过低一般报警", resourceCulture); } } /// - /// Looks up a localized string similar to 泄放回路故障. + /// Looks up a localized string similar to SOC过低严重报警. /// - internal static string 泄放回路故障 { + internal static string SOC过低严重报警 { get { - return ResourceManager.GetString("泄放回路故障", resourceCulture); + return ResourceManager.GetString("SOC过低严重报警", resourceCulture); } } /// - /// Looks up a localized string similar to 烟感故障. + /// Looks up a localized string similar to SOC过低轻微报警. /// - internal static string 烟感故障 { + internal static string SOC过低轻微报警 { get { - return ResourceManager.GetString("烟感故障", resourceCulture); + return ResourceManager.GetString("SOC过低轻微报警", resourceCulture); } } /// - /// Looks up a localized string similar to 电池极性反接故障. + /// Looks up a localized string similar to 与车辆连接异常. /// - internal static string 电池极性反接故障 { + internal static string 与车辆连接异常 { get { - return ResourceManager.GetString("电池极性反接故障", resourceCulture); + return ResourceManager.GetString("与车辆连接异常", resourceCulture); } } /// - /// Looks up a localized string similar to 电表电度异常. + /// Looks up a localized string similar to 主板硬件故障. /// - internal static string 电表电度异常 { + internal static string 主板硬件故障 { get { - return ResourceManager.GetString("电表电度异常", resourceCulture); + return ResourceManager.GetString("主板硬件故障", resourceCulture); } } /// - /// Looks up a localized string similar to 电表通信异常. + /// Looks up a localized string similar to 主正继电器断路故障. /// - internal static string 电表通信异常 { + internal static string 主正继电器断路故障 { get { - return ResourceManager.GetString("电表通信异常", resourceCulture); + return ResourceManager.GetString("主正继电器断路故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线正极输出 接触器拒动/误动故障. + /// Looks up a localized string similar to 主正继电器粘连故障. /// - internal static string 直流母线正极输出_接触器拒动_误动故障 { + internal static string 主正继电器粘连故障 { get { - return ResourceManager.GetString("直流母线正极输出 接触器拒动/误动故障", resourceCulture); + return ResourceManager.GetString("主正继电器粘连故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线正级输出 熔断器故障. + /// Looks up a localized string similar to 主负继电器断路故障. /// - internal static string 直流母线正级输出_熔断器故障 { + internal static string 主负继电器断路故障 { get { - return ResourceManager.GetString("直流母线正级输出 熔断器故障", resourceCulture); + return ResourceManager.GetString("主负继电器断路故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线负极输出 接触器拒动/误动故障. + /// Looks up a localized string similar to 主负继电器粘连故障. /// - internal static string 直流母线负极输出_接触器拒动_误动故障 { + internal static string 主负继电器粘连故障 { get { - return ResourceManager.GetString("直流母线负极输出 接触器拒动/误动故障", resourceCulture); + return ResourceManager.GetString("主负继电器粘连故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线负级输出 熔断器故障. + /// Looks up a localized string similar to 交流断路器故障. /// - internal static string 直流母线负级输出_熔断器故障 { + internal static string 交流断路器故障 { get { - return ResourceManager.GetString("直流母线负级输出 熔断器故障", resourceCulture); + return ResourceManager.GetString("交流断路器故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线输出欠压故障. + /// Looks up a localized string similar to 交流电能表通讯故障. /// - internal static string 直流母线输出欠压故障 { + internal static string 交流电能表通讯故障 { get { - return ResourceManager.GetString("直流母线输出欠压故障", resourceCulture); + return ResourceManager.GetString("交流电能表通讯故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线输出过压故障. + /// Looks up a localized string similar to 交流输入接触器拒动/误动故障. /// - internal static string 直流母线输出过压故障 { + internal static string 交流输入接触器拒动_误动故障 { get { - return ResourceManager.GetString("直流母线输出过压故障", resourceCulture); + return ResourceManager.GetString("交流输入接触器拒动/误动故障", resourceCulture); } } /// - /// Looks up a localized string similar to 直流母线输出过流故障. + /// Looks up a localized string similar to 交流输入接触器粘连故障. /// - internal static string 直流母线输出过流故障 { + internal static string 交流输入接触器粘连故障 { get { - return ResourceManager.GetString("直流母线输出过流故障", resourceCulture); + return ResourceManager.GetString("交流输入接触器粘连故障", resourceCulture); } } /// - /// Looks up a localized string similar to 绝缘监测告警. + /// Looks up a localized string similar to 交流输出电压欠压故障. /// - internal static string 绝缘监测告警 { + internal static string 交流输出电压欠压故障 { get { - return ResourceManager.GetString("绝缘监测告警", resourceCulture); + return ResourceManager.GetString("交流输出电压欠压故障", resourceCulture); } } /// - /// Looks up a localized string similar to 绝缘监测故障. + /// Looks up a localized string similar to 交流输出电压过压故障. /// - internal static string 绝缘监测故障 { + internal static string 交流输出电压过压故障 { get { - return ResourceManager.GetString("绝缘监测故障", resourceCulture); + return ResourceManager.GetString("交流输出电压过压故障", resourceCulture); } } /// - /// Looks up a localized string similar to 负极直流输出接触器粘连故障. + /// Looks up a localized string similar to 交流输出电流过流故障. /// - internal static string 负极直流输出接触器粘连故障 { + internal static string 交流输出电流过流故障 { get { - return ResourceManager.GetString("负极直流输出接触器粘连故障", resourceCulture); + return ResourceManager.GetString("交流输出电流过流故障", resourceCulture); } } /// - /// Looks up a localized string similar to 辅助电源故障. + /// Looks up a localized string similar to 交流输出短路故障. /// - internal static string 辅助电源故障 { + internal static string 交流输出短路故障 { get { - return ResourceManager.GetString("辅助电源故障", resourceCulture); + return ResourceManager.GetString("交流输出短路故障", resourceCulture); } } /// - /// Looks up a localized string similar to 逆功率报警. + /// Looks up a localized string similar to 低温关机告警. /// - internal static string 逆功率报警 { + internal static string 低温关机告警 { get { - return ResourceManager.GetString("逆功率报警", resourceCulture); + return ResourceManager.GetString("低温关机告警", resourceCulture); } } /// - /// Looks up a localized string similar to 避雷器故障. + /// Looks up a localized string similar to 充电中车辆控制导引告警. /// - internal static string 避雷器故障 { + internal static string 充电中车辆控制导引告警 { get { - return ResourceManager.GetString("避雷器故障", resourceCulture); + return ResourceManager.GetString("充电中车辆控制导引告警", resourceCulture); } } /// - /// Looks up a localized string similar to 门禁故障. + /// Looks up a localized string similar to 充电中车辆控制导引故障. /// - internal static string 门禁故障 { + internal static string 充电中车辆控制导引故障 { get { - return ResourceManager.GetString("门禁故障", resourceCulture); + return ResourceManager.GetString("充电中车辆控制导引故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电前电池未连接. + /// + internal static string 充电前电池未连接 { + get { + return ResourceManager.GetString("充电前电池未连接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电接口电子锁故障. + /// + internal static string 充电接口电子锁故障 { + get { + return ResourceManager.GetString("充电接口电子锁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电接口电磁锁故障. + /// + internal static string 充电接口电磁锁故障 { + get { + return ResourceManager.GetString("充电接口电磁锁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电接口过温故障. + /// + internal static string 充电接口过温故障 { + get { + return ResourceManager.GetString("充电接口过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电接收计费单元遥测数据超时. + /// + internal static string 充电接收计费单元遥测数据超时 { + get { + return ResourceManager.GetString("充电接收计费单元遥测数据超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电控制器与车辆未连接. + /// + internal static string 充电控制器与车辆未连接 { + get { + return ResourceManager.GetString("充电控制器与车辆未连接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电控制器判断 BMS 其它异常终止. + /// + internal static string 充电控制器判断_BMS_其它异常终止 { + get { + return ResourceManager.GetString("充电控制器判断 BMS 其它异常终止", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电机其它故障. + /// + internal static string 充电机其它故障 { + get { + return ResourceManager.GetString("充电机其它故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电机接收 BMS 使能报文超时. + /// + internal static string 充电机接收_BMS_使能报文超时 { + get { + return ResourceManager.GetString("充电机接收 BMS 使能报文超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电机风扇故障. + /// + internal static string 充电机风扇故障 { + get { + return ResourceManager.GetString("充电机风扇故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪未归位告警. + /// + internal static string 充电枪未归位告警 { + get { + return ResourceManager.GetString("充电枪未归位告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪未归位故障. + /// + internal static string 充电枪未归位故障 { + get { + return ResourceManager.GetString("充电枪未归位故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪过温告警. + /// + internal static string 充电枪过温告警 { + get { + return ResourceManager.GetString("充电枪过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪过温故障. + /// + internal static string 充电枪过温故障 { + get { + return ResourceManager.GetString("充电枪过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪锁止超时. + /// + internal static string 充电枪锁止超时 { + get { + return ResourceManager.GetString("充电枪锁止超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电柜控制器通信故障. + /// + internal static string 充电柜控制器通信故障 { + get { + return ResourceManager.GetString("充电柜控制器通信故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩交流输入接触器据动/误动故障. + /// + internal static string 充电桩交流输入接触器据动_误动故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器据动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩交流输入接触器粘连故障. + /// + internal static string 充电桩交流输入接触器粘连故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩交流输入断路器故障(系统供电断路器). + /// + internal static string 充电桩交流输入断路器故障_系统供电断路器_ { + get { + return ResourceManager.GetString("充电桩交流输入断路器故障(系统供电断路器)", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩输入电压欠压故障. + /// + internal static string 充电桩输入电压欠压故障 { + get { + return ResourceManager.GetString("充电桩输入电压欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩输入电压过压故障. + /// + internal static string 充电桩输入电压过压故障 { + get { + return ResourceManager.GetString("充电桩输入电压过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩过温告警. + /// + internal static string 充电桩过温告警 { + get { + return ResourceManager.GetString("充电桩过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩过温故障. + /// + internal static string 充电桩过温故障 { + get { + return ResourceManager.GetString("充电桩过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩风扇故障. + /// + internal static string 充电桩风扇故障 { + get { + return ResourceManager.GetString("充电桩风扇故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电模块交流输入缺相告警. + /// + internal static string 充电模块交流输入缺相告警 { + get { + return ResourceManager.GetString("充电模块交流输入缺相告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电模块故障. + /// + internal static string 充电模块故障 { + get { + return ResourceManager.GetString("充电模块故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电模块通信告警. + /// + internal static string 充电模块通信告警 { + get { + return ResourceManager.GetString("充电模块通信告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电电流过大一般报警. + /// + internal static string 充电电流过大一般报警 { + get { + return ResourceManager.GetString("充电电流过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电电流过大严重报警. + /// + internal static string 充电电流过大严重报警 { + get { + return ResourceManager.GetString("充电电流过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电电流过大轻微报警. + /// + internal static string 充电电流过大轻微报警 { + get { + return ResourceManager.GetString("充电电流过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电电流过流. + /// + internal static string 充电电流过流 { + get { + return ResourceManager.GetString("充电电流过流", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电终端停止服务. + /// + internal static string 充电终端停止服务 { + get { + return ResourceManager.GetString("充电终端停止服务", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 其他故障. + /// + internal static string 其他故障 { + get { + return ResourceManager.GetString("其他故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 分控阀故障. + /// + internal static string 分控阀故障 { + get { + return ResourceManager.GetString("分控阀故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 动力电池系统内部通讯故障. + /// + internal static string 动力电池系统内部通讯故障 { + get { + return ResourceManager.GetString("动力电池系统内部通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体压差过大一般报警. + /// + internal static string 单体压差过大一般报警 { + get { + return ResourceManager.GetString("单体压差过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体压差过大严重报警. + /// + internal static string 单体压差过大严重报警 { + get { + return ResourceManager.GetString("单体压差过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体压差过大轻微报警. + /// + internal static string 单体压差过大轻微报警 { + get { + return ResourceManager.GetString("单体压差过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体电压过低一般报警. + /// + internal static string 单体电压过低一般报警 { + get { + return ResourceManager.GetString("单体电压过低一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体电压过低严重报警. + /// + internal static string 单体电压过低严重报警 { + get { + return ResourceManager.GetString("单体电压过低严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体电压过低轻微报警. + /// + internal static string 单体电压过低轻微报警 { + get { + return ResourceManager.GetString("单体电压过低轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体电压过高一般报警. + /// + internal static string 单体电压过高一般报警 { + get { + return ResourceManager.GetString("单体电压过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体电压过高严重报警. + /// + internal static string 单体电压过高严重报警 { + get { + return ResourceManager.GetString("单体电压过高严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体电压过高轻微报警. + /// + internal static string 单体电压过高轻微报警 { + get { + return ResourceManager.GetString("单体电压过高轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体蓄电池电压越上限. + /// + internal static string 单体蓄电池电压越上限 { + get { + return ResourceManager.GetString("单体蓄电池电压越上限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体蓄电池电压越下限. + /// + internal static string 单体蓄电池电压越下限 { + get { + return ResourceManager.GetString("单体蓄电池电压越下限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 后台通讯故障. + /// + internal static string 后台通讯故障 { + get { + return ResourceManager.GetString("后台通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 启动充电前直流输出接触器外侧电压大于充电机最大输出电压. + /// + internal static string 启动充电前直流输出接触器外侧电压大于充电机最大输出电压 { + get { + return ResourceManager.GetString("启动充电前直流输出接触器外侧电压大于充电机最大输出电压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 启动充电前直流输出接触器外侧电压小于充电机最小输出电压. + /// + internal static string 启动充电前直流输出接触器外侧电压小于充电机最小输出电压 { + get { + return ResourceManager.GetString("启动充电前直流输出接触器外侧电压小于充电机最小输出电压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 备电欠压. + /// + internal static string 备电欠压 { + get { + return ResourceManager.GetString("备电欠压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 平台时钟与本地偏差过大. + /// + internal static string 平台时钟与本地偏差过大 { + get { + return ResourceManager.GetString("平台时钟与本地偏差过大", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 并联接触器拒动/误动故障. + /// + internal static string 并联接触器拒动_误动故障 { + get { + return ResourceManager.GetString("并联接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 并联接触器粘连故障. + /// + internal static string 并联接触器粘连故障 { + get { + return ResourceManager.GetString("并联接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 应急充电状态. + /// + internal static string 应急充电状态 { + get { + return ResourceManager.GetString("应急充电状态", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 应急充电状态复位. + /// + internal static string 应急充电状态复位 { + get { + return ResourceManager.GetString("应急充电状态复位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 异常掉电. + /// + internal static string 异常掉电 { + get { + return ResourceManager.GetString("异常掉电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 急停按钮动作故障. + /// + internal static string 急停按钮动作故障 { + get { + return ResourceManager.GetString("急停按钮动作故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 急停故障. + /// + internal static string 急停故障 { + get { + return ResourceManager.GetString("急停故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 放电电流过大一般报警. + /// + internal static string 放电电流过大一般报警 { + get { + return ResourceManager.GetString("放电电流过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 放电电流过大严重报警. + /// + internal static string 放电电流过大严重报警 { + get { + return ResourceManager.GetString("放电电流过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 放电电流过大轻微报警. + /// + internal static string 放电电流过大轻微报警 { + get { + return ResourceManager.GetString("放电电流过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 数据合法校验失败. + /// + internal static string 数据合法校验失败 { + get { + return ResourceManager.GetString("数据合法校验失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 整组模块输出模式切换失败. + /// + internal static string 整组模块输出模式切换失败 { + get { + return ResourceManager.GetString("整组模块输出模式切换失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 整组模块通讯故障. + /// + internal static string 整组模块通讯故障 { + get { + return ResourceManager.GetString("整组模块通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 无功率可用. + /// + internal static string 无功率可用 { + get { + return ResourceManager.GetString("无功率可用", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 模块输出反接. + /// + internal static string 模块输出反接 { + get { + return ResourceManager.GetString("模块输出反接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 正/负极柱温度过高一般报警. + /// + internal static string 正_负极柱温度过高一般报警 { + get { + return ResourceManager.GetString("正/负极柱温度过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 正/负极柱温度过高轻微报警. + /// + internal static string 正_负极柱温度过高轻微报警 { + get { + return ResourceManager.GetString("正/负极柱温度过高轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 正极直流输出接触器粘连故障. + /// + internal static string 正极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("正极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 水浸告警. + /// + internal static string 水浸告警 { + get { + return ResourceManager.GetString("水浸告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 泄放回路故障. + /// + internal static string 泄放回路故障 { + get { + return ResourceManager.GetString("泄放回路故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 泄放电路故障. + /// + internal static string 泄放电路故障 { + get { + return ResourceManager.GetString("泄放电路故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 烟感故障. + /// + internal static string 烟感故障 { + get { + return ResourceManager.GetString("烟感故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池最高允许充电电压小于充电机最小输出电压故障. + /// + internal static string 电池最高允许充电电压小于充电机最小输出电压故障 { + get { + return ResourceManager.GetString("电池最高允许充电电压小于充电机最小输出电压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池反接故障. + /// + internal static string 电池反接故障 { + get { + return ResourceManager.GetString("电池反接故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池极性反接故障. + /// + internal static string 电池极性反接故障 { + get { + return ResourceManager.GetString("电池极性反接故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温差过大一般报警. + /// + internal static string 电池温差过大一般报警 { + get { + return ResourceManager.GetString("电池温差过大一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温差过大严重报警. + /// + internal static string 电池温差过大严重报警 { + get { + return ResourceManager.GetString("电池温差过大严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温差过大轻微报警. + /// + internal static string 电池温差过大轻微报警 { + get { + return ResourceManager.GetString("电池温差过大轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温度过低一般报警. + /// + internal static string 电池温度过低一般报警 { + get { + return ResourceManager.GetString("电池温度过低一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温度过低严重报警. + /// + internal static string 电池温度过低严重报警 { + get { + return ResourceManager.GetString("电池温度过低严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温度过低轻微报警. + /// + internal static string 电池温度过低轻微报警 { + get { + return ResourceManager.GetString("电池温度过低轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温度过高一般报警. + /// + internal static string 电池温度过高一般报警 { + get { + return ResourceManager.GetString("电池温度过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温度过高严重报警. + /// + internal static string 电池温度过高严重报警 { + get { + return ResourceManager.GetString("电池温度过高严重报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池温度过高轻微报警. + /// + internal static string 电池温度过高轻微报警 { + get { + return ResourceManager.GetString("电池温度过高轻微报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池热失效故障. + /// + internal static string 电池热失效故障 { + get { + return ResourceManager.GetString("电池热失效故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池组过压. + /// + internal static string 电池组过压 { + get { + return ResourceManager.GetString("电池组过压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电流不匹配. + /// + internal static string 电流不匹配 { + get { + return ResourceManager.GetString("电流不匹配", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电流采样不匹配. + /// + internal static string 电流采样不匹配 { + get { + return ResourceManager.GetString("电流采样不匹配", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电能表数据溢出故障. + /// + internal static string 电能表数据溢出故障 { + get { + return ResourceManager.GetString("电能表数据溢出故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电能表数据溢出预警. + /// + internal static string 电能表数据溢出预警 { + get { + return ResourceManager.GetString("电能表数据溢出预警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电能表时段不匹配. + /// + internal static string 电能表时段不匹配 { + get { + return ResourceManager.GetString("电能表时段不匹配", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电能表时钟异常. + /// + internal static string 电能表时钟异常 { + get { + return ResourceManager.GetString("电能表时钟异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电表电度异常. + /// + internal static string 电表电度异常 { + get { + return ResourceManager.GetString("电表电度异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电表通信异常. + /// + internal static string 电表通信异常 { + get { + return ResourceManager.GetString("电表通信异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电量不能传输. + /// + internal static string 电量不能传输 { + get { + return ResourceManager.GetString("电量不能传输", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线正极输出 接触器拒动/误动故障. + /// + internal static string 直流母线正极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线正极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线正级输出 熔断器故障. + /// + internal static string 直流母线正级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线正级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线负极输出 接触器拒动/误动故障. + /// + internal static string 直流母线负极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线负极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线负级输出 熔断器故障. + /// + internal static string 直流母线负级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线负级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出接触器故障. + /// + internal static string 直流母线输出接触器故障 { + get { + return ResourceManager.GetString("直流母线输出接触器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出欠压故障. + /// + internal static string 直流母线输出欠压故障 { + get { + return ResourceManager.GetString("直流母线输出欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出熔断器故障. + /// + internal static string 直流母线输出熔断器故障 { + get { + return ResourceManager.GetString("直流母线输出熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出过压故障. + /// + internal static string 直流母线输出过压故障 { + get { + return ResourceManager.GetString("直流母线输出过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出过流故障. + /// + internal static string 直流母线输出过流故障 { + get { + return ResourceManager.GetString("直流母线输出过流故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流电能表通讯故障. + /// + internal static string 直流电能表通讯故障 { + get { + return ResourceManager.GetString("直流电能表通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流输出接触器拒动/误动故障. + /// + internal static string 直流输出接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流输出接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流输出接触器粘连故障. + /// + internal static string 直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流输出欠压告警. + /// + internal static string 直流输出欠压告警 { + get { + return ResourceManager.GetString("直流输出欠压告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流输出过压告警. + /// + internal static string 直流输出过压告警 { + get { + return ResourceManager.GetString("直流输出过压告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流输出过流告警. + /// + internal static string 直流输出过流告警 { + get { + return ResourceManager.GetString("直流输出过流告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 硬件故障. + /// + internal static string 硬件故障 { + get { + return ResourceManager.GetString("硬件故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 空闲时直流母线电压异常告警. + /// + internal static string 空闲时直流母线电压异常告警 { + get { + return ResourceManager.GetString("空闲时直流母线电压异常告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 等待绝缘检测失败. + /// + internal static string 等待绝缘检测失败 { + get { + return ResourceManager.GetString("等待绝缘检测失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 终端复位上电. + /// + internal static string 终端复位上电 { + get { + return ResourceManager.GetString("终端复位上电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测前直流输出接触器外侧电压大于等于10V. + /// + internal static string 绝缘监测前直流输出接触器外侧电压大于等于10V { + get { + return ResourceManager.GetString("绝缘监测前直流输出接触器外侧电压大于等于10V", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测告警. + /// + internal static string 绝缘监测告警 { + get { + return ResourceManager.GetString("绝缘监测告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测异常. + /// + internal static string 绝缘监测异常 { + get { + return ResourceManager.GetString("绝缘监测异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测故障. + /// + internal static string 绝缘监测故障 { + get { + return ResourceManager.GetString("绝缘监测故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测模块故障. + /// + internal static string 绝缘监测模块故障 { + get { + return ResourceManager.GetString("绝缘监测模块故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘设备通讯故障. + /// + internal static string 绝缘设备通讯故障 { + get { + return ResourceManager.GetString("绝缘设备通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 维修门开停止充电. + /// + internal static string 维修门开停止充电 { + get { + return ResourceManager.GetString("维修门开停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 读卡器通讯故障. + /// + internal static string 读卡器通讯故障 { + get { + return ResourceManager.GetString("读卡器通讯故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 负极直流输出接触器粘连故障. + /// + internal static string 负极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("负极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆参数异常. + /// + internal static string 车辆参数异常 { + get { + return ResourceManager.GetString("车辆参数异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆终止充电. + /// + internal static string 车辆终止充电 { + get { + return ResourceManager.GetString("车辆终止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 辅助电源故障. + /// + internal static string 辅助电源故障 { + get { + return ResourceManager.GetString("辅助电源故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输入电压欠压. + /// + internal static string 输入电压欠压 { + get { + return ResourceManager.GetString("输入电压欠压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输入电压过压. + /// + internal static string 输入电压过压 { + get { + return ResourceManager.GetString("输入电压过压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输入高压接触器拒动/误动故障. + /// + internal static string 输入高压接触器拒动_误动故障 { + get { + return ResourceManager.GetString("输入高压接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输入高压接触器粘连故障. + /// + internal static string 输入高压接触器粘连故障 { + get { + return ResourceManager.GetString("输入高压接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输入高压断路器故障. + /// + internal static string 输入高压断路器故障 { + get { + return ResourceManager.GetString("输入高压断路器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输出电压欠压故障. + /// + internal static string 输出电压欠压故障 { + get { + return ResourceManager.GetString("输出电压欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输出电压过压故障. + /// + internal static string 输出电压过压故障 { + get { + return ResourceManager.GetString("输出电压过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输出短路异常. + /// + internal static string 输出短路异常 { + get { + return ResourceManager.GetString("输出短路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输出高压接触器拒动/误动故障. + /// + internal static string 输出高压接触器拒动_误动故障 { + get { + return ResourceManager.GetString("输出高压接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输出高压接触器粘连故障. + /// + internal static string 输出高压接触器粘连故障 { + get { + return ResourceManager.GetString("输出高压接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 输出高压熔断器故障. + /// + internal static string 输出高压熔断器故障 { + get { + return ResourceManager.GetString("输出高压熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 达到放电 SOC 终止. + /// + internal static string 达到放电_SOC_终止 { + get { + return ResourceManager.GetString("达到放电 SOC 终止", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 达到放电电压终止. + /// + internal static string 达到放电电压终止 { + get { + return ResourceManager.GetString("达到放电电压终止", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 过充停止充电. + /// + internal static string 过充停止充电 { + get { + return ResourceManager.GetString("过充停止充电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 连接器正/负端温度过高一般报警. + /// + internal static string 连接器正_负端温度过高一般报警 { + get { + return ResourceManager.GetString("连接器正/负端温度过高一般报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 逆功率报警. + /// + internal static string 逆功率报警 { + get { + return ResourceManager.GetString("逆功率报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 避雷器故障. + /// + internal static string 避雷器故障 { + get { + return ResourceManager.GetString("避雷器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 门禁故障. + /// + internal static string 门禁故障 { + get { + return ResourceManager.GetString("门禁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 预充失败告警. + /// + internal static string 预充失败告警 { + get { + return ResourceManager.GetString("预充失败告警", resourceCulture); } } } diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx index e984a74..d9717d9 100644 --- a/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx @@ -1817,24 +1817,15 @@ 充电桩风扇故障 - - - 避雷器故障 绝缘监测告警 - - - 绝缘监测故障 电池极性反接故障 充电中车辆控制导引故障 - - - 充电桩过温故障 充电接口过温故障 @@ -1859,9 +1850,6 @@ 直流母线输出过流故障 - - - 门禁故障 正极直流输出接触器粘连故障 @@ -2011,4 +1999,530 @@ 分控阀故障 + + + + 读卡器通讯故障 + + + 交流输入接触器拒动/误动故障 + + + 主板硬件故障 + + + 充电模块通信告警 + + + 急停故障 + + + 绝缘监测故障 + + + 绝缘设备通讯故障 + + + 输入电压过压 + + + 输入电压欠压 + + + 充电模块交流输入缺相告警 + + + 直流输出过压告警 + + + 直流输出欠压告警 + + + 直流输出过流告警 + + + 输出短路异常 + + + 直流电能表通讯故障 + + + 交流电能表通讯故障 + + + 绝缘监测异常 + + + BMS 通讯超时 + + + 电池反接故障 + + + 充电前电池未连接 + + + 电池组过压 + + + BSM 报文中连接器连接状态异常 + + + 异常掉电 + + + 充电柜控制器通信故障 + + + 1#输出开关断开 + + + 2#输出开关断开 + + + 避雷器故障 + + + 充电枪未归位故障 + + + 充电桩过温故障 + + + 充电中车辆控制导引告警 + + + 交流断路器故障 + + + 充电接口电子锁故障 + + + 充电枪过温故障 + + + 直流输出接触器拒动/误动故障 + + + 直流母线输出熔断器故障 + + + 充电机风扇故障 + + + BSM 报文中充电过流告警 + + + 门禁故障 + + + BMS 辅助电源异常 + + + BST 报文充电连接器故障 + + + 绝缘监测模块故障 + + + BST 报文高压继电器故障 + + + 应急充电状态 + + + 终端复位上电 + + + 等待绝缘检测失败 + + + 预充失败告警 + + + 充电电流过流 + + + 空闲时直流母线电压异常告警 + + + 整组模块通讯故障 + + + BSM 报文中单体动力蓄电池电压过低 + + + BSM 报文中单体动力蓄电池电压过高 + + + BSM 报文中 SOC 过高 + + + 车辆参数异常 + + + BRO 报文(0xAA)接收超时 + + + 充电机接收 BMS 使能报文超时 + + + BST 报文车辆检测点 2 电压检测故障 + + + BST 报文其他故障 + + + BST 报文电流过大(电流超过需求值) + + + BST 报文电压异 + + + 电量不能传输 + + + 电流不匹配 + + + 泄放电路故障 + + + BST 报文输出连接器过温故障 + + + BST 报文 BMS 元件输出连接器过温 + + + 与车辆连接异常 + + + 低温关机告警 + + + 绝缘监测前直流输出接触器外侧电压大于等于10V + + + 启动充电前直流输出接触器外侧电压小于充电机最小输出电压 + + + 启动充电前直流输出接触器外侧电压大于充电机最大输出电压 + + + 启动充电前直流输出接触器外侧电压与通信报文电池电压相差大于±5% + + + BST 报文电池组温度过高 + + + BST 报文绝缘故障 + + + 充电接收计费单元遥测数据超时 + + + 应急充电状态复位 + + + 维修门开停止充电 + + + 充电枪锁止超时 + + + 达到放电电压终止 + + + 达到放电 SOC 终止 + + + BSM 报文中 SOC 过低 + + + BMS 单体测量最高电压大于单体最高允许充电电压过高 + + + BRM 报文接收超时 + + + BRM 报文数据项异常(报文数据长度错误、BMS 通讯协议版本号错误、其它数据错误) + + + BCP 报文接收超时 + + + BCP 报文数据项异常(报文数据长度错误、BMS 通讯协议版本号错误、其它数据错误) + + + BRO 报文(0x00)接收超时 + + + 电池充电需求报文(BCL)超时 + + + 电池充电总状态(BCS)超时 + + + 动力蓄电池状态信息(BSM)超时 + + + 电池最高允许充电电压小于充电机最小输出电压故障 + + + 数据合法校验失败 + + + 充电控制器与计费控制单元“版本校验”未完成 + + + 充电控制器与计费控制单元“下发充电参数”未完成 + + + 充电控制器暂停服务(参考充电服务启动控制) + + + 充电控制器处于“工作”状态 + + + 充电控制器处于“暂停”状态 + + + 充电控制器与车辆未连接 + + + 输入高压断路器故障 + + + 输入高压接触器拒动/误动故障 + + + 输入高压接触器粘连故障 + + + 输出高压接触器拒动/误动故障 + + + 输出高压接触器粘连故障 + + + 输出高压熔断器故障 + + + 并联接触器拒动/误动故障 + + + 并联接触器粘连故障 + + + 充电模块故障 + + + 输入电压故障(输入电压过压/欠压、交流输入缺相、输入电流过流等) + + + 输出电压欠压故障 + + + 输出电压过压故障 + + + 交流输入接触器粘连故障 + + + 交流输入故障(过压、欠压、缺相、过流) + + + 直流输出接触器粘连故障 + + + BMS 正常停止充电 + + + BMS 异常停止充电 + + + 充电控制器判断 BMS 其它异常终止 + + + BSM 报文电池组温度过高 + + + BSM 报文绝缘故障 + + + 直流母线输出接触器故障 + + + SOC 异常 + + + 充电机其它故障 + + + 过充停止充电 + + + 整组模块输出模式切换失败 + + + 交流输出电压过压故障 + + + 交流输出电压欠压故障 + + + 交流输出电流过流故障 + + + 交流输出短路故障 + + + 车辆终止充电 + + + S2 开关动作超时 + + + 电能表时段不匹配 + + + 电能表时钟异常 + + + 后台通讯故障 + + + 充电终端停止服务 + + + 电能表数据溢出预警 + + + 电能表数据溢出故障 + + + 无功率可用 + + + 电流采样不匹配 + + + 平台时钟与本地偏差过大 + + + 单体电压过低轻微报警 + + + 单体电压过低一般报警 + + + 单体电压过低严重报警 + + + 单体电压过高轻微报警 + + + 单体电压过高一般报警 + + + 单体电压过高严重报警 + + + 单体压差过大轻微报警 + + + 单体压差过大一般报警 + + + 单体压差过大严重报警 + + + 电池温度过低轻微报警 + + + 电池温度过低一般报警 + + + 电池温度过低严重报警 + + + 电池温度过高轻微报警 + + + 电池温度过高一般报警 + + + 电池温度过高严重报警 + + + 电池温差过大轻微报警 + + + 电池温差过大一般报警 + + + 电池温差过大严重报警 + + + SOC过低轻微报警 + + + SOC过低一般报警 + + + SOC过低严重报警 + + + 放电电流过大轻微报警 + + + 放电电流过大一般报警 + + + 放电电流过大严重报警 + + + 充电电流过大轻微报警 + + + 充电电流过大一般报警 + + + 充电电流过大严重报警 + + + 连接器正/负端温度过高一般报警 + + + 正/负极柱温度过高轻微报警 + + + 正/负极柱温度过高一般报警 + + + 主正继电器粘连故障 + + + 主正继电器断路故障 + + + 主负继电器粘连故障 + + + 主负继电器断路故障 + + + 硬件故障 + + + 动力电池系统内部通讯故障 + + + 电池热失效故障 + + + 其他故障 + + + \ No newline at end of file