记得上下班打卡 | 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
adc4d8d5
Commit
adc4d8d5
authored
Jun 04, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refundBatch
parent
3b5aca9e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
11 deletions
+2
-11
KylinOrderRefundsMapper.java
...quidnet/service/kylin/mapper/KylinOrderRefundsMapper.java
+0
-1
KylinOrderRefundsMapper.xml
...iquidnet.service.kylin.mapper/KylinOrderRefundsMapper.xml
+2
-10
No files found.
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/mapper/KylinOrderRefundsMapper.java
View file @
adc4d8d5
...
@@ -16,7 +16,6 @@ import java.util.Map;
...
@@ -16,7 +16,6 @@ import java.util.Map;
* @since 2021-05-26
* @since 2021-05-26
*/
*/
public
interface
KylinOrderRefundsMapper
extends
BaseMapper
<
KylinOrderRefunds
>
{
public
interface
KylinOrderRefundsMapper
extends
BaseMapper
<
KylinOrderRefunds
>
{
List
<
KylinOrderRefunds
>
getRefundList
(
Integer
whereType
,
String
refundBatchId
,
Integer
[]
whereStatus
,
int
mid
,
int
limitNum
);
List
<
KylinOrderRefunds
>
getRefundList
(
Integer
whereType
,
String
refundBatchId
,
Integer
[]
whereStatus
,
int
mid
,
int
limitNum
);
double
refundedTotalPrice
(
String
orderTicketsId
);
double
refundedTotalPrice
(
String
orderTicketsId
);
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinOrderRefundsMapper.xml
View file @
adc4d8d5
...
@@ -2,17 +2,9 @@
...
@@ -2,17 +2,9 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.liquidnet.service.kylin.mapper.KylinOrderRefundsMapper"
>
<mapper
namespace=
"com.liquidnet.service.kylin.mapper.KylinOrderRefundsMapper"
>
<select
id=
"getRefundList"
resultType=
"com.liquidnet.service.kylin.entity.KylinOrderRefunds"
>
<select
id=
"getRefundList"
parameterType=
"java.lang.String"
resultType=
"com.liquidnet.service.kylin.entity.KylinOrderRefunds"
>
SELECT refunds_id
SELECT
order_
refunds_id
FROM kylin_order_refunds
FROM kylin_order_refunds
<where>
-- r.performance_id=#{targetId}
AND type=#{whereType}
AND batch_id=#{refundBatchId}
AND o.mid>#{mid}
AND status IN #{whereStatus}
</where>
LIMIT #{limitNum}
</select>
</select>
<select
id=
"refundedTotalPrice"
resultType=
"java.lang.Double"
>
<select
id=
"refundedTotalPrice"
resultType=
"java.lang.Double"
>
SELECT SUM('price')
SELECT SUM('price')
...
...
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