添加类和接口文件
This commit is contained in:
parent
632635429d
commit
f510af6529
|
|
@ -53,6 +53,9 @@
|
||||||
<Compile Include="api\EnergyEfficiency\get_amount_energy_response.cs" />
|
<Compile Include="api\EnergyEfficiency\get_amount_energy_response.cs" />
|
||||||
<Compile Include="api\EnergyEfficiency\get_device_operation_response.cs" />
|
<Compile Include="api\EnergyEfficiency\get_device_operation_response.cs" />
|
||||||
<Compile Include="api\EnergyEfficiency\get_electricity_price_response.cs" />
|
<Compile Include="api\EnergyEfficiency\get_electricity_price_response.cs" />
|
||||||
|
<Compile Include="api\EnergyEfficiency\get_energy_benchmarking_response.cs" />
|
||||||
|
<Compile Include="api\EnergyEfficiency\get_energy_flow_response.cs" />
|
||||||
|
<Compile Include="api\EnergyEfficiency\get_multi_rate_response.cs" />
|
||||||
<Compile Include="api\EnergyEfficiency\get_unit_consumption_response.cs" />
|
<Compile Include="api\EnergyEfficiency\get_unit_consumption_response.cs" />
|
||||||
<Compile Include="api\get_abutment.cs" />
|
<Compile Include="api\get_abutment.cs" />
|
||||||
<Compile Include="api\get_air_conditioner.cs" />
|
<Compile Include="api\get_air_conditioner.cs" />
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DataServer.api.EnergyEfficiency
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取能效对标接口响应实体
|
||||||
|
/// </summary>
|
||||||
|
public class get_energy_benchmarking_response
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DataServer.api.EnergyEfficiency
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取能源流向接口响应实体
|
||||||
|
/// </summary>
|
||||||
|
public class get_energy_flow_response
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DataServer.api.EnergyEfficiency
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取复费率接口响应实体
|
||||||
|
/// </summary>
|
||||||
|
public class get_multi_rate_response
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Web.Http;
|
||||||
|
|
||||||
|
namespace DongYingAPI.Controllers.api.EnergyEfficiency
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取能效对标接口
|
||||||
|
/// </summary>
|
||||||
|
public class GetEnergyBenchmarkingController : ApiController
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Web.Http;
|
||||||
|
|
||||||
|
namespace DongYingAPI.Controllers.api.EnergyEfficiency
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取能源流向接口
|
||||||
|
/// </summary>
|
||||||
|
public class GetEnergyFlowController : ApiController
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Web.Http;
|
||||||
|
|
||||||
|
namespace DongYingAPI.Controllers.api.EnergyEfficiency
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取复费率接口
|
||||||
|
/// </summary>
|
||||||
|
public class GetMultiRateController : ApiController
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -163,6 +163,9 @@
|
||||||
<Compile Include="Controllers\api\EnergyEfficiency\GetAmountEnergyController.cs" />
|
<Compile Include="Controllers\api\EnergyEfficiency\GetAmountEnergyController.cs" />
|
||||||
<Compile Include="Controllers\api\EnergyEfficiency\GetDeviceOperationController.cs" />
|
<Compile Include="Controllers\api\EnergyEfficiency\GetDeviceOperationController.cs" />
|
||||||
<Compile Include="Controllers\api\EnergyEfficiency\GetElectricityPriceController.cs" />
|
<Compile Include="Controllers\api\EnergyEfficiency\GetElectricityPriceController.cs" />
|
||||||
|
<Compile Include="Controllers\api\EnergyEfficiency\GetEnergyBenchmarkingController.cs" />
|
||||||
|
<Compile Include="Controllers\api\EnergyEfficiency\GetEnergyFlowController.cs" />
|
||||||
|
<Compile Include="Controllers\api\EnergyEfficiency\GetMultiRateController.cs" />
|
||||||
<Compile Include="Controllers\api\EnergyEfficiency\GetUnitConsumptionController.cs" />
|
<Compile Include="Controllers\api\EnergyEfficiency\GetUnitConsumptionController.cs" />
|
||||||
<Compile Include="Controllers\api\GetAirConditionerController.cs" />
|
<Compile Include="Controllers\api\GetAirConditionerController.cs" />
|
||||||
<Compile Include="Controllers\api\GetCarbonEmissionController.cs" />
|
<Compile Include="Controllers\api\GetCarbonEmissionController.cs" />
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue