diff --git a/DataServer/DataServer.csproj b/DataServer/DataServer.csproj index fa1e885..fa8efad 100644 --- a/DataServer/DataServer.csproj +++ b/DataServer/DataServer.csproj @@ -53,6 +53,9 @@ + + + diff --git a/DataServer/api/EnergyEfficiency/get_energy_benchmarking_response.cs b/DataServer/api/EnergyEfficiency/get_energy_benchmarking_response.cs new file mode 100644 index 0000000..b48cba7 --- /dev/null +++ b/DataServer/api/EnergyEfficiency/get_energy_benchmarking_response.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 +{ + /// + /// 获取能效对标接口响应实体 + /// + public class get_energy_benchmarking_response + { + } +} diff --git a/DataServer/api/EnergyEfficiency/get_energy_flow_response.cs b/DataServer/api/EnergyEfficiency/get_energy_flow_response.cs new file mode 100644 index 0000000..2dcad71 --- /dev/null +++ b/DataServer/api/EnergyEfficiency/get_energy_flow_response.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 +{ + /// + /// 获取能源流向接口响应实体 + /// + public class get_energy_flow_response + { + } +} diff --git a/DataServer/api/EnergyEfficiency/get_multi_rate_response.cs b/DataServer/api/EnergyEfficiency/get_multi_rate_response.cs new file mode 100644 index 0000000..4772a2f --- /dev/null +++ b/DataServer/api/EnergyEfficiency/get_multi_rate_response.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 +{ + /// + /// 获取复费率接口响应实体 + /// + public class get_multi_rate_response + { + } +} diff --git a/DongYingAPI/Controllers/api/EnergyEfficiency/GetEnergyBenchmarkingController.cs b/DongYingAPI/Controllers/api/EnergyEfficiency/GetEnergyBenchmarkingController.cs new file mode 100644 index 0000000..b70fd5e --- /dev/null +++ b/DongYingAPI/Controllers/api/EnergyEfficiency/GetEnergyBenchmarkingController.cs @@ -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 +{ + /// + /// 获取能效对标接口 + /// + public class GetEnergyBenchmarkingController : ApiController + { + } +} diff --git a/DongYingAPI/Controllers/api/EnergyEfficiency/GetEnergyFlowController.cs b/DongYingAPI/Controllers/api/EnergyEfficiency/GetEnergyFlowController.cs new file mode 100644 index 0000000..4c706ec --- /dev/null +++ b/DongYingAPI/Controllers/api/EnergyEfficiency/GetEnergyFlowController.cs @@ -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 +{ + /// + /// 获取能源流向接口 + /// + public class GetEnergyFlowController : ApiController + { + } +} diff --git a/DongYingAPI/Controllers/api/EnergyEfficiency/GetMultiRateController.cs b/DongYingAPI/Controllers/api/EnergyEfficiency/GetMultiRateController.cs new file mode 100644 index 0000000..49ec700 --- /dev/null +++ b/DongYingAPI/Controllers/api/EnergyEfficiency/GetMultiRateController.cs @@ -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 +{ + /// + /// 获取复费率接口 + /// + public class GetMultiRateController : ApiController + { + } +} diff --git a/DongYingAPI/DongYingAPI.csproj b/DongYingAPI/DongYingAPI.csproj index ebe406f..f941b8b 100644 --- a/DongYingAPI/DongYingAPI.csproj +++ b/DongYingAPI/DongYingAPI.csproj @@ -163,6 +163,9 @@ + + + diff --git a/DongYingAPI/obj/Debug/DongYingAPI.csproj.AssemblyReference.cache b/DongYingAPI/obj/Debug/DongYingAPI.csproj.AssemblyReference.cache index 161babe..f331553 100644 Binary files a/DongYingAPI/obj/Debug/DongYingAPI.csproj.AssemblyReference.cache and b/DongYingAPI/obj/Debug/DongYingAPI.csproj.AssemblyReference.cache differ