Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
8timerv2
8timerapiv200
Commits
5c04960e
Commit
5c04960e
authored
May 04, 2022
by
284718418@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.人事管理
parent
6a6abf74
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
4 deletions
+25
-4
src/main/java/cn/timer/api/bean/zpgl/ZpglRcxx.java
+7
-0
src/main/java/cn/timer/api/controller/zpgl/sevice/ZpglServiceImpl.java
+2
-0
src/main/java/cn/timer/api/dto/resumesdk/ReumeSdkResult.java
+2
-0
src/main/java/cn/timer/api/dto/yggl/AddygdaDto.java
+10
-4
src/main/java/cn/timer/api/dto/yggl/EmpQuery.java
+3
-0
src/main/resources/mapping/zpgl/ZpglRcxxMapper.xml
+1
-0
No files found.
src/main/java/cn/timer/api/bean/zpgl/ZpglRcxx.java
View file @
5c04960e
...
...
@@ -197,6 +197,13 @@ public class ZpglRcxx extends Model<ZpglRcxx> {
*/
@ApiModelProperty
(
value
=
"爱好特长"
)
private
String
hobby
;
/**
* 自我介绍
*/
@ApiModelProperty
(
value
=
"自我介绍"
)
private
String
contMyDesc
;
/**
* 受到奖励
*/
...
...
src/main/java/cn/timer/api/controller/zpgl/sevice/ZpglServiceImpl.java
View file @
5c04960e
...
...
@@ -575,6 +575,8 @@ public class ZpglServiceImpl implements ZpglService {
zpglRcxx
.
setCompany
(
reumeSdkResult
.
getWork_company
());
zpglRcxx
.
setZjzw
(
reumeSdkResult
.
getWork_position
());
zpglRcxx
.
setContMyDesc
(
reumeSdkResult
.
getCont_my_desc
());
zpglRcxx
.
setHobby
(
reumeSdkResult
.
getCont_hobby
());
zpglRcxx
.
insert
();
/** 基础信息结束 */
if
(!
StringUtils
.
isEmpty
(
zpglRcxx
.
getId
()))
{
...
...
src/main/java/cn/timer/api/dto/resumesdk/ReumeSdkResult.java
View file @
5c04960e
...
...
@@ -74,6 +74,8 @@ public class ReumeSdkResult implements Serializable {
private
Date
resume_parse_time
;
private
String
resume_name
;
private
String
avatar_data
;
private
String
cont_my_desc
;
private
String
cont_hobby
;
private
List
<
Education_objs
>
education_objs
;
private
List
<
Job_exp_objs
>
job_exp_objs
;
private
List
<
Proj_exp_objs
>
proj_exp_objs
;
...
...
src/main/java/cn/timer/api/dto/yggl/AddygdaDto.java
View file @
5c04960e
...
...
@@ -45,15 +45,15 @@ public class AddygdaDto extends Page implements Serializable{
@ApiModelProperty
(
value
=
"手机号"
,
example
=
"101"
)
private
String
phone
;
@NotNull
(
message
=
ValidationMsg
.
NOTNULL
)
/*@NotNull(message = ValidationMsg.NOTNULL)*/
@ApiModelProperty
(
value
=
"证件类型 0:身份证;1:港澳居民来往内地通行证;2:台湾居民来往大陆通行证;3:外国护照;4:其他"
,
example
=
"0"
)
private
Integer
zjType
;
@NotBlank
(
message
=
ValidationMsg
.
NOTBLANK
)
/*@NotBlank(message = ValidationMsg.NOTBLANK)*/
@ApiModelProperty
(
value
=
"证件号码 "
,
example
=
"证件号码"
)
private
String
zjNum
;
@NotNull
(
message
=
ValidationMsg
.
NOTNULL
)
/*@NotNull(message = ValidationMsg.NOTNULL)*/
@ApiModelProperty
(
value
=
"工作性质 0全职、1实习生、2兼职、3劳务派遣、4劳务、5派遣、6外包、7退休返聘"
,
example
=
"0"
)
private
Integer
jobType
;
...
...
@@ -62,7 +62,7 @@ public class AddygdaDto extends Page implements Serializable{
@ApiModelProperty
(
value
=
"入职日期 "
,
example
=
"客户注册后的时间为入职时间"
)
private
Date
rzTime
;
@NotNull
(
message
=
ValidationMsg
.
NOTNULL
)
/*@NotNull(message = ValidationMsg.NOTNULL)*/
@ApiModelProperty
(
value
=
"试用期 0:无试用期;1:1个月;2:2个月;3:3个月;4:4个月;5:5个月;6:6个月(有试用期显示选项)"
,
example
=
"0"
)
private
Integer
syq
;
...
...
@@ -78,6 +78,12 @@ public class AddygdaDto extends Page implements Serializable{
@ApiModelProperty
(
value
=
"考勤组id"
,
example
=
"0"
)
private
Integer
attgroupid
;
@ApiModelProperty
(
value
=
"对应合同公司字典ID"
,
example
=
"0"
)
private
Integer
zpglCompanyId
;
@ApiModelProperty
(
value
=
"对应工作地点典ID"
,
example
=
"0"
)
private
Integer
zpglGzddId
;
}
src/main/java/cn/timer/api/dto/yggl/EmpQuery.java
View file @
5c04960e
...
...
@@ -35,6 +35,9 @@ public class EmpQuery extends Page implements Serializable{
@ApiModelProperty
(
value
=
"员工id列表"
,
example
=
""
)
private
List
<
Integer
>
empNums
;
@ApiModelProperty
(
value
=
"类型筛选:1在职 2全职 3试用期 4正式 5待离职 6已离职"
,
example
=
"1"
)
private
Integer
status
;
}
src/main/resources/mapping/zpgl/ZpglRcxxMapper.xml
View file @
5c04960e
...
...
@@ -37,6 +37,7 @@
<result
property=
"workStatus"
column=
"work_status"
/>
<result
property=
"workTimer"
column=
"work_timer"
/>
<result
property=
"hobby"
column=
"hobby"
/>
<result
property=
"contMyDesc"
column=
"cont_my_desc"
/>
<result
property=
"reward"
column=
"reward"
/>
<result
property=
"record"
column=
"record"
/>
<result
property=
"zpglZpqdId"
column=
"zpgl_zpqd_id"
/>
...
...
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