版本1.1
This commit is contained in:
parent
3623fa1f35
commit
09064b0f94
|
|
@ -29,7 +29,7 @@ namespace DataServer.api.EnergyEfficiency
|
|||
public class device_operation_response
|
||||
{
|
||||
public string SystematicName { get; set; }
|
||||
public string SystematicState { get; set; }
|
||||
public int SystematicState { get; set; }
|
||||
public string InstrumentAddress { get; set; }
|
||||
public string InstrumentType { get; set; }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,6 @@ namespace DataServer.api
|
|||
public int SerialNumber { get; set; }
|
||||
public string DeviceName { get; set; }
|
||||
public decimal? EH { get; set; }
|
||||
public string DeviceState { get; set; }
|
||||
public int DeviceState { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,6 +26,6 @@ namespace DataServer.api
|
|||
public class lighting_strategyData
|
||||
{
|
||||
public string StrategyName { get; set; }
|
||||
public string StrategyState { get; set;}
|
||||
public int StrategyState { get; set;}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,6 @@ namespace DataServer
|
|||
/// 变损率
|
||||
/// </summary>
|
||||
public decimal? ConversionRate { get; set; }
|
||||
public string DeviceState { get; set; }
|
||||
public int DeviceState { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ namespace DataServer.api
|
|||
public class running_statusData
|
||||
{
|
||||
public string DeviceName { get; set; }
|
||||
public string DeviceState { get; set; }
|
||||
public int DeviceState { get; set; }
|
||||
public decimal? EH { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -75,11 +75,11 @@ namespace DongYingAPI.Controllers.api.EnergyEfficiency
|
|||
}
|
||||
if (kcount1 == kcount2)
|
||||
{
|
||||
model.SystematicState = "正常";
|
||||
model.SystematicState = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
model.SystematicState = "异常";
|
||||
model.SystematicState = 0;
|
||||
}
|
||||
model.InstrumentType = item.EquipmentClassification;
|
||||
data.Add(model);
|
||||
|
|
|
|||
|
|
@ -80,11 +80,11 @@ namespace DongYingAPI.Controllers.api
|
|||
model.EH = num1 - num2;
|
||||
if(model.EH == 0)
|
||||
{
|
||||
model.DeviceState = "异常";
|
||||
model.DeviceState = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model.DeviceState = "正常";
|
||||
model.DeviceState = 1;
|
||||
}
|
||||
data.Add(model);
|
||||
|
||||
|
|
@ -132,11 +132,11 @@ namespace DongYingAPI.Controllers.api
|
|||
model.EH = num1 - num2;
|
||||
if(model.EH == 0)
|
||||
{
|
||||
model.DeviceState = "异常";
|
||||
model.DeviceState = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model.DeviceState = "正常";
|
||||
model.DeviceState = 1;
|
||||
}
|
||||
data.Add(model);
|
||||
|
||||
|
|
@ -183,11 +183,11 @@ namespace DongYingAPI.Controllers.api
|
|||
model.EH = num1 - num2;
|
||||
if (model.EH == 0)
|
||||
{
|
||||
model.DeviceState = "异常";
|
||||
model.DeviceState = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
model.DeviceState = "正常";
|
||||
model.DeviceState = 1;
|
||||
}
|
||||
data.Add(model);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,7 +28,15 @@ namespace DongYingAPI.Controllers.api
|
|||
{
|
||||
var model=new lighting_strategyData();
|
||||
model.StrategyName = item.StrategyName;
|
||||
model.StrategyState = item.StrategyState;
|
||||
if (item.StrategyState == "正常")
|
||||
{
|
||||
model.StrategyState = 1;
|
||||
}
|
||||
if (item.StrategyState == "异常")
|
||||
{
|
||||
model.StrategyState = 0;
|
||||
}
|
||||
//model.StrategyState = item.StrategyState;
|
||||
data.Add(model);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ namespace DongYingAPI.Controllers.api
|
|||
var cnum = Math.Round(Convert.ToDouble(item.P) / Convert.ToDouble(num), 3);
|
||||
model.LoadRate = Convert.ToDecimal(cnum) * 100;
|
||||
model.ConversionRate = Math.Round(Convert.ToDecimal(5.5) / Convert.ToDecimal(item.EH), 3) * 100;
|
||||
model.DeviceState = "正常";
|
||||
model.DeviceState = 1;
|
||||
data.Add(model);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ namespace DongYingAPI.Controllers.api
|
|||
{
|
||||
var model=new running_statusData();
|
||||
model.DeviceName= aitem.DeviceName;
|
||||
model.DeviceState = "正常";
|
||||
model.DeviceState = 1;
|
||||
var jlist = bll.GetModelListDate("", jtime).Where(x => x.DeviceId == aitem.DeviceId && x.EntireTime == Convert.ToDateTime(jdate)).ToList();
|
||||
var slist = bll.GetModelListDate("", stime).Where(x => x.DeviceId == aitem.DeviceId && x.EntireTime == Convert.ToDateTime(sdate)).ToList();
|
||||
foreach (var item in jlist)
|
||||
|
|
|
|||
|
|
@ -79,16 +79,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>09/10/2013 16:29:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DataServer.dll">
|
||||
<publishTime>01/15/2024 13:49:51</publishTime>
|
||||
<publishTime>01/15/2024 15:27:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DataServer.pdb">
|
||||
<publishTime>01/15/2024 13:49:51</publishTime>
|
||||
<publishTime>01/15/2024 15:27:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DongYingAPI.dll">
|
||||
<publishTime>01/15/2024 13:50:11</publishTime>
|
||||
<publishTime>01/15/2024 15:27:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DongYingAPI.pdb">
|
||||
<publishTime>01/15/2024 13:50:11</publishTime>
|
||||
<publishTime>01/15/2024 15:27:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/HslCommunication.dll">
|
||||
<publishTime>08/03/2021 14:52:26</publishTime>
|
||||
|
|
@ -364,7 +364,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>01/10/2024 17:33:29</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/EnergyEfficiency/GetDeviceOperationController.cs">
|
||||
<publishTime>01/12/2024 18:47:54</publishTime>
|
||||
<publishTime>01/15/2024 15:26:02</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/EnergyEfficiency/GetElectricityPriceController.cs">
|
||||
<publishTime>01/11/2024 14:58:40</publishTime>
|
||||
|
|
@ -457,7 +457,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>01/12/2024 17:11:08</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetEquipmentMonitoringController.cs">
|
||||
<publishTime>01/12/2024 16:11:58</publishTime>
|
||||
<publishTime>01/15/2024 15:24:36</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetEssentialInformationController.cs">
|
||||
<publishTime>01/08/2024 13:30:31</publishTime>
|
||||
|
|
@ -481,7 +481,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>01/10/2024 16:58:07</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetLightingStrategyController.cs">
|
||||
<publishTime>01/11/2024 13:18:52</publishTime>
|
||||
<publishTime>01/15/2024 15:20:41</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetMeteorologicalStationController.cs">
|
||||
<publishTime>01/11/2024 13:47:16</publishTime>
|
||||
|
|
@ -490,7 +490,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>01/09/2024 17:02:14</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetRealtimeDataController.cs">
|
||||
<publishTime>01/09/2024 16:25:24</publishTime>
|
||||
<publishTime>01/15/2024 15:22:34</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetRealtimeLoadController.cs">
|
||||
<publishTime>01/09/2024 17:02:14</publishTime>
|
||||
|
|
@ -499,7 +499,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<publishTime>01/12/2024 17:11:08</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetRunningStatusController.cs">
|
||||
<publishTime>01/12/2024 15:48:49</publishTime>
|
||||
<publishTime>01/15/2024 15:25:54</publishTime>
|
||||
</File>
|
||||
<File Include="Controllers/api/GetWaterConsumptionController.cs">
|
||||
<publishTime>01/11/2024 16:51:02</publishTime>
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -14,7 +14,7 @@
|
|||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>GScl3CZ2qpJ9jFdPcw+ZnX68DCAS4LmifkveDdn+/cU=</dsig:DigestValue>
|
||||
<dsig:DigestValue>u5NQ+1BbZ+XTbzSltn6OyRRl/GKXQgavUmtE1SWYYIM=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>xQiQI9ifmRrHXRlAxTYTlEi5Knw8SbX1q8Yjn1kRweo=</dsig:DigestValue>
|
||||
<dsig:DigestValue>t3t2VUAEbBgQYqqvQWmyeTfU5g8NBCHvqQak5Dp1RNc=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -14,7 +14,7 @@
|
|||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>GScl3CZ2qpJ9jFdPcw+ZnX68DCAS4LmifkveDdn+/cU=</dsig:DigestValue>
|
||||
<dsig:DigestValue>u5NQ+1BbZ+XTbzSltn6OyRRl/GKXQgavUmtE1SWYYIM=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||
</dsig:Transforms>
|
||||
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||
<dsig:DigestValue>xQiQI9ifmRrHXRlAxTYTlEi5Knw8SbX1q8Yjn1kRweo=</dsig:DigestValue>
|
||||
<dsig:DigestValue>t3t2VUAEbBgQYqqvQWmyeTfU5g8NBCHvqQak5Dp1RNc=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
|
|||
Loading…
Reference in New Issue