Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-health-science
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
徐俊
yn-health-science
Commits
378e256e
Commit
378e256e
authored
Jul 09, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
46065879
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
27 additions
and
5 deletions
+27
-5
ComPerson.java
...n/src/main/java/com/yiboshi/science/entity/ComPerson.java
+4
-0
ComPersonDTO.java
...main/java/com/yiboshi/science/param/dto/ComPersonDTO.java
+7
-0
ComTalentApplyDTO.java
...java/com/yiboshi/science/param/dto/ComTalentApplyDTO.java
+7
-0
ComPersonQueryVO.java
...ava/com/yiboshi/science/param/query/ComPersonQueryVO.java
+4
-0
ComTalentApplyServiceImpl.java
...boshi/science/service/impl/ComTalentApplyServiceImpl.java
+2
-2
SystemParameterServiceImpl.java
...oshi/science/service/impl/SystemParameterServiceImpl.java
+3
-3
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComPerson.java
View file @
378e256e
...
...
@@ -92,6 +92,10 @@ public class ComPerson extends BaseEntity {
@ApiModelProperty
(
value
=
"专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"专业不能大于36"
)
private
String
spec
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"现从事专业不能大于36"
)
private
String
profession
;
/** 邮箱 */
@ApiModelProperty
(
value
=
"邮箱"
,
position
=
12
)
@Length
(
max
=
100
,
message
=
"邮箱不能大于100"
)
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComPersonDTO.java
View file @
378e256e
...
...
@@ -74,6 +74,10 @@ public class ComPersonDTO extends BaseDTO {
/** 专业 */
@ApiModelProperty
(
value
=
"专业"
,
position
=
14
)
private
String
spec
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"现从事专业不能大于36"
)
private
String
profession
;
/** 邮箱 */
@ApiModelProperty
(
value
=
"邮箱"
,
position
=
15
)
private
String
email
;
...
...
@@ -187,6 +191,9 @@ public class ComPersonDTO extends BaseDTO {
/** 专业 */
@ApiModelProperty
(
value
=
"专业"
,
position
=
40
)
private
String
specName
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
40
)
private
String
professionName
;
/** 验证码 */
@ApiModelProperty
(
value
=
"验证码"
,
position
=
42
)
...
...
science-admin/src/main/java/com/yiboshi/science/param/dto/ComTalentApplyDTO.java
View file @
378e256e
...
...
@@ -182,6 +182,13 @@ public class ComTalentApplyDTO extends BaseDTO {
/** 专业名称 */
@ApiModelProperty
(
value
=
"专业名称"
,
position
=
14
)
private
String
specName
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"现从事专业不能大于36"
)
private
String
profession
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
40
)
private
String
professionName
;
/** 二级学科名称 */
@ApiModelProperty
(
value
=
"二级学科名称"
,
position
=
14
)
private
String
parentName
;
...
...
science-admin/src/main/java/com/yiboshi/science/param/query/ComPersonQueryVO.java
View file @
378e256e
...
...
@@ -61,6 +61,10 @@ public class ComPersonQueryVO extends PaginationVO {
/** 专业 */
@ApiModelProperty
(
value
=
"专业"
,
position
=
14
)
private
String
spec
;
/** 现从事专业 */
@ApiModelProperty
(
value
=
"现从事专业"
,
position
=
11
)
@Length
(
max
=
36
,
message
=
"现从事专业不能大于36"
)
private
String
profession
;
/** 邮箱 */
@ApiModelProperty
(
value
=
"邮箱"
,
position
=
15
)
private
String
email
;
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComTalentApplyServiceImpl.java
View file @
378e256e
...
...
@@ -231,7 +231,7 @@ public class ComTalentApplyServiceImpl extends BaseServiceImpl<ComTalentApplyDAO
dto
.
setPersonId
(
comPersonDTO
.
getId
());
dto
.
setCertId
(
comPersonDTO
.
getCertId
());
dto
.
setPersonName
(
comPersonDTO
.
getPersonName
());
dto
.
set
Sex
(
comPersonDTO
.
getSex
());
dto
.
set
Profession
(
comPersonDTO
.
getProfession
());
dto
.
setNation
(
comPersonDTO
.
getNation
());
dto
.
setBirthday
(
comPersonDTO
.
getBirthday
());
dto
.
setDegree
(
comPersonDTO
.
getDegree
());
...
...
@@ -320,7 +320,7 @@ public class ComTalentApplyServiceImpl extends BaseServiceImpl<ComTalentApplyDAO
//dto.setDegreeName(comPersonDTO.getDegreeName());
dto
.
setTitle
(
comPersonDTO
.
getTitle
());
dto
.
setDuty
(
comPersonDTO
.
getDuty
());
dto
.
set
Spec
(
comPersonDTO
.
getSpec
());
dto
.
set
Profession
(
comPersonDTO
.
getProfession
());
dto
.
setMobile
(
comPersonDTO
.
getMobile
());
dto
.
setFax
(
comPersonDTO
.
getFax
());
dto
.
setEmail
(
comPersonDTO
.
getEmail
());
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/SystemParameterServiceImpl.java
View file @
378e256e
...
...
@@ -444,12 +444,12 @@ public class SystemParameterServiceImpl extends BaseServiceImpl<SystemParameterD
public
List
<
SpecDTO
>
getParameterArray
(
Integer
typeId
)
{
List
<
SpecDTO
>
list
=
null
;
Object
obj
=
redisUtils
.
get
(
RedisKey
.
SpecArrayList
);
Object
obj
=
redisUtils
.
get
(
RedisKey
.
SpecArrayList
+
typeId
);
if
(
null
!=
obj
)
list
=
(
List
<
SpecDTO
>)
redisUtils
.
get
(
RedisKey
.
SpecArrayList
);
list
=
(
List
<
SpecDTO
>)
redisUtils
.
get
(
RedisKey
.
SpecArrayList
+
typeId
);
if
(
null
==
list
||
list
.
size
()
==
0
)
{
list
=
systemParameterDAO
.
getParameterArray
(
typeId
);
redisUtils
.
set
(
RedisKey
.
SpecArrayList
,
list
,
7
,
TimeUnit
.
DAYS
);
redisUtils
.
set
(
RedisKey
.
SpecArrayList
+
typeId
,
list
,
7
,
TimeUnit
.
DAYS
);
}
return
list
;
}
...
...
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