From 527bed43ea41443fd602305cb673fb4337179d51 Mon Sep 17 00:00:00 2001
From: xwt <2740516069@qq.com>
Date: 星期二, 21 十月 2025 14:40:45 +0800
Subject: [PATCH] SJ逻辑补充

---
 StandardInterface/MES.Service/Dto/service/SJPageResult.cs |   12 ++++++++++++
 StandardInterface/MES.Service/service/QC/SJService.cs     |    4 ++--
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/StandardInterface/MES.Service/Dto/service/SJPageResult.cs b/StandardInterface/MES.Service/Dto/service/SJPageResult.cs
index 819d93a..b872b61 100644
--- a/StandardInterface/MES.Service/Dto/service/SJPageResult.cs
+++ b/StandardInterface/MES.Service/Dto/service/SJPageResult.cs
@@ -95,6 +95,18 @@
     [SugarColumn(ColumnName = "SJ_MJ")]
     public string? SJ_MJ { get; set; }
     
+    /// <summary>
+    ///     绌存暟
+    /// </summary>
+    [SugarColumn(ColumnName = "MNUM")]
+    public decimal? Mnum { get; set; }
+    
+    /// <summary>
+    ///     鍫电┐鍙�
+    /// </summary>
+    [SugarColumn(ColumnName = "DNUM")]
+    public string? Dnum { get; set; }
+    
     [SugarColumn(IsIgnore = true)]
     // 鏂板鍙傛暟鐢ㄤ簬鍔ㄦ�佹悳绱�
     public int? selectedIndex { get; set; }  // 鎼滅储鏉′欢绱㈠紩
diff --git a/StandardInterface/MES.Service/service/QC/SJService.cs b/StandardInterface/MES.Service/service/QC/SJService.cs
index db8e86a..aa32e8c 100644
--- a/StandardInterface/MES.Service/service/QC/SJService.cs
+++ b/StandardInterface/MES.Service/service/QC/SJService.cs
@@ -676,8 +676,8 @@
         new("P_ID", id, System.Data.DbType.Decimal, ParameterDirection.Input),
         new("P_NO", no, System.Data.DbType.String, ParameterDirection.Input),
         new("P_USER", user, System.Data.DbType.String, ParameterDirection.Input),
-        new("P_MNUM", mnum ?? 1, System.Data.DbType.Decimal, ParameterDirection.Input),
-        new("P_DNUM", dnum ?? "", System.Data.DbType.String, ParameterDirection.Input),
+        new("P_MNUM", mnum, System.Data.DbType.Decimal, ParameterDirection.Input),
+        new("P_DNUM", dnum, System.Data.DbType.String, ParameterDirection.Input),
         outputResult,
         outputMessage
     };

--
Gitblit v1.9.3