Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
V
volunteer_service
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
licc
volunteer_service
Commits
eaa80e1f
Commit
eaa80e1f
authored
May 19, 2021
by
cy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vip方案查询修改参数类型
parent
ef8e213d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
SchemeServiceImpl.java
...java/cn/wisenergy/service/app/impl/SchemeServiceImpl.java
+6
-6
No files found.
wisenergy-service/src/main/java/cn/wisenergy/service/app/impl/SchemeServiceImpl.java
View file @
eaa80e1f
...
...
@@ -383,8 +383,8 @@ public class SchemeServiceImpl extends ServiceImpl<SchemeMapper, SchemeInfo> imp
}
//综合成绩区间
Integer
totalMax
=
schemeVo
.
getTotalMax
();
Integer
totalMin
=
schemeVo
.
getTotalMin
();
double
totalMax
=
schemeVo
.
getTotalMax
();
double
totalMin
=
schemeVo
.
getTotalMin
();
//地区
List
<
String
>
locals
=
StringUtil
.
strToArrayStr
(
schemeVo
.
getLocal
());
...
...
@@ -569,7 +569,7 @@ public class SchemeServiceImpl extends ServiceImpl<SchemeMapper, SchemeInfo> imp
* @param professionNames 专业名称
* @return vip文化生志愿列表
*/
private
List
<
Volunteer
>
getCultureVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
Integer
totalMax
,
Integer
totalMin
,
private
List
<
Volunteer
>
getCultureVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
totalMax
,
double
totalMin
,
List
<
String
>
locals
,
List
<
String
>
professionNames
,
List
<
String
>
classNames
,
String
gradeType
)
{
double
cultureMax
=
firstRule
.
getCultureMax
();
double
cultureMin
=
firstRule
.
getCultureMin
();
...
...
@@ -604,7 +604,7 @@ public class SchemeServiceImpl extends ServiceImpl<SchemeMapper, SchemeInfo> imp
* @param professionNames 专业名称
* @return 志愿方案列表
*/
private
List
<
Volunteer
>
getArtsVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
majorGrade
,
Integer
totalMax
,
Integer
totalMin
,
List
<
String
>
locals
,
private
List
<
Volunteer
>
getArtsVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
majorGrade
,
double
totalMax
,
double
totalMin
,
List
<
String
>
locals
,
List
<
String
>
professionNames
,
List
<
String
>
classNames
,
String
gradeType
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>(
16
);
map
.
put
(
"professionNames"
,
professionNames
);
...
...
@@ -636,7 +636,7 @@ public class SchemeServiceImpl extends ServiceImpl<SchemeMapper, SchemeInfo> imp
* @param professionNames 专业名称
* @return 志愿方案列表
*/
private
List
<
Volunteer
>
getLiteratureVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
majorGrade
,
Integer
totalMax
,
Integer
totalMin
,
List
<
String
>
locals
,
private
List
<
Volunteer
>
getLiteratureVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
majorGrade
,
double
totalMax
,
double
totalMin
,
List
<
String
>
locals
,
List
<
String
>
professionNames
,
List
<
String
>
classNames
,
String
gradeType
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>(
16
);
map
.
put
(
"professionNames"
,
professionNames
);
...
...
@@ -671,7 +671,7 @@ public class SchemeServiceImpl extends ServiceImpl<SchemeMapper, SchemeInfo> imp
* @param professionNames 专业名称
* @return 志愿方案列表
*/
private
List
<
Volunteer
>
getSportsVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
majorGrade
,
Integer
totalMax
,
Integer
totalMin
,
List
<
String
>
locals
,
private
List
<
Volunteer
>
getSportsVipList
(
AdmissionRule
firstRule
,
double
cultureGrade
,
double
majorGrade
,
double
totalMax
,
double
totalMin
,
List
<
String
>
locals
,
List
<
String
>
professionNames
,
List
<
String
>
classNames
,
String
gradeType
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>(
16
);
map
.
put
(
"professionNames"
,
professionNames
);
...
...
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