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
644c487e
Commit
644c487e
authored
Feb 07, 2021
by
licc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改成绩相关
parent
407d8397
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 @
644c487e
...
...
@@ -616,27 +616,27 @@ public class SchemeServiceImpl extends ServiceImpl<SchemeMapper, SchemeInfo> imp
private
List
<
String
>
getClassName
(
ScoreInfo
scoreInfo
)
{
List
<
String
>
name
=
new
ArrayList
<>();
name
.
add
(
StudentClassEnum
.
UNLIMITED
.
getDesc
());
if
(
scoreInfo
.
getPhysicsGrade
()
>
0
)
{
if
(
scoreInfo
.
getPhysicsGrade
()
>
=
0
)
{
name
.
add
(
StudentClassEnum
.
PHYSICS_GRADE
.
getDesc
());
}
if
(
scoreInfo
.
getChemistryGrade
()
>
0
)
{
if
(
scoreInfo
.
getChemistryGrade
()
>
=
0
)
{
name
.
add
(
StudentClassEnum
.
CHEMISTRY_GRADE
.
getDesc
());
}
if
(
scoreInfo
.
getBiologyGrade
()
>
0
)
{
if
(
scoreInfo
.
getBiologyGrade
()
>
=
0
)
{
name
.
add
(
StudentClassEnum
.
BIOLOGY_GRADE
.
getDesc
());
}
if
(
scoreInfo
.
getHistoryGrade
()
>
0
)
{
if
(
scoreInfo
.
getHistoryGrade
()
>
=
0
)
{
name
.
add
(
StudentClassEnum
.
HISTORY_GRADE
.
getDesc
());
}
if
(
scoreInfo
.
getGeographyGrade
()
>
0
)
{
if
(
scoreInfo
.
getGeographyGrade
()
>
=
0
)
{
name
.
add
(
StudentClassEnum
.
GEOGRAPHY_GRADE
.
getDesc
());
}
if
(
scoreInfo
.
getPoliticsGrade
()
>
0
)
{
if
(
scoreInfo
.
getPoliticsGrade
()
>
=
0
)
{
name
.
add
(
StudentClassEnum
.
POLITICS_GRADE
.
getDesc
());
}
...
...
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