记得上下班打卡 | git大法好,push需谨慎

Commit 748d9568 authored by jiangxiulong's avatar jiangxiulong

Merge remote-tracking branch 'origin/jxl_1214_refund' into dev_merchant

parents 449d16d7 8837fcdb
...@@ -31,6 +31,9 @@ public class PerformanceExpressSearchAdminParam { ...@@ -31,6 +31,9 @@ public class PerformanceExpressSearchAdminParam {
private String mailno; private String mailno;
private String productCode;
private String expressType;
private List<String> ids; private List<String> ids;
} }
...@@ -24,8 +24,8 @@ public class PerformanceExpressPerformanceOrderListAdminDao { ...@@ -24,8 +24,8 @@ public class PerformanceExpressPerformanceOrderListAdminDao {
// 1寄付|2到付|3包邮 // 1寄付|2到付|3包邮
Integer expressType; Integer expressType;
// 标快 特快 // 标快 特快
Integer produceCode; Integer productCode;
Integer produceTitle; Integer productTitle;
String orderExpressId; String orderExpressId;
String mailno; String mailno;
......
...@@ -305,9 +305,9 @@ ...@@ -305,9 +305,9 @@
kots.status, kots.status,
kots.express_type, kots.express_type,
kots.produce_code, kots.product_code,
kem.title as produce_title, kem.title as product_title,
oe.order_express_id, oe.order_express_id,
oe.mailno, oe.mailno,
...@@ -350,7 +350,7 @@ ...@@ -350,7 +350,7 @@
<if test="mailno != ''">AND oe.mailno LIKE concat('%', #{mailno}, '%')</if> <if test="mailno != ''">AND oe.mailno LIKE concat('%', #{mailno}, '%')</if>
<if test="ticketsId != '' and ticketsId != null">AND kotr.ticket_id = ${ticketsId}</if> <if test="ticketsId != '' and ticketsId != null">AND kotr.ticket_id = ${ticketsId}</if>
<if test="expressType != '' and expressType != null">AND kots.express_type = ${expressType}</if> <if test="expressType != '' and expressType != null">AND kots.express_type = ${expressType}</if>
<if test="produceCode != '' and produceCode != null">AND kots.produce_code = ${produceCode}</if> <if test="productCode != '' and productCode != null">AND kots.produce_code = ${productCode}</if>
</where> </where>
ORDER BY kot.mid DESC ORDER BY kot.mid DESC
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment