From ef839d119eec2c28fac5f5ba175d71f926afae44 Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期二, 20 五月 2025 11:49:22 +0800 Subject: [PATCH] 修复数据库表字段不匹配、读取重量错误处理等逻辑 --- HH.WCS.Mobox3.AnGang.csproj | 18 +++++++++++++++--- 1 files changed, 15 insertions(+), 3 deletions(-) diff --git a/HH.WCS.Mobox3.AnGang.csproj b/HH.WCS.Mobox3.AnGang.csproj index ac762ad..70b4f33 100644 --- a/HH.WCS.Mobox3.AnGang.csproj +++ b/HH.WCS.Mobox3.AnGang.csproj @@ -104,6 +104,9 @@ <Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL"> <HintPath>packages\BouncyCastle.Cryptography.2.4.0\lib\net461\BouncyCastle.Cryptography.dll</HintPath> </Reference> + <Reference Include="CsvHelper, Version=33.0.0.0, Culture=neutral, PublicKeyToken=8c4959082be5c823, processorArchitecture=MSIL"> + <HintPath>packages\CsvHelper.33.0.1\lib\net462\CsvHelper.dll</HintPath> + </Reference> <Reference Include="EasyModbus, Version=5.6.0.0, Culture=neutral, processorArchitecture=MSIL"> <HintPath>packages\EasyModbusTCP.5.6.0\lib\net40\EasyModbus.dll</HintPath> </Reference> @@ -258,7 +261,6 @@ <Compile Include="Consts\AgvStateCode.cs" /> <Compile Include="Consts\AgvStateName.cs" /> <Compile Include="Consts\AreaCode.cs" /> - <Compile Include="Consts\AreaName.cs" /> <Compile Include="Consts\LockStateCode.cs" /> <Compile Include="Consts\LockStateName.cs" /> <Compile Include="Consts\TaskName.cs" /> @@ -270,8 +272,15 @@ <Compile Include="AppStart\SwaggerControllerDescProvider.cs" /> <Compile Include="Devices\SnapDevice.cs" /> <Compile Include="Devices\SnapManager.cs" /> + <Compile Include="Dtos\Request\DebugRequest.cs" /> + <Compile Include="Dtos\Request\ErpRequest.cs" /> + <Compile Include="Dtos\Response\DebugResponse.cs" /> + <Compile Include="Dtos\Response\ErpResponse.cs" /> + <Compile Include="Helpers\AgvHelper.cs" /> <Compile Include="Helpers\DbHelper.cs" /> - <Compile Include="Helpers\ResultHelper.cs" /> + <Compile Include="Models\DebugModel.cs" /> + <Compile Include="Models\TN_Inbound_Order.cs" /> + <Compile Include="Models\TN_Outbound_Order.cs" /> <Compile Include="ServiceCore\WMSCore.cs" /> <Compile Include="Models\BaseModel.cs" /> <Compile Include="Services\DebugService.cs" /> @@ -304,12 +313,13 @@ <Compile Include="Dispatch\HostToAGV.cs" /> <Compile Include="Helpers\TaskHelper.cs" /> <Compile Include="Services\AgvService.cs" /> + <Compile Include="Services\ErpService.cs" /> <Compile Include="Services\MoboxService.cs" /> <Compile Include="Helpers\LogHelper.cs" /> <Compile Include="Helpers\ContainerHelper.cs" /> <Compile Include="Helpers\LocationHelper.cs" /> <Compile Include="Helpers\WMSHelper.cs" /> - <Compile Include="Helpers\SYSHelper.cs" /> + <Compile Include="Helpers\SysHelper.cs" /> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="AppStart\Settings.cs" /> @@ -321,6 +331,7 @@ <ItemGroup> <None Include=".editorconfig" /> <None Include="App.config" /> + <None Include="config\config.comment.json" /> <None Include="config\config.json"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> @@ -352,5 +363,6 @@ <Name>NetSDKCS</Name> </ProjectReference> </ItemGroup> + <ItemGroup /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </Project> \ No newline at end of file -- Gitblit v1.9.1