From 44dc0eeb20452e79d1d2506e8a34fc29eb90da2e Mon Sep 17 00:00:00 2001
From: zzgtfwq <zzgtfwq>
Date: 星期一, 08 十二月 2025 17:02:32 +0800
Subject: [PATCH] #
---
src/main/resources/mapper/WrkDetlLogMapper.xml | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/WrkDetlLogMapper.xml b/src/main/resources/mapper/WrkDetlLogMapper.xml
index aed5134..4c847ec 100644
--- a/src/main/resources/mapper/WrkDetlLogMapper.xml
+++ b/src/main/resources/mapper/WrkDetlLogMapper.xml
@@ -51,6 +51,8 @@
<result column="box_type1" property="boxType1" />
<result column="box_type2" property="boxType2" />
<result column="box_type3" property="boxType3" />
+ <result column="owner" property="owner"/>
+ <result column="uuid" property="uuid"/>
</resultMap>
<sql id="batchSeq">
@@ -71,6 +73,12 @@
<if test="batch != null and batch != ''">
and a.batch like concat('%',#{batch},'%')
</if>
+ <if test="sku != null and sku != ''">
+ and a.sku like concat('%',#{sku},'%')
+ </if>
+ <if test="memo != null and memo != ''">
+ and a.memo like concat('%',#{memo},'%')
+ </if>
<if test="matnr != null and matnr != ''">
and a.matnr like concat('%',#{matnr},'%')
</if>
--
Gitblit v1.9.1