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
4dee272f
Commit
4dee272f
authored
Jun 30, 2022
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huyc 项目档案代码提交
parent
827b9246
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
TElecEmployeeInfoController.java
...yifu/archives/controller/TElecEmployeeInfoController.java
+1
-1
TEmployeeProjectController.java
.../yifu/archives/controller/TEmployeeProjectController.java
+3
-3
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TElecEmployeeInfoController.java
View file @
4dee272f
...
@@ -120,7 +120,7 @@ public class TElecEmployeeInfoController {
...
@@ -120,7 +120,7 @@ public class TElecEmployeeInfoController {
@SysLog
(
"通过身份证号查询人员档案"
)
@SysLog
(
"通过身份证号查询人员档案"
)
@PostMapping
(
"/getEmpInfo"
)
@PostMapping
(
"/getEmpInfo"
)
public
R
getEmpInfoByCard
(
@RequestParam
String
idCard
)
{
public
R
getEmpInfoByCard
(
@RequestParam
String
idCard
)
{
return
R
.
ok
(
tElecEmployeeInfoService
.
getEmpInfoByCard
(
idCard
)
);
return
tElecEmployeeInfoService
.
getEmpInfoByCard
(
idCard
);
}
}
/**
/**
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TEmployeeProjectController.java
View file @
4dee272f
...
@@ -143,7 +143,7 @@ public class TEmployeeProjectController {
...
@@ -143,7 +143,7 @@ public class TEmployeeProjectController {
@PostMapping
(
"/check"
)
@PostMapping
(
"/check"
)
@PreAuthorize
(
"@pms.hasPermission('archives_temployeeproject_add')"
)
@PreAuthorize
(
"@pms.hasPermission('archives_temployeeproject_add')"
)
public
R
addCheck
(
@RequestBody
TEmployeeProject
tEmployeeProject
)
{
public
R
addCheck
(
@RequestBody
TEmployeeProject
tEmployeeProject
)
{
return
R
.
ok
(
tEmployeeProjectService
.
addCheck
(
tEmployeeProject
)
);
return
tEmployeeProjectService
.
addCheck
(
tEmployeeProject
);
}
}
/**
/**
...
@@ -158,7 +158,7 @@ public class TEmployeeProjectController {
...
@@ -158,7 +158,7 @@ public class TEmployeeProjectController {
@PostMapping
(
"/reEmpInfo"
)
@PostMapping
(
"/reEmpInfo"
)
@PreAuthorize
(
"@pms.hasPermission('archives_temployeeproject_reempinfo')"
)
@PreAuthorize
(
"@pms.hasPermission('archives_temployeeproject_reempinfo')"
)
public
R
reEmpInfo
(
@RequestBody
JSONObject
jsonObject
)
{
public
R
reEmpInfo
(
@RequestBody
JSONObject
jsonObject
)
{
return
R
.
ok
(
tEmployeeProjectService
.
reEmpInfo
(
jsonObject
)
);
return
tEmployeeProjectService
.
reEmpInfo
(
jsonObject
);
}
}
/**
/**
...
@@ -172,7 +172,7 @@ public class TEmployeeProjectController {
...
@@ -172,7 +172,7 @@ public class TEmployeeProjectController {
@PostMapping
(
"/deleteEmpPro"
)
@PostMapping
(
"/deleteEmpPro"
)
@PreAuthorize
(
"@pms.hasPermission('archives_temployeeproject_delempproinfo')"
)
@PreAuthorize
(
"@pms.hasPermission('archives_temployeeproject_delempproinfo')"
)
public
R
deleteEmpPro
(
@RequestBody
TEmployeeProject
tEmployeeProject
)
{
public
R
deleteEmpPro
(
@RequestBody
TEmployeeProject
tEmployeeProject
)
{
return
R
.
ok
(
tEmployeeProjectService
.
deleteEmpPro
(
tEmployeeProject
)
);
return
tEmployeeProjectService
.
deleteEmpPro
(
tEmployeeProject
);
}
}
/**
/**
...
...
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