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
2df27667
Commit
2df27667
authored
Jun 03, 2020
by
yao.xiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改-经纪人-查看自己销售活动量分值详情增加分值出参
parent
8f018c1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
+4
-1
yd-api/src/main/java/com/yd/api/practitioner/vo/opportunity/SalesScoreDetail.java
+1
-0
yd-api/src/main/resources/mapper/marketing/MktLeadsAssignedTrackMapper.xml
+3
-1
No files found.
yd-api/src/main/java/com/yd/api/practitioner/vo/opportunity/SalesScoreDetail.java
View file @
2df27667
...
...
@@ -8,4 +8,5 @@ public class SalesScoreDetail {
private
Long
dropOptionsId
;
private
String
dropOptionsName
;
private
Long
number
;
private
Long
score
;
}
yd-api/src/main/resources/mapper/marketing/MktLeadsAssignedTrackMapper.xml
View file @
2df27667
...
...
@@ -346,11 +346,13 @@
<id
column=
"dropOptionsId"
jdbcType=
"BIGINT"
property=
"dropOptionsId"
/>
<result
column=
"dropOptionsName"
jdbcType=
"BIGINT"
property=
"dropOptionsName"
/>
<result
column=
"number"
jdbcType=
"BIGINT"
property=
"number"
/>
<result
column=
"score"
jdbcType=
"BIGINT"
property=
"score"
/>
</resultMap>
<select
id=
"getSalesScoreDetailByPractitionerId"
resultMap=
"SalesScoreDetailMap"
>
select o.id dropOptionsId,
o.drop_option_name dropOptionsName,
count(t.id) number
count(t.id) number ,
o.drop_option_score score
from ag_mkt_leads_assigned_track t
left join ag_md_drop_options o on o.id = t.md_drop_option_id
where t.practitioner_id = #{practitionerId,jdbcType=BIGINT}
...
...
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