|
|
@@ -93,6 +93,8 @@
|
|
|
<result column="credit_number" property="creditNumber"/>
|
|
|
<result column="credit_amount" property="creditAmount"/>
|
|
|
<result column="order_status" property="orderStatus"/>
|
|
|
+ <result column="if_enquiry" property="ifEnquiry"/>
|
|
|
+ <result column="if_shipping" property="ifShipping"/>
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
@@ -314,6 +316,12 @@
|
|
|
<if test="Order.rmbAmount!=null">
|
|
|
and rmb_amount = #{Order.rmbAmount}
|
|
|
</if>
|
|
|
+ <if test="Order.ifEnquiry!=null and Order.ifEnquiry != ''">
|
|
|
+ and if_enquiry = #{Order.ifEnquiry}
|
|
|
+ </if>
|
|
|
+ <if test="Order.ifShipping!=null and Order.ifShipping != ''">
|
|
|
+ and if_shipping = #{Order.ifShipping}
|
|
|
+ </if>
|
|
|
order by id
|
|
|
</select>
|
|
|
|