From 7b5c67f84d6530230eeca99cc95f02bd7ec52304 Mon Sep 17 00:00:00 2001
From: 王佳豪 <g675230687@126.com>
Date: 星期四, 15 七月 2021 08:38:12 +0800
Subject: [PATCH] 数据库备份提交
---
src/main/resources/mapper/WaitPakOutMapper.xml | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/WaitPakOutMapper.xml b/src/main/resources/mapper/WaitPakOutMapper.xml
index 65dc579..245bf1b 100644
--- a/src/main/resources/mapper/WaitPakOutMapper.xml
+++ b/src/main/resources/mapper/WaitPakOutMapper.xml
@@ -38,6 +38,18 @@
</where>
</select>
+<update id="waitPakOutSetEms">
+ update cust_wait_pakout set ems_status = 1 where lgnum=#{lgnum} and tanum = #{tanum} and tapos = #{tapos}
+</update>
+
+<select id="countEmsNum" resultType="integer">
+ select count(*) from cust_wait_pakout where ems_status = 1
+</select>
+
+<select id="queryWaitOutPak" resultType="com.slcf.pojo.WaitPakOutBean">
+ select * from cust_wait_pakout where vlpla = #{vlpla} and matnr = #{matnr}
+</select>
+
<select id="getWaitPakOutCount" parameterType="com.slcf.bean.WaitPakOutCondition" resultType="Integer">
select count(1) from cust_wait_pakout a
<where>
--
Gitblit v1.9.1