diff --git a/Entity/Api/Resp/SwapOrderBatteryResp.cs b/Entity/Api/Resp/SwapOrderBatteryResp.cs
index 6d88008..8a2781e 100644
--- a/Entity/Api/Resp/SwapOrderBatteryResp.cs
+++ b/Entity/Api/Resp/SwapOrderBatteryResp.cs
@@ -225,5 +225,15 @@ namespace Entity.Api.Resp
/// 标称能量
///
public float? NominalEnergy { get; set; }
+
+ ///
+ /// 放电池标称能量
+ ///
+ public decimal? DownNominalEnergy { get; set; }
+
+ ///
+ /// 取电池标称能量
+ ///
+ public decimal? UpNominalEnergy { get; set; }
}
}
diff --git a/Repository/BaseRepository.cs b/Repository/BaseRepository.cs
index 97d4376..871c4c9 100644
--- a/Repository/BaseRepository.cs
+++ b/Repository/BaseRepository.cs
@@ -911,6 +911,21 @@ public abstract class BaseRepository where T : class, new()
{
return DbBaseClient.Updateable(entity).ExecuteCommandHasChange();
}
+
+ ///
+ /// 批量更新实体数据、忽略null列
+ ///
+ ///
+ ///
+ public bool UpdateIgnoreNullColumns(List entity)
+ {
+ // 使用 (ignoreAllNullColumns: true) 来忽略未赋值的字段
+ return DbBaseClient
+ .Updateable(entity)
+ .IgnoreColumns(ignoreAllNullColumns: true)
+ .ExecuteCommandHasChange();
+ }
+
///
/// 批量更新实体数据
diff --git a/Service/MyTask/SwapOrderSettleAnAccountTask.cs b/Service/MyTask/SwapOrderSettleAnAccountTask.cs
index 78493bf..351b285 100644
--- a/Service/MyTask/SwapOrderSettleAnAccountTask.cs
+++ b/Service/MyTask/SwapOrderSettleAnAccountTask.cs
@@ -43,38 +43,38 @@ public class SwapOrderSettleAnAccountTask : ITask
public void Handle()
{
- Log.Info("Begin SwapOrderSettleAnAccountTask");
-
+ Log.Info("Begin SwapOrderSettleAnAccountTask");
+
List listSwapOrderBattery = SwapOrderBatteryRepository.QueryListByClause(i =>
i.DownNominalEnergy >0 &&
i.UpNominalEnergy >0 &&
i.UpBatterySoc >0 &&
i.DownBatterySoc >0 &&
i.SettleAnAccountFlag == null);
-
+
if (listSwapOrderBattery.Count > 0)
{
List list = listSwapOrderBattery
.Where(resp => !string.IsNullOrEmpty(resp.SwapOrderSn))
.Select(resp => resp.SwapOrderSn)
.ToList();
-
+
List swapOrderList = SwapOrderRepository
.QueryListByClause(swapOrder => list.Contains(swapOrder.Sn));
-
-
+
+
if (swapOrderList.Count <= 0)
{
return;
}
-
+
// 电费单价
decimal electricityTotalFee = StaticStationInfo.ElectricityTotalFee;
// 换电服务费用
decimal serviceTotalFee = StaticStationInfo.ServiceTotalFee;
// 附加费用
decimal appendTotalFee = StaticStationInfo.AppendTotalFee;
-
+
List updateSwapOrderBatteryList = new List();
List updateSwapOrderList = new List();
foreach (var swapOrderBattery in listSwapOrderBattery)
@@ -83,10 +83,10 @@ public class SwapOrderSettleAnAccountTask : ITask
decimal? upNominalEnergy = swapOrderBattery.UpBatterySoc * swapOrderBattery.UpNominalEnergy;
// 换下的亏电包soc*亏电包的电池标量
decimal? downNominalEnergy = swapOrderBattery.DownBatterySoc * swapOrderBattery.DownNominalEnergy;
-
+
// 电量费用
decimal? electricCharge = (upNominalEnergy - downNominalEnergy) * electricityTotalFee;
-
+
if (upNominalEnergy != null && downNominalEnergy != null && electricCharge != null)
{
var matchingOrder = swapOrderList.FirstOrDefault(order => order.Sn == swapOrderBattery.SwapOrderSn);
@@ -101,15 +101,14 @@ public class SwapOrderSettleAnAccountTask : ITask
swapOrderBattery.SettleAnAccountFlag = 1;
updateSwapOrderBatteryList.Add(swapOrderBattery);
updateSwapOrderList.Add(matchingOrder);
-
}
}
}
-
+
if (updateSwapOrderList.Count > 0 && updateSwapOrderBatteryList.Count>0)
{
- SwapOrderRepository.Update(updateSwapOrderList);
- SwapOrderBatteryRepository.Update(updateSwapOrderBatteryList);
+ SwapOrderRepository.UpdateIgnoreNullColumns(updateSwapOrderList);
+ SwapOrderBatteryRepository.UpdateIgnoreNullColumns(updateSwapOrderBatteryList);
}
}
diff --git a/WebStarter/Controllers/SwapOrderController.cs b/WebStarter/Controllers/SwapOrderController.cs
index 9f0ad34..9bb109c 100644
--- a/WebStarter/Controllers/SwapOrderController.cs
+++ b/WebStarter/Controllers/SwapOrderController.cs
@@ -65,33 +65,6 @@ public class SwapOrderController : ControllerBase
PackageSwapOrder(swapOrderResp);
List? list = swapOrderResp.Rows;
-
- if (list!=null)
- {
- foreach (var swapOrder in list)
- {
- if (swapOrder.ServiceTotalFee.HasValue && swapOrder.ServiceTotalFee.Value != 0)
- {
- swapOrder.ServiceTotalFee = swapOrder.ServiceTotalFee / 100;
- }
-
- if (swapOrder.ElectricityTotalFee.HasValue && swapOrder.ElectricityTotalFee.Value != 0)
- {
- swapOrder.ElectricityTotalFee = swapOrder.ElectricityTotalFee / 100;
- }
-
- if (swapOrder.AppendTotalFee.HasValue && swapOrder.AppendTotalFee.Value != 0)
- {
- swapOrder.AppendTotalFee = swapOrder.AppendTotalFee / 100;
- }
-
- if (swapOrder.TotalFee.HasValue && swapOrder.TotalFee.Value != 0)
- {
- swapOrder.TotalFee = swapOrder.TotalFee / 100;
- }
- }
- }
-
List vehicleNoList = list?.Select(resp => resp.VehicleNo).ToList() ?? new List();
// 查询车辆的部门
@@ -130,8 +103,13 @@ public class SwapOrderController : ControllerBase
{
swapOrder.DownBatteryElectricQuantity = ((double)swapOrder.DownBatterySoc * 3.75).ToString();
swapOrder.UpBatteryElectricQuantity = ((double)swapOrder.UpBatterySoc * 3.75).ToString();
- double ElectricQuantity = ((float)(swapOrder.UpBatterySoc - swapOrder.DownBatterySoc)) * 3.75;
- swapOrder.ElectricQuantity = ElectricQuantity.ToString();
+
+ if (swapOrderBatteryResp.DownNominalEnergy!=null&&swapOrderBatteryResp.UpNominalEnergy!=null)
+ {
+ swapOrder.ElectricQuantity = (swapOrderBatteryResp.UpNominalEnergy -
+ swapOrderBatteryResp.DownNominalEnergy).ToString();
+ }
+
}
catch (Exception e)
{
@@ -168,33 +146,7 @@ public class SwapOrderController : ControllerBase
Log.Info($"查询换电订单 SwapOrderController end QueryPage swapOrderService.QuerySwapOrder req={req}");
PackageSwapOrder(swapOrderResp);
- List? list = swapOrderResp.Rows;
-
- if (list!=null)
- {
- foreach (var swapOrder in list)
- {
- if (swapOrder.ServiceTotalFee.HasValue && swapOrder.ServiceTotalFee.Value != 0)
- {
- swapOrder.ServiceTotalFee = swapOrder.ServiceTotalFee / 100;
- }
-
- if (swapOrder.ElectricityTotalFee.HasValue && swapOrder.ElectricityTotalFee.Value != 0)
- {
- swapOrder.ElectricityTotalFee = swapOrder.ElectricityTotalFee / 100;
- }
-
- if (swapOrder.AppendTotalFee.HasValue && swapOrder.AppendTotalFee.Value != 0)
- {
- swapOrder.AppendTotalFee = swapOrder.AppendTotalFee / 100;
- }
-
- if (swapOrder.TotalFee.HasValue && swapOrder.TotalFee.Value != 0)
- {
- swapOrder.TotalFee = swapOrder.TotalFee / 100;
- }
- }
- }
+
return Result>.Success(swapOrderResp);
}
diff --git a/WebStarter/Resources/Controllers.System.SysMenuController.en.Designer.cs b/WebStarter/Resources/Controllers.System.SysMenuController.en.Designer.cs
index 215b6e5..354a7df 100644
--- a/WebStarter/Resources/Controllers.System.SysMenuController.en.Designer.cs
+++ b/WebStarter/Resources/Controllers.System.SysMenuController.en.Designer.cs
@@ -60,25 +60,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to AD Domain Configuration.
- ///
- internal static string AD域配置 {
- get {
- return ResourceManager.GetString("AD域配置", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to AGV.
- ///
- internal static string agv {
- get {
- return ResourceManager.GetString("agv", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RFID Reading and Writing.
+ /// Looks up a localized string similar to RFIDReadAndWrite.
///
internal static string RFID读写 {
get {
@@ -87,70 +69,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to SqlSugar.
- ///
- internal static string SqlSugar {
- get {
- return ResourceManager.GetString("SqlSugar", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Third-Party Account.
- ///
- internal static string 三方账号 {
- get {
- return ResourceManager.GetString("三方账号", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Personal Center.
- ///
- internal static string 个人中心 {
- get {
- return ResourceManager.GetString("个人中心", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to AC Energy Monitoring.
- ///
- internal static string 交流电能监控 {
- get {
- return ResourceManager.GetString("交流电能监控", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Code Generation.
- ///
- internal static string 代码生成 {
- get {
- return ResourceManager.GetString("代码生成", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Task Scheduling.
- ///
- internal static string 任务调度 {
- get {
- return ResourceManager.GetString("任务调度", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Sensors.
- ///
- internal static string 传感器 {
- get {
- return ResourceManager.GetString("传感器", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Charging Cabin Information.
+ /// Looks up a localized string similar to ChargingBinInformation.
///
internal static string 充电仓信息 {
get {
@@ -159,7 +78,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Charging Data Monitoring Dashboard.
+ /// Looks up a localized string similar to ChargingDataMonitoringLargeScreen.
///
internal static string 充电数据监控大屏 {
get {
@@ -168,7 +87,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Charger Information.
+ /// Looks up a localized string similar to ChargerInformation.
///
internal static string 充电机信息 {
get {
@@ -177,7 +96,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Charging Management.
+ /// Looks up a localized string similar to ChargeManagement.
///
internal static string 充电管理 {
get {
@@ -186,52 +105,16 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Frontend Tutorial.
- ///
- internal static string 前端教程 {
- get {
- return ResourceManager.GetString("前端教程", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Dynamic Interface.
- ///
- internal static string 动态接口 {
- get {
- return ResourceManager.GetString("动态接口", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Dynamic Plugins.
- ///
- internal static string 动态插件 {
- get {
- return ResourceManager.GetString("动态插件", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Parameter Configuration.
- ///
- internal static string 参数配置 {
- get {
- return ResourceManager.GetString("参数配置", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Backend Tutorial.
+ /// Looks up a localized string similar to ChargingStatistics.
///
- internal static string 后台教程 {
+ internal static string 充电量统计信息 {
get {
- return ResourceManager.GetString("后台教程", resourceCulture);
+ return ResourceManager.GetString("充电量统计信息", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Basic Settings.
+ /// Looks up a localized string similar to BasicSetup.
///
internal static string 基础设置 {
get {
@@ -240,7 +123,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Basic Configuration.
+ /// Looks up a localized string similar to BasicConfiguration.
///
internal static string 基础配置 {
get {
@@ -248,24 +131,6 @@ namespace WebStarter.Resources {
}
}
- ///
- /// Looks up a localized string similar to Dictionary Management.
- ///
- internal static string 字典管理 {
- get {
- return ResourceManager.GetString("字典管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Entity Table Management.
- ///
- internal static string 实体表管理 {
- get {
- return ResourceManager.GetString("实体表管理", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Workbench.
///
@@ -276,7 +141,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Difference Log.
+ /// Looks up a localized string similar to VarianceLog.
///
internal static string 差异日志 {
get {
@@ -285,52 +150,16 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Help Documentation.
- ///
- internal static string 帮助文档 {
- get {
- return ResourceManager.GetString("帮助文档", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Platform Management.
+ /// Looks up a localized string similar to AbnormalCause.
///
- internal static string 平台管理 {
+ internal static string 异常原因 {
get {
- return ResourceManager.GetString("平台管理", resourceCulture);
+ return ResourceManager.GetString("异常原因", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Database Table Management.
- ///
- internal static string 库表管理 {
- get {
- return ResourceManager.GetString("库表管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Development Tools.
- ///
- internal static string 开发工具 {
- get {
- return ResourceManager.GetString("开发工具", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open Interface.
- ///
- internal static string 开放接口 {
- get {
- return ResourceManager.GetString("开放接口", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Exception Log.
+ /// Looks up a localized string similar to ExceptionLog.
///
internal static string 异常日志 {
get {
@@ -339,43 +168,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Manual Charging.
- ///
- internal static string 手动充电 {
- get {
- return ResourceManager.GetString("手动充电", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Manual Battery Swap.
- ///
- internal static string 手动换电 {
- get {
- return ResourceManager.GetString("手动换电", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Print Template.
- ///
- internal static string 打印模板 {
- get {
- return ResourceManager.GetString("打印模板", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Alarm Threshold Information.
- ///
- internal static string 报警阀值信息 {
- get {
- return ResourceManager.GetString("报警阀值信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Battery Swap Data Monitoring Dashboard.
+ /// Looks up a localized string similar to LargeScreenForPowerDataMonitoring.
///
internal static string 换电数据监控大屏 {
get {
@@ -384,7 +177,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Battery Swap Status Order Information.
+ /// Looks up a localized string similar to PowerChangeStatusOrderInformation.
///
internal static string 换电状态订单信息 {
get {
@@ -393,34 +186,16 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Time-Sharing Power Consumption Statistics of Battery Swap Station.
- ///
- internal static string 换电站分时用电统计信息 {
- get {
- return ResourceManager.GetString("换电站分时用电统计信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Daily Operation Statistics Table of Battery Swap Station.
- ///
- internal static string 换电站日运行统计结果表 {
- get {
- return ResourceManager.GetString("换电站日运行统计结果表", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Daily Power Consumption Statistics of Battery Swap Station.
+ /// Looks up a localized string similar to DailyOperationStatisticsOfPowerStation.
///
- internal static string 换电站每天用电统计信息 {
+ internal static string 换电站日运行统计表 {
get {
- return ResourceManager.GetString("换电站每天用电统计信息", resourceCulture);
+ return ResourceManager.GetString("换电站日运行统计表", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Battery Charging Order of Battery Swap Station.
+ /// Looks up a localized string similar to ChangeStationBatteryChargingOrder.
///
internal static string 换电站电池充电订单 {
get {
@@ -429,16 +204,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Battery Real-Time Information of Battery Swap Station.
- ///
- internal static string 换电站电池单体实时信息 {
- get {
- return ResourceManager.GetString("换电站电池单体实时信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Battery Swap Management.
+ /// Looks up a localized string similar to PowerChangeManagement.
///
internal static string 换电管理 {
get {
@@ -447,7 +213,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Battery Swap Order Information.
+ /// Looks up a localized string similar to PowerChangeOrderInformation.
///
internal static string 换电订单信息 {
get {
@@ -456,25 +222,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Interface Classification.
- ///
- internal static string 接口分类 {
- get {
- return ResourceManager.GetString("接口分类", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Interface Definition.
- ///
- internal static string 接口定义 {
- get {
- return ResourceManager.GetString("接口定义", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Operation Log.
+ /// Looks up a localized string similar to OperationLog.
///
internal static string 操作日志 {
get {
@@ -483,7 +231,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Fault Log.
+ /// Looks up a localized string similar to FailureLog.
///
internal static string 故障日志 {
get {
@@ -492,25 +240,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Database Management.
- ///
- internal static string 数据库管理 {
- get {
- return ResourceManager.GetString("数据库管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to File Management.
- ///
- internal static string 文件管理 {
- get {
- return ResourceManager.GetString("文件管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Log Management.
+ /// Looks up a localized string similar to LogManagement.
///
internal static string 日志管理 {
get {
@@ -519,34 +249,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Organization Management.
- ///
- internal static string 机构管理 {
- get {
- return ResourceManager.GetString("机构管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Water Cooling Information Monitoring.
- ///
- internal static string 水冷信息监控 {
- get {
- return ResourceManager.GetString("水冷信息监控", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Fire Monitoring.
- ///
- internal static string 消防监控 {
- get {
- return ResourceManager.GetString("消防监控", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Fire Transfer.
+ /// Looks up a localized string similar to FireTransfer.
///
internal static string 消防移仓 {
get {
@@ -555,25 +258,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Temperature and Humidity Sensor.
- ///
- internal static string 温湿度传感器 {
- get {
- return ResourceManager.GetString("温湿度传感器", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Lighting Control.
- ///
- internal static string 灯光控制 {
- get {
- return ResourceManager.GetString("灯光控制", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Thermal Management.
+ /// Looks up a localized string similar to ThermalManagement.
///
internal static string 热管理 {
get {
@@ -582,106 +267,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Battery Information.
- ///
- internal static string 电池信息 {
- get {
- return ResourceManager.GetString("电池信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Battery Maintenance Log.
- ///
- internal static string 电池维护日志 {
- get {
- return ResourceManager.GetString("电池维护日志", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Energy Monitoring.
- ///
- internal static string 电能监控 {
- get {
- return ResourceManager.GetString("电能监控", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Energy Meter Minute Consumption Value.
- ///
- internal static string 电能表分钟能耗值 {
- get {
- return ResourceManager.GetString("电能表分钟能耗值", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Energy Meter Hourly Consumption Value.
- ///
- internal static string 电能表小时能耗值 {
- get {
- return ResourceManager.GetString("电能表小时能耗值", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Energy Meter Daily Consumption Value.
- ///
- internal static string 电能表每天能耗值 {
- get {
- return ResourceManager.GetString("电能表每天能耗值", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Energy Meter Cumulative Value Information.
- ///
- internal static string 电能表累计值信息 {
- get {
- return ResourceManager.GetString("电能表累计值信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to DC Energy Monitoring.
- ///
- internal static string 直流电能监控 {
- get {
- return ResourceManager.GetString("直流电能监控", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Tenant Management.
- ///
- internal static string 租户管理 {
- get {
- return ResourceManager.GetString("租户管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warehouse Transfer Information.
- ///
- internal static string 移仓信息 {
- get {
- return ResourceManager.GetString("移仓信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Internal Message.
- ///
- internal static string 站内信 {
- get {
- return ResourceManager.GetString("站内信", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Site Basic Information.
+ /// Looks up a localized string similar to BasicSiteInformation.
///
internal static string 站点基础信息 {
get {
@@ -690,34 +276,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to System Interface.
- ///
- internal static string 系统接口 {
- get {
- return ResourceManager.GetString("系统接口", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to System Monitoring.
- ///
- internal static string 系统监控 {
- get {
- return ResourceManager.GetString("系统监控", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to System Management.
- ///
- internal static string 系统管理 {
- get {
- return ResourceManager.GetString("系统管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Statistical Analysis.
+ /// Looks up a localized string similar to StatisticalAnalysis.
///
internal static string 统计分析 {
get {
@@ -726,88 +285,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Cache Management.
- ///
- internal static string 缓存管理 {
- get {
- return ResourceManager.GetString("缓存管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Position Management.
- ///
- internal static string 职位管理 {
- get {
- return ResourceManager.GetString("职位管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Automatic Charging.
- ///
- internal static string 自动充电 {
- get {
- return ResourceManager.GetString("自动充电", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Menu Management.
- ///
- internal static string 菜单管理 {
- get {
- return ResourceManager.GetString("菜单管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Administrative Region.
- ///
- internal static string 行政区域 {
- get {
- return ResourceManager.GetString("行政区域", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Form Design.
- ///
- internal static string 表单设计 {
- get {
- return ResourceManager.GetString("表单设计", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Role Management.
- ///
- internal static string 角色管理 {
- get {
- return ResourceManager.GetString("角色管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Device Information.
- ///
- internal static string 设备信息 {
- get {
- return ResourceManager.GetString("设备信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Device Model Basic Information.
- ///
- internal static string 设备型号基础信息 {
- get {
- return ResourceManager.GetString("设备型号基础信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Processed Device Fault Log.
+ /// Looks up a localized string similar to TheDeviceHasProcessedFaultLogsProcedure.
///
internal static string 设备已处理故障日志 {
get {
@@ -816,25 +294,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Device Fault Basic Information.
- ///
- internal static string 设备故障基础信息 {
- get {
- return ResourceManager.GetString("设备故障基础信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Device Fault Level Information.
- ///
- internal static string 设备故障等级信息 {
- get {
- return ResourceManager.GetString("设备故障等级信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Unprocessed Device Fault Log.
+ /// Looks up a localized string similar to TheDeviceHasNotProcessedFaultLogs.
///
internal static string 设备未处理故障日志 {
get {
@@ -843,25 +303,7 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Device Code Information.
- ///
- internal static string 设备编码信息 {
- get {
- return ResourceManager.GetString("设备编码信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Device Communication Status Start Log Information.
- ///
- internal static string 设备通讯状态开始日志信息 {
- get {
- return ResourceManager.GetString("设备通讯状态开始日志信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Access Log.
+ /// Looks up a localized string similar to AccessLog.
///
internal static string 访问日志 {
get {
@@ -870,79 +312,16 @@ namespace WebStarter.Resources {
}
///
- /// Looks up a localized string similar to Account Management.
- ///
- internal static string 账号管理 {
- get {
- return ResourceManager.GetString("账号管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Rate Management.
- ///
- internal static string 费率管理 {
- get {
- return ResourceManager.GetString("费率管理", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Super API.
- ///
- internal static string 超级API {
- get {
- return ResourceManager.GetString("超级API", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Vehicle Information.
- ///
- internal static string 车辆信息 {
- get {
- return ResourceManager.GetString("车辆信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Vehicle Identification Code Log.
- ///
- internal static string 车辆识别码日志 {
- get {
- return ResourceManager.GetString("车辆识别码日志", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Notifications.
- ///
- internal static string 通知公告 {
- get {
- return ResourceManager.GetString("通知公告", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Communication Status End Log Information.
- ///
- internal static string 通讯状态结束日志信息 {
- get {
- return ResourceManager.GetString("通讯状态结束日志信息", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Fan Control.
+ /// Looks up a localized string similar to VehicleManagement.
///
- internal static string 风机控制 {
+ internal static string 车辆管理 {
get {
- return ResourceManager.GetString("风机控制", resourceCulture);
+ return ResourceManager.GetString("车辆管理", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Home.
+ /// Looks up a localized string similar to HomePage.
///
internal static string 首页 {
get {
diff --git a/WebStarter/Resources/Controllers.System.SysMenuController.en.resx b/WebStarter/Resources/Controllers.System.SysMenuController.en.resx
index 7dd55da..ff6d5b0 100644
--- a/WebStarter/Resources/Controllers.System.SysMenuController.en.resx
+++ b/WebStarter/Resources/Controllers.System.SysMenuController.en.resx
@@ -18,305 +18,97 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System Management
-
-
- Platform Management
-
-
- Log Management
-
-
- Development Tools
-
-
- Super API
-
-
- Help Documentation
-
-
- Basic Configuration
-
+
+
+ Workbench
+
- Battery Swap Management
-
-
- Charging Management
-
+ PowerChangeManagement
+
- Fault Log
-
+ FailureLog
+
- Statistical Analysis
-
+ StatisticalAnalysis
+
- Thermal Management
-
-
- Energy Monitoring
-
-
- Fire Monitoring
-
-
-
- Vehicle Information
-
-
- Rate Management
-
-
- AGV
-
-
- Charger Information
-
-
- Workbench
-
-
- Internal Message
-
-
- Account Management
-
-
- Role Management
-
-
- Organization Management
-
-
- Position Management
-
-
- Personal Center
-
-
- Notifications
-
-
- Third-Party Account
-
-
- AD Domain Configuration
-
-
- Tenant Management
-
-
- Menu Management
-
-
- Parameter Configuration
-
-
- Dictionary Management
-
-
- Task Scheduling
-
-
- System Monitoring
-
-
- Cache Management
-
-
- Administrative Region
-
-
- File Management
-
-
- Print Template
-
-
- Dynamic Plugins
-
-
- Open Interface
-
-
- Access Log
-
-
- Operation Log
-
-
- Exception Log
-
-
- Difference Log
-
-
- Database Table Management
-
-
- Code Generation
-
-
- Form Design
-
-
- System Interface
-
-
- Dynamic Interface
-
-
- Database Management
-
-
- Entity Table Management
-
-
- Interface Classification
-
-
- Interface Definition
-
-
- Backend Tutorial
-
-
- Frontend Tutorial
-
-
- SqlSugar
-
-
- Sensors
-
-
- Basic Settings
-
+ ThermalManagement
+
+
+ HomePage
+
+
+ LargeScreenForPowerDataMonitoring
+
+
+ ChargingDataMonitoringLargeScreen
+
- Site Basic Information
-
-
- Charging Cabin Information
-
-
- Battery Information
-
-
- Device Information
-
-
- Device Model Basic Information
-
-
- Device Fault Level Information
-
-
- Device Fault Basic Information
-
-
- Alarm Threshold Information
-
-
- Device Code Information
-
-
- RFID Reading and Writing
-
-
- Manual Battery Swap
-
-
- Battery Swap Order Information
-
+ BasicSiteInformation
+
+
+ VehicleManagement
+
+
+ AbnormalCause
+
+
+ ChargerInformation
+
- Battery Swap Status Order Information
-
-
- Warehouse Transfer Information
-
-
- Vehicle Identification Code Log
-
-
- Daily Operation Statistics Table of Battery Swap Station
-
-
- Manual Charging
-
-
- Automatic Charging
-
+ PowerChangeStatusOrderInformation
+
+
+ DailyOperationStatisticsOfPowerStation
+
- Battery Charging Order of Battery Swap Station
-
-
- Battery Real-Time Information of Battery Swap Station
-
-
- Battery Maintenance Log
-
+ ChangeStationBatteryChargingOrder
+
- Unprocessed Device Fault Log
-
+ TheDeviceHasNotProcessedFaultLogs
+
- Processed Device Fault Log
-
-
- Device Communication Status Start Log Information
-
-
- Communication Status End Log Information
-
-
- Energy Meter Cumulative Value Information
-
-
- Energy Meter Minute Consumption Value
-
-
- Energy Meter Hourly Consumption Value
-
-
- Energy Meter Daily Consumption Value
-
-
- Time-Sharing Power Consumption Statistics of Battery Swap Station
-
-
- Daily Power Consumption Statistics of Battery Swap Station
-
-
- Battery Swap Data Monitoring Dashboard
-
-
- Charging Data Monitoring Dashboard
-
-
- Lighting Control
-
-
- Water Cooling Information Monitoring
-
-
- Fan Control
-
-
- Temperature and Humidity Sensor
-
+ TheDeviceHasProcessedFaultLogsProcedure
+
+
+ ChargingStatistics
+
- Fire Transfer
-
-
- AC Energy Monitoring
-
-
- DC Energy Monitoring
-
-
- Home
-
+ FireTransfer
+
+
+ BasicConfiguration
+
+
+ ChargeManagement
+
+
+ LogManagement
+
+
+ BasicSetup
+
+
+ ChargingBinInformation
+
+
+ RFIDReadAndWrite
+
+
+ PowerChangeOrderInformation
+
+
+ AccessLog
+
+
+ OperationLog
+
+
+ ExceptionLog
+
+
+ VarianceLog
+
\ No newline at end of file
diff --git a/WebStarter/Resources/Controllers.System.SysMenuController.id.Designer.cs b/WebStarter/Resources/Controllers.System.SysMenuController.id.Designer.cs
new file mode 100644
index 0000000..41ff061
--- /dev/null
+++ b/WebStarter/Resources/Controllers.System.SysMenuController.id.Designer.cs
@@ -0,0 +1,332 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace WebStarter.Resources {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Controllers_System_SysMenuController_id {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Controllers_System_SysMenuController_id() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.System.SysMenuController.id", typeof(Controllers_System_SysMenuController_id).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to pembacaan dan penulisan RFID.
+ ///
+ internal static string RFID读写 {
+ get {
+ return ResourceManager.GetString("RFID读写", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to informasi tempat pengisian.
+ ///
+ internal static string 充电仓信息 {
+ get {
+ return ResourceManager.GetString("充电仓信息", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Layar monitor data pengisian daya.
+ ///
+ internal static string 充电数据监控大屏 {
+ get {
+ return ResourceManager.GetString("充电数据监控大屏", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Informasi pengisian daya.
+ ///
+ internal static string 充电机信息 {
+ get {
+ return ResourceManager.GetString("充电机信息", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to manajemen pos pengisian.
+ ///
+ internal static string 充电管理 {
+ get {
+ return ResourceManager.GetString("充电管理", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Statistik daya pengisian.
+ ///
+ internal static string 充电量统计信息 {
+ get {
+ return ResourceManager.GetString("充电量统计信息", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to setelan dasar.
+ ///
+ internal static string 基础设置 {
+ get {
+ return ResourceManager.GetString("基础设置", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to manajemen dasar.
+ ///
+ internal static string 基础配置 {
+ get {
+ return ResourceManager.GetString("基础配置", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Tempat Kerja.
+ ///
+ internal static string 工作台 {
+ get {
+ return ResourceManager.GetString("工作台", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to catatan perbedaan daya.
+ ///
+ internal static string 差异日志 {
+ get {
+ return ResourceManager.GetString("差异日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Alasan pengecualian.
+ ///
+ internal static string 异常原因 {
+ get {
+ return ResourceManager.GetString("异常原因", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to catatan anomali.
+ ///
+ internal static string 异常日志 {
+ get {
+ return ResourceManager.GetString("异常日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Layar monitor data pertukaran baterai.
+ ///
+ internal static string 换电数据监控大屏 {
+ get {
+ return ResourceManager.GetString("换电数据监控大屏", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Informasi pesanan status pertukaran baterai.
+ ///
+ internal static string 换电状态订单信息 {
+ get {
+ return ResourceManager.GetString("换电状态订单信息", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Tabel statistik operasional harian stasiun penggantian baterai.
+ ///
+ internal static string 换电站日运行统计表 {
+ get {
+ return ResourceManager.GetString("换电站日运行统计表", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pesanan pengisian baterai pusat penukaran baterai.
+ ///
+ internal static string 换电站电池充电订单 {
+ get {
+ return ResourceManager.GetString("换电站电池充电订单", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Manajemen pertukaran baterai.
+ ///
+ internal static string 换电管理 {
+ get {
+ return ResourceManager.GetString("换电管理", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to catatan pengantian baterai.
+ ///
+ internal static string 换电订单信息 {
+ get {
+ return ResourceManager.GetString("换电订单信息", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to catatan operasi.
+ ///
+ internal static string 操作日志 {
+ get {
+ return ResourceManager.GetString("操作日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Catatan kerusakan.
+ ///
+ internal static string 故障日志 {
+ get {
+ return ResourceManager.GetString("故障日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Log manajemen.
+ ///
+ internal static string 日志管理 {
+ get {
+ return ResourceManager.GetString("日志管理", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pemindahan gudang pemadam kebakaran.
+ ///
+ internal static string 消防移仓 {
+ get {
+ return ResourceManager.GetString("消防移仓", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Manajemen suhu panas.
+ ///
+ internal static string 热管理 {
+ get {
+ return ResourceManager.GetString("热管理", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Informasi dasar lokasi.
+ ///
+ internal static string 站点基础信息 {
+ get {
+ return ResourceManager.GetString("站点基础信息", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Analisis statistik.
+ ///
+ internal static string 统计分析 {
+ get {
+ return ResourceManager.GetString("统计分析", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Tabel log kerusakan perangkat yang telah diproses.
+ ///
+ internal static string 设备已处理故障日志 {
+ get {
+ return ResourceManager.GetString("设备已处理故障日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Perangkat belum memproses log kesalahan.
+ ///
+ internal static string 设备未处理故障日志 {
+ get {
+ return ResourceManager.GetString("设备未处理故障日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to catatan akses.
+ ///
+ internal static string 访问日志 {
+ get {
+ return ResourceManager.GetString("访问日志", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Manajemen kendaraan.
+ ///
+ internal static string 车辆管理 {
+ get {
+ return ResourceManager.GetString("车辆管理", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Beranda.
+ ///
+ internal static string 首页 {
+ get {
+ return ResourceManager.GetString("首页", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/WebStarter/Resources/Controllers.System.SysMenuController.id.resx b/WebStarter/Resources/Controllers.System.SysMenuController.id.resx
new file mode 100644
index 0000000..745a325
--- /dev/null
+++ b/WebStarter/Resources/Controllers.System.SysMenuController.id.resx
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 1.3
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
+ PublicKeyToken=b77a5c561934e089
+
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
+ PublicKeyToken=b77a5c561934e089
+
+
+
+
+ Tempat Kerja
+
+
+ Manajemen pertukaran baterai
+
+
+ Catatan kerusakan
+
+
+ Analisis statistik
+
+
+ Manajemen suhu panas
+
+
+ Beranda
+
+
+ Layar monitor data pertukaran baterai
+
+
+ Layar monitor data pengisian daya
+
+
+ Informasi dasar lokasi
+
+
+ Manajemen kendaraan
+
+
+ Alasan pengecualian
+
+
+ Informasi pengisian daya
+
+
+ Informasi pesanan status pertukaran baterai
+
+
+ Tabel statistik operasional harian stasiun penggantian baterai
+
+
+ Pesanan pengisian baterai pusat penukaran baterai
+
+
+ Perangkat belum memproses log kesalahan
+
+
+ Tabel log kerusakan perangkat yang telah diproses
+
+
+ Statistik daya pengisian
+
+
+ Pemindahan gudang pemadam kebakaran
+
+
+
+ manajemen dasar
+
+
+ manajemen pos pengisian
+
+
+ Log manajemen
+
+
+ setelan dasar
+
+
+ informasi tempat pengisian
+
+
+ pembacaan dan penulisan RFID
+
+
+ catatan pengantian baterai
+
+
+ catatan akses
+
+
+ catatan operasi
+
+
+ catatan anomali
+
+
+ catatan perbedaan daya
+
+
\ No newline at end of file
diff --git a/WebStarter/Resources/Controllers.System.SysMenuController.zh.Designer.cs b/WebStarter/Resources/Controllers.System.SysMenuController.zh.Designer.cs
new file mode 100644
index 0000000..f2daaff
--- /dev/null
+++ b/WebStarter/Resources/Controllers.System.SysMenuController.zh.Designer.cs
@@ -0,0 +1,332 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace WebStarter.Resources {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Controllers_System_SysMenuController_zh {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Controllers_System_SysMenuController_zh() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.System.SysMenuController.zh", typeof(Controllers_System_SysMenuController_zh).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RFID读写.
+ ///
+ internal static string RFID读写 {
+ get {
+ return ResourceManager.GetString("RFID读写", 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);
+ }
+ }
+ }
+}
diff --git a/WebStarter/Resources/Controllers.System.SysMenuController.zh.resx b/WebStarter/Resources/Controllers.System.SysMenuController.zh.resx
new file mode 100644
index 0000000..5788a64
--- /dev/null
+++ b/WebStarter/Resources/Controllers.System.SysMenuController.zh.resx
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 1.3
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ 工作台
+
+
+ 换电管理
+
+
+ 故障日志
+
+
+ 统计分析
+
+
+ 热管理
+
+
+ 首页
+
+
+ 换电数据监控大屏
+
+
+ 充电数据监控大屏
+
+
+ 站点基础信息
+
+
+ 车辆管理
+
+
+ 异常原因
+
+
+ 充电机信息
+
+
+ 换电状态订单信息
+
+
+ 换电站日运行统计表
+
+
+ 换电站电池充电订单
+
+
+ 设备未处理故障日志
+
+
+ 设备已处理故障日志
+
+
+ 充电量统计信息
+
+
+ 消防移仓
+
+
+
+ 基础配置
+
+
+ 充电管理
+
+
+ 日志管理
+
+
+ 基础设置
+
+
+ 充电仓信息
+
+
+ RFID读写
+
+
+ 换电订单信息
+
+
+ 访问日志
+
+
+ 操作日志
+
+
+ 异常日志
+
+
+ 差异日志
+
+
\ No newline at end of file
diff --git a/WebStarter/WebStarter.csproj b/WebStarter/WebStarter.csproj
index a21c525..4607e3c 100644
--- a/WebStarter/WebStarter.csproj
+++ b/WebStarter/WebStarter.csproj
@@ -94,6 +94,14 @@
ResXFileCodeGenerator
Controllers.ChargeMonitorController.en.Designer.cs
+
+ ResXFileCodeGenerator
+ Controllers.System.SysMenuController.id.Designer.cs
+
+
+ ResXFileCodeGenerator
+ Controllers.System.SysMenuController.zh.Designer.cs
+
@@ -147,6 +155,16 @@
True
Controllers.ChargeMonitorController.en.resx
+
+ True
+ True
+ Controllers.System.SysMenuController.id.resx
+
+
+ True
+ True
+ Controllers.System.SysMenuController.zh.resx
+