From b743b62c7d57c84d16422841b0b51e85fe53a891 Mon Sep 17 00:00:00 2001 From: 18516761980 <56479841@qq.com> Date: 星期五, 22 七月 2022 19:33:10 +0800 Subject: [PATCH] # --- src/main/resources/mapper/WaitPakOutLogMapper.xml | 34 +++++++++++++++++++++++++--------- 1 files changed, 25 insertions(+), 9 deletions(-) diff --git a/src/main/resources/mapper/WaitPakOutLogMapper.xml b/src/main/resources/mapper/WaitPakOutLogMapper.xml index c68bc3a..16ac81d 100644 --- a/src/main/resources/mapper/WaitPakOutLogMapper.xml +++ b/src/main/resources/mapper/WaitPakOutLogMapper.xml @@ -4,7 +4,7 @@ <mapper namespace="com.slcf.dao.WaitPakOutLogDao"> <!-- mapper涓嶆敮鎸乻ql璇彞宓屽鏃讹紝閲囩敤sql鐗囨鍖呭惈鏂瑰紡锛岃В鍐硏ml鏍囩闂 --> -<sql id="WaitPakOutLogConditionSql"> +<sql id="WaitPakOutLogConditionSql"> <if test="matnr!=null and matnr!='' "> and a.matnr like '%' + #{matnr} + '%' </if> @@ -21,18 +21,18 @@ </if> <if test="begin_date!=null and begin_date!='' "> <![CDATA[ - and a.modi_time >= #{begin_date} - ]]> - </if> + and a.modi_time >= #{begin_date} + ]]> + </if> <if test="end_date!=null and end_date!='' "> <![CDATA[ - and a.modi_time <= #{end_date} - ]]> - </if> + and a.modi_time <= #{end_date} + ]]> + </if> </sql> <select id="queryWaitPakOutLogList" parameterType="com.slcf.bean.WaitPakOutLogCondition" resultType="com.slcf.pojo.WaitPakOutLogBean"> -select * from ( +select * from ( select *,ROW_NUMBER() OVER(Order by appe_time desc) as rowid from cust_wait_pakout_log a <where> @@ -57,4 +57,20 @@ <include refid="WaitPakOutLogConditionSql"></include> </where> </select> -</mapper> \ No newline at end of file + + +<!-- 涓嶅垎椤垫煡璇㈡墍鏈変俊鎭紝鐢ㄤ簬excel瀵煎嚭 --> +<select id="getWaitPakOutLogAll" parameterType="com.slcf.bean.WaitPakOutLogCondition" resultType="com.slcf.pojo.WaitPakOutLogBean"> + select a.* + from cust_wait_pakout_log a + <where> + <![CDATA[ +1=1 +]]> + <include refid="WaitPakOutLogConditionSql"></include> + <![CDATA[ +order by a.appe_time desc +]]> + </where> +</select> +</mapper> -- Gitblit v1.9.1