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
bdd698e2
Commit
bdd698e2
authored
Jun 19, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.12-保存
parent
8304be10
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
0 deletions
+35
-0
TGzEmpInfoController.java
...lus/v1/yifu/archives/controller/TGzEmpInfoController.java
+14
-0
TGzEmpInfoService.java
...loud/plus/v1/yifu/archives/service/TGzEmpInfoService.java
+8
-0
TGzEmpInfoServiceImpl.java
.../v1/yifu/archives/service/impl/TGzEmpInfoServiceImpl.java
+13
-0
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TGzEmpInfoController.java
View file @
bdd698e2
...
...
@@ -102,6 +102,20 @@ public class TGzEmpInfoController {
return
R
.
ok
(
tGzEmpInfoService
.
getById
(
id
));
}
/**
* @param tGzEmpInfo
* @Description: C端保存瓜子档案表
* @Author: hgw
* @Date: 2025/6/19 18:11
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.Boolean>
**/
@Operation
(
summary
=
"C端保存瓜子档案表"
,
description
=
"C端保存瓜子档案表"
)
@SysLog
(
"新增瓜子档案表"
)
@PostMapping
(
"/saveTGzEmpInfo"
)
public
R
<
Boolean
>
saveTGzEmpInfo
(
@RequestBody
TGzEmpInfoSearchVo
tGzEmpInfo
)
{
return
tGzEmpInfoService
.
saveTGzEmpInfo
(
tGzEmpInfo
);
}
/**
* 新增瓜子档案表
*
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TGzEmpInfoService.java
View file @
bdd698e2
...
...
@@ -55,4 +55,12 @@ public interface TGzEmpInfoService extends IService<TGzEmpInfo> {
* @return R
*/
R
<
TGzEmpInfoSearchVo
>
getInfoByOfferId
(
Integer
offerId
);
/**
* @Description: 保存瓜子档案表
* @Author: hgw
* @Date: 2025/6/19 18:13
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.Boolean>
**/
R
<
Boolean
>
saveTGzEmpInfo
(
TGzEmpInfoSearchVo
tGzEmpInfoVo
);
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TGzEmpInfoServiceImpl.java
View file @
bdd698e2
...
...
@@ -408,4 +408,17 @@ public class TGzEmpInfoServiceImpl extends ServiceImpl<TGzEmpInfoMapper, TGzEmpI
return
wrapper
;
}
/**
* @Description: 保存瓜子档案表
* @Author: hgw
* @Date: 2025/6/19 18:14
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.Boolean>
**/
@Override
public
R
<
Boolean
>
saveTGzEmpInfo
(
TGzEmpInfoSearchVo
tGzEmpInfoVo
)
{
// TODO 保存员工信息
return
R
.
ok
();
}
}
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