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
41ab3486
Commit
41ab3486
authored
Apr 28, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.10-根据户名与户类型,返回户信息
parent
e5a5fa15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
1 deletion
+30
-1
FileUploadController.java
.../plus/v1/yifu/social/controller/FileUploadController.java
+28
-0
TDispatchInfoController.java
...us/v1/yifu/social/controller/TDispatchInfoController.java
+2
-1
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/controller/FileUploadController.java
View file @
41ab3486
...
...
@@ -161,4 +161,32 @@ public class FileUploadController {
}
return
R
.
ok
(
voList
);
}
/**
* @param domainId 关联id
* @param type 类型
* @Description: 获取社保服务的附件信息
* @Author: hgw
* @Date: 2025/4/28 14:12
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.util.List < com.yifu.cloud.plus.v1.yifu.salary.vo.SalaryAttaVo>>
**/
@Operation
(
summary
=
"获取社保服务的附件信息"
,
description
=
"获取社保服务的附件信息"
)
@SysLog
(
"获取社保服务的附件信息"
)
@GetMapping
(
"/getAttaListByIdAndType"
)
public
R
<
List
<
TAttaInfo
>>
getAttaListByIdAndType
(
@RequestParam
String
domainId
,
@RequestParam
String
type
)
{
List
<
TAttaInfo
>
attaList
=
tAttaInfoService
.
list
(
Wrappers
.<
TAttaInfo
>
query
().
lambda
()
.
eq
(
TAttaInfo:
:
getRelationType
,
type
)
.
eq
(
TAttaInfo:
:
getDomainId
,
domainId
));
if
(
attaList
!=
null
&&
!
attaList
.
isEmpty
())
{
URL
url
;
for
(
TAttaInfo
a
:
attaList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
a
.
getAttaSrc
());
if
(
url
!=
null
)
{
a
.
setAttaUrl
(
url
.
toString
());
}
}
}
return
R
.
ok
(
attaList
);
}
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/controller/TDispatchInfoController.java
View file @
41ab3486
...
...
@@ -514,7 +514,8 @@ public class TDispatchInfoController {
public
R
<
List
<
ErrorMessage
>>
addApplyAudit
(
@RequestBody
List
<
String
>
idList
,
@RequestParam
(
name
=
"auditStatus"
,
required
=
true
)
String
auditStatus
,
@RequestParam
(
name
=
"auditRemark"
,
required
=
false
)
String
auditRemark
,
@RequestParam
(
name
=
"remark"
,
required
=
false
)
String
remark
)
{
@RequestParam
(
name
=
"remark"
,
required
=
false
)
String
remark
,
@RequestParam
(
name
=
"isSingleAudit"
,
required
=
false
)
String
isSingleAudit
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
Common
.
isEmpty
(
user
)){
return
R
.
failed
(
CommonConstants
.
USER_FAIL
);
...
...
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