Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
094ba2bd
Commit
094ba2bd
authored
Jun 10, 2022
by
wenyang
Committed by
jianan
Jul 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
渠道规则开发3(发佣检核查询与导出、发佣关账查询与导出 增加渠道查询条件)
parent
0d281f9d
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
0 deletions
+51
-0
yd-api/src/main/java/com/yd/api/agms/vo/fortune/CommissionPayoutStatusQueryRequestVO.java
+25
-0
yd-api/src/main/java/com/yd/api/agms/vo/fortune/ExportFortunePayRequestVO.java
+19
-0
yd-api/src/main/java/com/yd/api/agms/vo/fortune/WithdrawQueryRequestVO.java
+3
-0
yd-api/src/main/java/com/yd/dal/entity/agms/fortune/WithdrawQueryInfo.java
+1
-0
yd-api/src/main/resources/mapper/agms/AgmsFortuneMapper.xml
+3
-0
No files found.
yd-api/src/main/java/com/yd/api/agms/vo/fortune/CommissionPayoutStatusQueryRequestVO.java
View file @
094ba2bd
...
...
@@ -67,6 +67,14 @@ public class CommissionPayoutStatusQueryRequestVO {
private
Long
s3Id
;
private
Long
s2Id
;
private
Long
s1Id
;
/**
* 渠道Id
*/
private
Long
channelId
;
/**
* 渠道类型: 对公:1; 对私:2
*/
private
String
channelType
;
private
PageInfo
<
CommissionPayoutStatus
>
page
;
...
...
@@ -212,5 +220,22 @@ public class CommissionPayoutStatusQueryRequestVO {
public
void
setCommissionTypeDropOptionCodeList
(
List
<
String
>
commissionTypeDropOptionCodeList
)
{
this
.
commissionTypeDropOptionCodeList
=
commissionTypeDropOptionCodeList
;
}
public
Long
getChannelId
()
{
return
channelId
;
}
public
void
setChannelId
(
Long
channelId
)
{
this
.
channelId
=
channelId
;
}
public
String
getChannelType
()
{
return
channelType
;
}
public
void
setChannelType
(
String
channelType
)
{
this
.
channelType
=
channelType
;
}
}
yd-api/src/main/java/com/yd/api/agms/vo/fortune/ExportFortunePayRequestVO.java
View file @
094ba2bd
...
...
@@ -45,6 +45,8 @@ public class ExportFortunePayRequestVO {
private
Long
s3Id
;
private
Long
s2Id
;
private
Long
s1Id
;
private
Long
channelId
;
private
String
channelType
;
/**
* 获取 预计发佣年月
...
...
@@ -205,4 +207,21 @@ public class ExportFortunePayRequestVO {
", commissionPayoutStatus="
+
commissionPayoutStatus
+
'}'
;
}
public
Long
getChannelId
()
{
return
channelId
;
}
public
void
setChannelId
(
Long
channelId
)
{
this
.
channelId
=
channelId
;
}
public
String
getChannelType
()
{
return
channelType
;
}
public
void
setChannelType
(
String
channelType
)
{
this
.
channelType
=
channelType
;
}
}
yd-api/src/main/java/com/yd/api/agms/vo/fortune/WithdrawQueryRequestVO.java
View file @
094ba2bd
...
...
@@ -48,4 +48,7 @@ public class WithdrawQueryRequestVO {
private
Long
s3Id
;
private
Long
s2Id
;
private
Long
s1Id
;
private
Long
channelId
;
private
String
channelType
;
}
yd-api/src/main/java/com/yd/dal/entity/agms/fortune/WithdrawQueryInfo.java
View file @
094ba2bd
...
...
@@ -44,6 +44,7 @@ public class WithdrawQueryInfo {
*/
List
<
Long
>
subsystemIdList
;
private
Long
channelId
;
private
String
channelType
;
}
yd-api/src/main/resources/mapper/agms/AgmsFortuneMapper.xml
View file @
094ba2bd
...
...
@@ -310,6 +310,9 @@
left join ag_acl_channel_new cha ON cha.customer_id = f.customer_id
where
(setting.practitioner_type_id=28 or f.settlement_type='3')
<if
test=
"item.channelId != null"
>
and cha.id = #{item.channelId,jdbcType=BIGINT}
</if>
<if
test=
"item.channelType != null"
>
and f.channel_type = #{item.channelType,jdbcType=VARCHAR}
</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