From c4a844dcd68e2ca4c03ff3fba19c68954788195d Mon Sep 17 00:00:00 2001 From: jiazx0107@163.com <jiazx0107@163.com> Date: 星期二, 30 五月 2023 18:30:23 +0800 Subject: [PATCH] 出入库优化-登记2 --- igds-inout/src/main/resources/mapper/InoutRecordMapper.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/igds-inout/src/main/resources/mapper/InoutRecordMapper.xml b/igds-inout/src/main/resources/mapper/InoutRecordMapper.xml index 28c4f73..dd5bfbe 100644 --- a/igds-inout/src/main/resources/mapper/InoutRecordMapper.xml +++ b/igds-inout/src/main/resources/mapper/InoutRecordMapper.xml @@ -533,7 +533,7 @@ </select> <!--鏍规嵁杞︾墝鍜屽崱鍙烽獙璇佹槸鍚︽湁閲嶅淇℃伅--> - <select id="checkExist" parameterType="com.ld.igds.inout.dto.InoutParam"> + <select id="checkExist" parameterType="com.ld.igds.inout.dto.InoutParam" resultType="int"> select count(1) from D_INOUT_RECORD @@ -544,7 +544,7 @@ AND RECORD_STATUS_ != 'ERROR' AND RECORD_STATUS_ != 'DEL' <if test="param.start != null"> - AND REGISTER_TIME_ <![CDATA[ > ]]> #{param.start} + AND REGISTER_TIME_ <![CDATA[ > ]]> #{param.start,jdbcType=TIMESTAMP} </if> </select> -- Gitblit v1.9.3