Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
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
fangxinjiang
yifu-mvp
Commits
36540417
Commit
36540417
authored
Apr 15, 2026
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.22-优化
parent
a38d5ad4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
24 deletions
+30
-24
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+30
-24
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
36540417
...
...
@@ -4298,29 +4298,33 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
private
String
getHignEducationValue
(
String
educationName
)
{
String
educationNameValue
;
if
(
educationName
.
equals
(
"文盲"
))
{
educationNameValue
=
"1"
;
}
else
if
(
educationName
.
equals
(
"小学"
))
{
educationNameValue
=
"2"
;
}
else
if
(
educationName
.
equals
(
"初中"
))
{
educationNameValue
=
"3"
;
}
else
if
(
educationName
.
equals
(
"高中"
))
{
educationNameValue
=
"4"
;
}
else
if
(
educationName
.
equals
(
"大专"
))
{
educationNameValue
=
"5"
;
}
else
if
(
educationName
.
equals
(
"本科"
))
{
educationNameValue
=
"6"
;
}
else
if
(
educationName
.
equals
(
"硕士"
))
{
educationNameValue
=
"7"
;
}
else
if
(
educationName
.
equals
(
"博士"
))
{
educationNameValue
=
"8"
;
}
else
if
(
educationName
.
equals
(
"技工"
))
{
educationNameValue
=
"9"
;
}
else
if
(
educationName
.
equals
(
"职高"
))
{
educationNameValue
=
"10"
;
}
else
if
(
educationName
.
equals
(
"中专"
))
{
educationNameValue
=
"11"
;
}
else
{
if
(
Common
.
isNotNull
(
educationName
))
{
if
(
educationName
.
equals
(
"文盲"
))
{
educationNameValue
=
"1"
;
}
else
if
(
educationName
.
equals
(
"小学"
))
{
educationNameValue
=
"2"
;
}
else
if
(
educationName
.
equals
(
"初中"
))
{
educationNameValue
=
"3"
;
}
else
if
(
educationName
.
equals
(
"高中"
))
{
educationNameValue
=
"4"
;
}
else
if
(
educationName
.
equals
(
"大专"
))
{
educationNameValue
=
"5"
;
}
else
if
(
educationName
.
equals
(
"本科"
))
{
educationNameValue
=
"6"
;
}
else
if
(
educationName
.
equals
(
"硕士"
))
{
educationNameValue
=
"7"
;
}
else
if
(
educationName
.
equals
(
"博士"
))
{
educationNameValue
=
"8"
;
}
else
if
(
educationName
.
equals
(
"技工"
))
{
educationNameValue
=
"9"
;
}
else
if
(
educationName
.
equals
(
"职高"
))
{
educationNameValue
=
"10"
;
}
else
if
(
educationName
.
equals
(
"中专"
))
{
educationNameValue
=
"11"
;
}
else
{
educationNameValue
=
null
;
}
}
else
{
educationNameValue
=
null
;
}
return
educationNameValue
;
...
...
@@ -4329,7 +4333,9 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
// 获取是否大专及以上
private
Integer
getIsCollege
(
String
educationName
)
{
Integer
isCollegeValue
=
CommonConstants
.
ZERO_INT
;
if
(
educationName
.
equals
(
"大专"
)
||
educationName
.
equals
(
"本科"
)
||
educationName
.
equals
(
"硕士"
)
||
educationName
.
equals
(
"博士"
))
{
if
(
Common
.
isNotNull
(
educationName
)
&&
(
educationName
.
equals
(
"大专"
)
||
educationName
.
equals
(
"本科"
)
||
educationName
.
equals
(
"硕士"
)
||
educationName
.
equals
(
"博士"
)))
{
isCollegeValue
=
CommonConstants
.
ONE_INT
;
}
return
isCollegeValue
;
...
...
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