From 60dd1afc3e8f94aa1b23211b6738d35b47294382 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周三, 17 9月 2025 13:58:45 +0800 Subject: [PATCH] //验证单号是否已经存在 【Editby shaocx,2025-09-17】 var findInOutList = DbModel.BASEInOutLists.FirstOrDefault(x => x.listno == iol.ListNo); if (findInOutList != null) { msg = $"单号{iol.ListNo}已存在"; return -1; } --- DEmon/WebWIPAPI/WebWIPAPI.csproj | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/DEmon/WebWIPAPI/WebWIPAPI.csproj b/DEmon/WebWIPAPI/WebWIPAPI.csproj index 890fcab..788c804 100644 --- a/DEmon/WebWIPAPI/WebWIPAPI.csproj +++ b/DEmon/WebWIPAPI/WebWIPAPI.csproj @@ -132,6 +132,7 @@ <DesignTime>True</DesignTime> <DependentUpon>Resources.resx</DependentUpon> </Compile> + <Compile Include="Utils\ApiResponseHelper.cs" /> <Compile Include="Utils\ClassHelper.cs" /> <Compile Include="Utils\LogTextHelper.cs" /> </ItemGroup> -- Gitblit v1.9.3