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
1339f2c5
Commit
1339f2c5
authored
Apr 14, 2022
by
284718418@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
招聘管理
parent
6422bffd
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
71 additions
and
3 deletions
+71
-3
src/main/java/cn/timer/api/bean/zpgl/ZpglRcxx.java
+15
-0
src/main/java/cn/timer/api/controller/zpgl/ZpglH5Controller.java
+7
-0
src/main/java/cn/timer/api/controller/zpgl/sevice/ZpglSendMessageThread.java
+2
-2
src/main/java/cn/timer/api/controller/zpgl/sevice/ZpglServiceImpl.java
+1
-0
src/main/java/cn/timer/api/dto/zpgl/InterviewApplicationDto.java
+25
-0
src/main/java/cn/timer/api/utils/DateFormatUtils.java
+19
-1
src/main/resources/mapping/zpgl/ZpglRcxxMapper.xml
+2
-0
No files found.
src/main/java/cn/timer/api/bean/zpgl/ZpglRcxx.java
View file @
1339f2c5
...
...
@@ -257,6 +257,21 @@ public class ZpglRcxx extends Model<ZpglRcxx> {
*/
@ApiModelProperty
(
value
=
"最近工作单位"
)
private
String
company
;
/**
* 最近职位
*/
@ApiModelProperty
(
value
=
"最近职位"
)
private
String
zjzw
;
/**
* 参加工作时间
*/
@ApiModelProperty
(
value
=
"参加工作时间"
)
private
Date
workBeginYear
;
/**
* 标签
*/
...
...
src/main/java/cn/timer/api/controller/zpgl/ZpglH5Controller.java
View file @
1339f2c5
...
...
@@ -4,6 +4,7 @@ import cn.timer.api.aspect.lang.annotation.Log;
import
cn.timer.api.aspect.lang.enums.BusinessType
;
import
cn.timer.api.bean.zpgl.*
;
import
cn.timer.api.dto.zpgl.InterviewApplicationDto
;
import
cn.timer.api.utils.DateFormatUtils
;
import
cn.timer.api.utils.Result
;
import
cn.timer.api.utils.ResultUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
...
...
@@ -11,10 +12,12 @@ import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.util.StringUtils
;
import
org.springframework.validation.annotation.Validated
;
import
org.springframework.web.bind.annotation.*
;
import
javax.transaction.Transactional
;
import
java.util.Date
;
import
java.util.List
;
@Api
(
tags
=
"招聘管理"
)
...
...
@@ -36,6 +39,10 @@ public class ZpglH5Controller {
ZpglRcxx
zpglRcxx
=
new
ZpglRcxx
();
//复制到 ZpglRcxx 实体对象
BeanUtils
.
copyProperties
(
dto
,
zpglRcxx
);
// 计算工作年限
if
(!
StringUtils
.
isEmpty
(
zpglRcxx
.
getWorkBeginYear
())){
zpglRcxx
.
setWorkyears
(
DateFormatUtils
.
yearCompare
(
zpglRcxx
.
getWorkBeginYear
(),
new
Date
()));
}
zpglRcxx
.
insertOrUpdate
();
//添加紧急联系人
...
...
src/main/java/cn/timer/api/controller/zpgl/sevice/ZpglSendMessageThread.java
View file @
1339f2c5
...
...
@@ -34,8 +34,8 @@ public class ZpglSendMessageThread implements Runnable {
zpglRcxxOffer
.
getGangwei
(),
DateFormatUtils
.
tranDate
(
zpglRcxxOffer
.
getRzTime
(),
DateFormatUtils
.
YYYYMMDD
),
zpglRcxxOffer
.
getLinkName
(),
StringUtils
.
isEmpty
(
zpglRcxxOffer
.
getLink
Email
())
?
""
:
zpglRcxxOffer
.
getLinkEmail
(),
StringUtils
.
isEmpty
(
zpglRcxxOffer
.
getLink
Phone
())
?
""
:
zpglRcxxOffer
.
getLinkPhone
()}),
StringUtils
.
isEmpty
(
zpglRcxxOffer
.
getLink
Phone
())
?
""
:
zpglRcxxOffer
.
getLinkPhone
(),
StringUtils
.
isEmpty
(
zpglRcxxOffer
.
getLink
Email
())
?
""
:
zpglRcxxOffer
.
getLinkEmail
()}),
zpglRcxxOffer
.
getTitle
(),
new
String
[]{
zpglRcxxOffer
.
getReceiverEmail
()});
SendMessage
sendMessage
=
SendMessage
.
builder
().
build
();
...
...
src/main/java/cn/timer/api/controller/zpgl/sevice/ZpglServiceImpl.java
View file @
1339f2c5
...
...
@@ -131,6 +131,7 @@ public class ZpglServiceImpl implements ZpglService {
userBean
.
getQyzxEmpLogin
().
getUsername
()});
//发送offer
ZpglRcxxOffer
zpglRcxxOffer
=
this
.
insertZpglRcxxOffer
(
userBean
,
zpglRcxxDto
);
zpglRcxxOffer
.
setReceiverEmail
(
zpglRcxxEntity
.
getMail
());
Thread
pthread
=
new
Thread
(
new
ZpglSendMessageThread
(
mailSender
,
zpglRcxxOffer
));
pthread
.
start
();
break
;
...
...
src/main/java/cn/timer/api/dto/zpgl/InterviewApplicationDto.java
View file @
1339f2c5
...
...
@@ -16,6 +16,7 @@ import javax.persistence.GeneratedValue;
import
javax.persistence.Id
;
import
javax.validation.constraints.NotEmpty
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.List
;
@Data
...
...
@@ -178,6 +179,30 @@ public class InterviewApplicationDto implements Serializable {
private
String
medicalDetail
;
/**
* 最近工作单位
*/
@ApiModelProperty
(
value
=
"最近工作单位"
)
private
String
company
;
/**
* 毕业院校
*/
@ApiModelProperty
(
value
=
"毕业院校"
)
private
String
universitie
;
/**
* 最近职位
*/
@ApiModelProperty
(
value
=
"最近职位"
)
private
String
zjzw
;
/**
* 参加工作时间
*/
@ApiModelProperty
(
value
=
"参加工作时间"
)
private
Date
workBeginYear
;
/**
* 待遇要求(税前)单位元/月
*/
@ApiModelProperty
(
value
=
"待遇要求(税前)单位元/月"
)
...
...
src/main/java/cn/timer/api/utils/DateFormatUtils.java
View file @
1339f2c5
...
...
@@ -512,8 +512,25 @@ public class DateFormatUtils {
return
resultString
.
toString
();
}
/**
* 计算2个日期之间相差的 年
* @param fromDate
* @param toDate
* @return
*/
public
static
int
yearCompare
(
Date
fromDate
,
Date
toDate
){
Calendar
from
=
Calendar
.
getInstance
();
from
.
setTime
(
fromDate
);
Calendar
to
=
Calendar
.
getInstance
();
to
.
setTime
(
toDate
);
int
fromYear
=
from
.
get
(
Calendar
.
YEAR
);
int
toYear
=
to
.
get
(
Calendar
.
YEAR
);
int
year
=
toYear
-
fromYear
;
return
year
;
}
public
static
void
main
(
String
[]
args
)
throws
ParseException
{
System
.
out
.
println
(
tranDate
(
new
Date
(),
YYYYMMDD
));
System
.
out
.
println
(
yearCompare
(
getDateByString
(
"2000-1-1 00:00:00"
),
new
Date
()
));
}
}
\ No newline at end of file
src/main/resources/mapping/zpgl/ZpglRcxxMapper.xml
View file @
1339f2c5
...
...
@@ -49,6 +49,8 @@
<result
property=
"highesteducation"
column=
"highesteducation"
/>
<result
property=
"universitie"
column=
"universitie"
/>
<result
property=
"company"
column=
"company"
/>
<result
property=
"zjzw"
column=
"zjzw"
/>
<result
property=
"workBeginYear"
column=
"work_begin_year"
/>
<result
property=
"label"
column=
"label"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"zpglFailId"
column=
"zpgl_fail_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