Compare commits

..

No commits in common. "1a026467c43d19d24e07ea147f0d8a715dadbe3f" and "e1e41ecffa7c3162c5245ef473747fe90b6438c8" have entirely different histories.

1 changed files with 4 additions and 1 deletions

View File

@ -307,7 +307,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and dkta.pro_id = #{proId}
</if>
<if test="proName != null and proName != ''">
and dkta.single_pro_name like concat('%',#{proName},'%')
and dkta.pro_name like concat('%',#{proName},'%')
</if>
<if test="singleProName != null and singleProName != ''">
and dkta.single_pro_name like concat('%',#{singleProName},'%')
</if>
<if test="transfertTime != null and transfertTime != ''">
and DATE(dkta.transfer_time) = #{transfertTime}