From 1be2fc056943ba8b9e62328430e15beee03e8a9f Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期一, 02 六月 2025 13:46:48 +0800 Subject: [PATCH] 1.生产补料优化 2.首检开发-v1 --- service/QC/LljService.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/service/QC/LljService.cs b/service/QC/LljService.cs index 4a0ae3a..a6573b0 100644 --- a/service/QC/LljService.cs +++ b/service/QC/LljService.cs @@ -730,7 +730,7 @@ //鍒犻櫎鐗瑰緛鍊� public int deleteDetail13(LLJDto dto) { - var withOracle = Db.Updateable<MesQaItemsDetectDetail13>() + var withOracle = Db.Deleteable<MesQaItemsDetectDetail13>() .Where(s => s.Guid.ToString() == dto.id13) .ExecuteCommand(); @@ -741,7 +741,7 @@ public int updateRemarks(LLJDto dto) { var withOracle = Db.Updateable<MesQaItemsDetect01>() - .SetColumns(s => s.Remarks == dto.Remarks) + .SetColumns(s => s.FngDesc == dto.Remarks) .Where(s => s.Guid.ToString() == dto.gid) .ExecuteCommand(); -- Gitblit v1.9.3