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
c7458086
Commit
c7458086
authored
Jun 09, 2022
by
wenyang
Committed by
jianan
Jul 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
渠道规则开发1(发佣检核查询)
parent
6e3034cd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
0 deletions
+46
-0
yd-api/src/main/java/com/yd/api/agms/service/impl/AgmsFortuneServiceImpl.java
+1
-0
yd-api/src/main/java/com/yd/dal/entity/agms/fortune/CommissionPayoutStatus.java
+22
-0
yd-api/src/main/java/com/yd/dal/entity/agms/fortune/CommissionPayoutStatusQueryInfo.java
+23
-0
yd-api/src/main/resources/mapper/agms/AgmsFortuneMapper.xml
+0
-0
No files found.
yd-api/src/main/java/com/yd/api/agms/service/impl/AgmsFortuneServiceImpl.java
View file @
c7458086
...
@@ -957,6 +957,7 @@ public class AgmsFortuneServiceImpl implements AgmsFortuneService {
...
@@ -957,6 +957,7 @@ public class AgmsFortuneServiceImpl implements AgmsFortuneService {
practitionerSubordinateInfo
.
setDeptId
(
requestVO
.
getInsurerBranchDeptId
());
practitionerSubordinateInfo
.
setDeptId
(
requestVO
.
getInsurerBranchDeptId
());
List
<
Long
>
subsystemIdList
=
aclPractitionerSubordinateSystemDalService
.
getLongs
(
practitionerSubordinateInfo
);
List
<
Long
>
subsystemIdList
=
aclPractitionerSubordinateSystemDalService
.
getLongs
(
practitionerSubordinateInfo
);
info
.
setSubsystemIdList
(
subsystemIdList
);
info
.
setSubsystemIdList
(
subsystemIdList
);
info
.
setChannelType
(
"2"
);
//对私报表
List
<
CommissionPayoutStatus
>
commissionPayoutStatusList
=
agmsFortuneDalService
.
commissionPayoutStatusQuery
(
info
);
List
<
CommissionPayoutStatus
>
commissionPayoutStatusList
=
agmsFortuneDalService
.
commissionPayoutStatusQuery
(
info
);
...
...
yd-api/src/main/java/com/yd/dal/entity/agms/fortune/CommissionPayoutStatus.java
View file @
c7458086
...
@@ -104,6 +104,10 @@ public class CommissionPayoutStatus {
...
@@ -104,6 +104,10 @@ public class CommissionPayoutStatus {
private
String
monthPeriod
;
private
String
monthPeriod
;
private
String
remark
;
private
String
remark
;
/**
* 渠道类型: 对公:1; 对私:2或者空
*/
private
String
channelType
;
public
String
getCommissionPayoutYearmonth
()
{
public
String
getCommissionPayoutYearmonth
()
{
return
commissionPayoutYearmonth
;
return
commissionPayoutYearmonth
;
...
@@ -283,6 +287,7 @@ public class CommissionPayoutStatus {
...
@@ -283,6 +287,7 @@ public class CommissionPayoutStatus {
", commissionPayoutStatus='"
+
commissionPayoutStatus
+
'\''
+
", commissionPayoutStatus='"
+
commissionPayoutStatus
+
'\''
+
", monthPeriod='"
+
monthPeriod
+
'\''
+
", monthPeriod='"
+
monthPeriod
+
'\''
+
", remark='"
+
remark
+
'\''
+
", remark='"
+
remark
+
'\''
+
", channelType='"
+
channelType
+
'\''
+
'}'
;
'}'
;
}
}
@JsonFormat
(
pattern
=
"yyyy-MM"
,
timezone
=
"GMT+8"
)
@JsonFormat
(
pattern
=
"yyyy-MM"
,
timezone
=
"GMT+8"
)
...
@@ -301,4 +306,21 @@ public class CommissionPayoutStatus {
...
@@ -301,4 +306,21 @@ public class CommissionPayoutStatus {
public
void
setRemark
(
String
remark
)
{
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
this
.
remark
=
remark
;
}
}
/**
* 渠道类型: 对公:1; 对私:2或者空
* @return the channelType
*/
public
String
getChannelType
()
{
return
channelType
;
}
/**
* 渠道类型: 对公:1; 对私:2或者空
* @param channelType the channelType to set
*/
public
void
setChannelType
(
String
channelType
)
{
this
.
channelType
=
channelType
;
}
}
}
yd-api/src/main/java/com/yd/dal/entity/agms/fortune/CommissionPayoutStatusQueryInfo.java
View file @
c7458086
...
@@ -64,6 +64,12 @@ public class CommissionPayoutStatusQueryInfo {
...
@@ -64,6 +64,12 @@ public class CommissionPayoutStatusQueryInfo {
* 体系子集id
* 体系子集id
*/
*/
List
<
Long
>
subsystemIdList
;
List
<
Long
>
subsystemIdList
;
/**
* 渠道Id
*/
private
Long
channelId
;
private
String
channelType
;
//渠道类型: 对公:1; 对私:2或者空
private
PageInfo
<
CommissionPayoutStatus
>
page
;
private
PageInfo
<
CommissionPayoutStatus
>
page
;
...
@@ -184,4 +190,21 @@ public class CommissionPayoutStatusQueryInfo {
...
@@ -184,4 +190,21 @@ public class CommissionPayoutStatusQueryInfo {
public
void
setCommissionTypeDropOptionCodeList
(
List
<
String
>
commissionTypeDropOptionCodeList
)
{
public
void
setCommissionTypeDropOptionCodeList
(
List
<
String
>
commissionTypeDropOptionCodeList
)
{
this
.
commissionTypeDropOptionCodeList
=
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/resources/mapper/agms/AgmsFortuneMapper.xml
View file @
c7458086
This diff is collapsed.
Click to expand it.
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