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
f57eeae7
Commit
f57eeae7
authored
Sep 01, 2023
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
员工合同续签检查功能
parent
56221aab
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
375 additions
and
133 deletions
+375
-133
ArchivesConstants.java
...ud/plus/v1/yifu/archives/constants/ArchivesConstants.java
+5
-0
EmployeeContractCheckVO.java
...oud/plus/v1/yifu/archives/vo/EmployeeContractCheckVO.java
+43
-0
TEmpContractAlertController.java
...yifu/archives/controller/TEmpContractAlertController.java
+14
-1
TEmpContractAlertService.java
...us/v1/yifu/archives/service/TEmpContractAlertService.java
+2
-0
TEmpContractAlertServiceImpl.java
...u/archives/service/impl/TEmpContractAlertServiceImpl.java
+311
-132
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/constants/ArchivesConstants.java
View file @
f57eeae7
...
@@ -163,4 +163,9 @@ public class ArchivesConstants {
...
@@ -163,4 +163,9 @@ public class ArchivesConstants {
* 合同之前
* 合同之前
**/
**/
public
static
final
String
CONTRACT_CREATE_TYPE
=
"合同之后"
;
public
static
final
String
CONTRACT_CREATE_TYPE
=
"合同之后"
;
public
static
final
String
CONTRACT_CHECK_CONSTANTS_IDCARD_1
=
"身份证"
;
public
static
final
String
CONTRACT_CHECK_CONSTANTS_IDCARD_2
=
" | 身份证"
;
public
static
final
String
CONTRACT_CHECK_CONSTANTS_NO
=
"合同申请编号:"
;
}
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/EmployeeContractCheckVO.java
0 → 100644
View file @
f57eeae7
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
archives
.
vo
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.write.style.ColumnWidth
;
import
com.alibaba.excel.annotation.write.style.HeadFontStyle
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex
;
import
lombok.Data
;
import
java.io.Serializable
;
/**
* 人员档案表excel导出对应的实体
*
* @author hgw
* @date 2022-6-24 15:15:24
*/
@Data
@ColumnWidth
(
10
)
public
class
EmployeeContractCheckVO
extends
RowIndex
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ColumnWidth
(
20
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"身份证号"
)
private
String
empIdcard
;
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TEmpContractAlertController.java
View file @
f57eeae7
...
@@ -197,7 +197,7 @@ public class TEmpContractAlertController {
...
@@ -197,7 +197,7 @@ public class TEmpContractAlertController {
* 获取反馈日志详情
* 获取反馈日志详情
*
*
* @author wzb
* @author wzb
* @param
id
* @param
applyNo
* @return {@link R}
* @return {@link R}
*/
*/
@Operation
(
summary
=
"获取反馈日志详情"
,
description
=
"获取反馈日志详情"
)
@Operation
(
summary
=
"获取反馈日志详情"
,
description
=
"获取反馈日志详情"
)
...
@@ -223,4 +223,17 @@ public class TEmpContractAlertController {
...
@@ -223,4 +223,17 @@ public class TEmpContractAlertController {
}
}
/**
* 员工合同续签原因排查
*
* @author fxj
* @date 2023-09-01 17:31:05
**/
@SneakyThrows
@Operation
(
description
=
"员工合同续签原因排查"
)
@SysLog
(
"员工合同续签原因排查"
)
@PostMapping
(
"/importListAdd"
)
public
R
<
List
<
ErrorMessage
>>
importListAdd
(
@RequestBody
MultipartFile
file
)
{
return
tEmpContractAlertService
.
importDiy
(
file
.
getInputStream
());
}
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TEmpContractAlertService.java
View file @
f57eeae7
...
@@ -66,4 +66,6 @@ public interface TEmpContractAlertService extends IService<TEmpContractAlert> {
...
@@ -66,4 +66,6 @@ public interface TEmpContractAlertService extends IService<TEmpContractAlert> {
**/
**/
R
<
List
<
EmpContractAlertUpdateVO
>>
batchUpdate
(
InputStream
inputStream
);
R
<
List
<
EmpContractAlertUpdateVO
>>
batchUpdate
(
InputStream
inputStream
);
R
<
List
<
ErrorMessage
>>
importDiy
(
InputStream
inputStream
);
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TEmpContractAlertServiceImpl.java
View file @
f57eeae7
This diff is collapsed.
Click to expand it.
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