tangxu
2025-02-11 830376620cafe9d7ff2bda532502b6d12fdae09c
总供水量保存多了一个小数
已修改2个文件
15 ■■■■ 文件已修改
DAL/IStation.DAL.Project/DAL/AnaProject.cs 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebApi/IStation.ChEr.WebApi.csproj.user 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DAL/IStation.DAL.Project/DAL/AnaProject.cs
@@ -72,7 +72,16 @@
            }
            if (ana_request.PerHourFlowOut != null)
            {
                entity.TotalFlowOut = string.Join(",", ana_request.PerHourFlowOut);
                if (ana_request.PerHourFlowOut.Count > 24)
                {
                    var list = ana_request.PerHourFlowOut.Take(24).ToList();
                    entity.TotalFlowOut = string.Join(",", list);
                }
                else
                {
                    entity.TotalFlowOut = string.Join(",", ana_request.PerHourFlowOut);
                }
            }
            if (ana_request.MaxReservoirLevel != null)
            {
WebApi/IStation.ChEr.WebApi.csproj.user
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
    <LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
    <UseIISExpress>true</UseIISExpress>
    <Use64BitIISExpress>true</Use64BitIISExpress>
    <IISExpressSSLPort>44318</IISExpressSSLPort>