@ -50,7 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<iftest="shippingCode != null and shippingCode != ''"> and shipping_code like concat('%', #{shippingCode}, '%')</if>
<iftest="packingCode != null and packingCode != ''"> and packing_code like concat('%', #{packingCode}, '%')</if>
<iftest="shippingInformationType != null and shippingInformationType != ''"> and shipping_information_type = #{shippingInformationType}</if>
<iftest="customerId != null and customerId != ''"> and customer_id = #{customerId}</if>
<iftest="customerId != null and customerId != ''"> and customer_id like concat('%', #{customerId}, '%')</if>
<iftest="customerName != null and customerName != ''"> and customer_name like concat('%', #{customerName}, '%')</if>
<iftest="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
</where>
@ -77,7 +78,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<iftest="shippingCode != null and shippingCode != ''"> and shipping_code like concat('%', #{shippingCode}, '%')</if>
<iftest="packingCode != null and packingCode != ''"> and packing_code like concat('%', #{packingCode}, '%')</if>
<iftest="shippingInformationType != null and shippingInformationType != ''"> and shipping_information_type = #{shippingInformationType}</if>
<iftest="customerId != null and customerId != ''"> and customer_id = #{customerId}</if>
<iftest="customerId != null and customerId != ''"> and customer_id like concat('%', #{customerId}, '%')</if>
<iftest="customerName != null and customerName != ''"> and customer_name like concat('%', #{customerName}, '%')</if>
<iftest="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
and shipping_information_type = '1'
@ -96,7 +97,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<iftest="shippingCode != null and shippingCode != ''"> and shipping_code like concat('%', #{shippingCode}, '%')</if>
<iftest="packingCode != null and packingCode != ''"> and packing_code like concat('%', #{packingCode}, '%')</if>
<iftest="shippingInformationType != null and shippingInformationType != ''"> and shipping_information_type = #{shippingInformationType}</if>
<iftest="customerId != null and customerId != ''"> and customer_id = #{customerId}</if>
<iftest="customerId != null and customerId != ''"> and customer_id like concat('%', #{customerId}, '%')</if>
<iftest="customerName != null and customerName != ''"> and customer_name like concat('%', #{customerName}, '%')</if>
<iftest="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
and shipping_information_type = '0'
@ -115,7 +116,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<iftest="shippingCode != null and shippingCode != ''"> and shipping_code like concat('%', #{shippingCode}, '%')</if>
<iftest="packingCode != null and packingCode != ''"> and packing_code like concat('%', #{packingCode}, '%')</if>
<iftest="shippingInformationType != null and shippingInformationType != ''"> and shipping_information_type = #{shippingInformationType}</if>
<iftest="customerId != null and customerId != ''"> and customer_id = #{customerId}</if>
<iftest="customerId != null and customerId != ''"> and customer_id like concat('%', #{customerId}, '%')</if>
<iftest="customerName != null and customerName != ''"> and customer_name like concat('%', #{customerName}, '%')</if>
<iftest="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
and shipping_information_type = '2'
@ -129,6 +130,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"