记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
bd0c42f0
Commit
bd0c42f0
authored
Aug 01, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
059889bc
4ca06978
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
1 deletion
+10
-1
orderList.html
...s/templates/zhengzai/kylin/order/orderList/orderList.html
+4
-0
AdamMemberOrderMapper.xml
...m/liquidnet/service/adam/mapper/AdamMemberOrderMapper.xml
+1
-0
OrderTicketsListDao.java
.../com/liquidnet/service/kylin/dao/OrderTicketsListDao.java
+1
-0
KylinOrderTicketsMapper.xml
...iquidnet.service.kylin.mapper/KylinOrderTicketsMapper.xml
+4
-1
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/order/orderList/orderList.html
View file @
bd0c42f0
...
@@ -191,6 +191,10 @@
...
@@ -191,6 +191,10 @@
field
:
'orderType'
,
field
:
'orderType'
,
title
:
'客户端'
title
:
'客户端'
},
},
{
field
:
'createdAt'
,
title
:
'创建时间'
},
{
{
title
:
'操作'
,
title
:
'操作'
,
align
:
'center'
,
align
:
'center'
,
...
...
liquidnet-bus-do/liquidnet-service-adam-do/src/main/resources/com/liquidnet/service/adam/mapper/AdamMemberOrderMapper.xml
View file @
bd0c42f0
...
@@ -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>
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/OrderTicketsListDao.java
View file @
bd0c42f0
...
@@ -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
;
}
}
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinOrderTicketsMapper.xml
View file @
bd0c42f0
...
@@ -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>-->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment