From 8f28ca63dde584e5fefe51a07e69fd9b1af76fd2 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期一, 09 六月 2025 12:28:27 +0800 Subject: [PATCH] 1.生产补料/超领优化 2.委外补料/超领优化 3.巡检检验新增工单查询选择 4.巡检优化新增时间段字段 --- 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