记得上下班打卡 | 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
b7ec05e7
Commit
b7ec05e7
authored
Apr 12, 2022
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#48:admin
parent
f08f6f63
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
0 deletions
+12
-0
GoblinNftOrderListParam.java
...t/service/goblin/param/admin/GoblinNftOrderListParam.java
+2
-0
GoblinNftOrderRefundListParam.java
...ice/goblin/param/admin/GoblinNftOrderRefundListParam.java
+2
-0
GoblinNftOrderMapper.xml
....liquidnet.service.goblin.mapper/GoblinNftOrderMapper.xml
+4
-0
GoblinNftOrderRefundMapper.xml
...dnet.service.goblin.mapper/GoblinNftOrderRefundMapper.xml
+4
-0
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/admin/GoblinNftOrderListParam.java
View file @
b7ec05e7
...
@@ -21,6 +21,8 @@ public class GoblinNftOrderListParam {
...
@@ -21,6 +21,8 @@ public class GoblinNftOrderListParam {
@ApiModelProperty
(
value
=
"藏品名称"
)
@ApiModelProperty
(
value
=
"藏品名称"
)
private
String
name
;
private
String
name
;
@ApiModelProperty
(
value
=
"用户ID"
)
private
String
userId
;
@ApiModelProperty
(
value
=
"短订单编号"
)
@ApiModelProperty
(
value
=
"短订单编号"
)
private
String
shortOrderCode
;
private
String
shortOrderCode
;
@ApiModelProperty
(
value
=
"订单编号"
)
@ApiModelProperty
(
value
=
"订单编号"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/admin/GoblinNftOrderRefundListParam.java
View file @
b7ec05e7
...
@@ -21,6 +21,8 @@ public class GoblinNftOrderRefundListParam {
...
@@ -21,6 +21,8 @@ public class GoblinNftOrderRefundListParam {
@ApiModelProperty
(
value
=
"藏品名称"
)
@ApiModelProperty
(
value
=
"藏品名称"
)
private
String
name
;
private
String
name
;
@ApiModelProperty
(
value
=
"用户ID"
)
private
String
userId
;
@ApiModelProperty
(
value
=
"短订单编号"
)
@ApiModelProperty
(
value
=
"短订单编号"
)
private
String
shortOrderCode
;
private
String
shortOrderCode
;
@ApiModelProperty
(
value
=
"订单编号"
)
@ApiModelProperty
(
value
=
"订单编号"
)
...
...
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/resources/com.liquidnet.service.goblin.mapper/GoblinNftOrderMapper.xml
View file @
b7ec05e7
...
@@ -14,6 +14,9 @@
...
@@ -14,6 +14,9 @@
<if
test=
"name!=''"
>
<if
test=
"name!=''"
>
and b.name like concat('%', #{name}, '%')
and b.name like concat('%', #{name}, '%')
</if>
</if>
<if
test=
"userId!=''"
>
and a.user_id = #{userId}
</if>
<if
test=
"shortOrderCode!=''"
>
<if
test=
"shortOrderCode!=''"
>
and a.order_code like concat('%', #{shortOrderCode}, '%')
and a.order_code like concat('%', #{shortOrderCode}, '%')
</if>
</if>
...
@@ -41,6 +44,7 @@
...
@@ -41,6 +44,7 @@
and a.pay_time
<![CDATA[<=]]>
#{payTimeEnd}
and a.pay_time
<![CDATA[<=]]>
#{payTimeEnd}
</if>
</if>
</where>
</where>
group by a.order_id
order by a.created_at desc
order by a.created_at desc
</select>
</select>
</mapper>
</mapper>
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/resources/com.liquidnet.service.goblin.mapper/GoblinNftOrderRefundMapper.xml
View file @
b7ec05e7
...
@@ -16,6 +16,9 @@
...
@@ -16,6 +16,9 @@
<if
test=
"name!=''"
>
<if
test=
"name!=''"
>
and b.name like concat('%', #{name}, '%')
and b.name like concat('%', #{name}, '%')
</if>
</if>
<if
test=
"userId!=''"
>
and a.user_id = #{userId}
</if>
<if
test=
"shortOrderCode!=''"
>
<if
test=
"shortOrderCode!=''"
>
and a.order_code like concat('%', #{shortOrderCode}, '%')
and a.order_code like concat('%', #{shortOrderCode}, '%')
</if>
</if>
...
@@ -35,6 +38,7 @@
...
@@ -35,6 +38,7 @@
and d.status = #{status}
and d.status = #{status}
</if>
</if>
</where>
</where>
group by a.order_id
order by d.created_at desc
order by d.created_at desc
</select>
</select>
</mapper>
</mapper>
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