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

Commit bd0c42f0 authored by jiangxiulong's avatar jiangxiulong

Merge remote-tracking branch 'origin/dev' into dev

parents 059889bc 4ca06978
...@@ -191,6 +191,10 @@ ...@@ -191,6 +191,10 @@
field: 'orderType', field: 'orderType',
title: '客户端' title: '客户端'
}, },
{
field: 'createdAt',
title: '创建时间'
},
{ {
title: '操作', title: '操作',
align: 'center', align: 'center',
......
...@@ -56,5 +56,6 @@ ...@@ -56,5 +56,6 @@
and amo.payment_at < #{paymentAtEnd} and amo.payment_at < #{paymentAtEnd}
</if> </if>
</where> </where>
order by amo.created_at desc
</select> </select>
</mapper> </mapper>
...@@ -36,4 +36,5 @@ public class OrderTicketsListDao { ...@@ -36,4 +36,5 @@ public class OrderTicketsListDao {
String userMobile; String userMobile;
String orderType; String orderType;
String orderSource; String orderSource;
String createdAt;
} }
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
<result column="user_name" property="userName"/> <result column="user_name" property="userName"/>
<result column="user_mobile" property="userMobile"/> <result column="user_mobile" property="userMobile"/>
<result column="order_type" property="orderType"/> <result column="order_type" property="orderType"/>
<result column="created_at" property="createdAt"/>
</resultMap> </resultMap>
<resultMap id="orderPushDamaiDto" type="com.liquidnet.service.kylin.dao.OrderPushDamaiDto"> <resultMap id="orderPushDamaiDto" type="com.liquidnet.service.kylin.dao.OrderPushDamaiDto">
...@@ -110,7 +111,8 @@ ...@@ -110,7 +111,8 @@
kot.user_id, kot.user_id,
kot.user_name, kot.user_name,
kot.user_mobile, kot.user_mobile,
kot.order_type kot.order_type,
date_format(kot.created_at, '%Y-%m-%d %H:%i:%s') created_at
FROM kylin_order_tickets kot FROM kylin_order_tickets kot
inner join kylin_order_ticket_status kots on kot.order_tickets_id = kots.order_id inner join kylin_order_ticket_status kots on kot.order_tickets_id = kots.order_id
inner join kylin_order_ticket_relations kotr on kot.order_tickets_id = kotr.order_id inner join kylin_order_ticket_relations kotr on kot.order_tickets_id = kotr.order_id
...@@ -160,6 +162,7 @@ ...@@ -160,6 +162,7 @@
AND kots.status = #{orderStatus} AND kots.status = #{orderStatus}
</if> </if>
</where> </where>
order by kot.created_at desc
<!-- <if test="orderItem!=''">--> <!-- <if test="orderItem!=''">-->
<!-- ORDER BY ${orderItem} ${orderSc}--> <!-- ORDER BY ${orderItem} ${orderSc}-->
<!-- </if>--> <!-- </if>-->
......
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