Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
b55cba1f
Commit
b55cba1f
authored
Jun 18, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
离职继承查询
parent
0a015e2b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
HandoverExternalMapper.java
...ban/manage/service/dao/mapper/HandoverExternalMapper.java
+2
-1
HandoverServiceImpl.java
...oban/manage/service/service/impl/HandoverServiceImpl.java
+6
-1
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/dao/mapper/HandoverExternalMapper.java
View file @
b55cba1f
...
@@ -78,5 +78,5 @@ public interface HandoverExternalMapper {
...
@@ -78,5 +78,5 @@ public interface HandoverExternalMapper {
*/
*/
List
<
HandoverStaffFriendCountDTO
>
listPreCountByStaffIds
(
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
,
@Param
(
"staffIds"
)
List
<
String
>
staffIds
);
List
<
HandoverStaffFriendCountDTO
>
listPreCountByStaffIds
(
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
,
@Param
(
"staffIds"
)
List
<
String
>
staffIds
);
List
<
HandoverExternalDTO
>
listAllByStaffIds
(
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
,
@Param
(
"staffIds"
)
List
<
String
>
staffIds
,
@Param
(
"search"
)
String
search
,
@Param
(
"status"
)
Integer
status
);
List
<
TabHandoverExternal
>
listAllByStaffIds
(
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
,
@Param
(
"staffIds"
)
List
<
String
>
staffIds
,
@Param
(
"search"
)
String
search
,
@Param
(
"status"
)
Integer
status
);
}
}
\ No newline at end of file
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/HandoverServiceImpl.java
View file @
b55cba1f
...
@@ -9,6 +9,7 @@ import java.util.Map;
...
@@ -9,6 +9,7 @@ import java.util.Map;
import
java.util.Set
;
import
java.util.Set
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
import
com.gic.commons.util.EntityUtil
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.slf4j.Logger
;
import
org.slf4j.Logger
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
@@ -245,9 +246,13 @@ public class HandoverServiceImpl implements HandoverService {
...
@@ -245,9 +246,13 @@ public class HandoverServiceImpl implements HandoverService {
@Override
@Override
public
List
<
HandoverExternalDTO
>
listAllByStaffIds
(
String
wxEnterpriseId
,
String
search
,
List
<
String
>
staffIds
)
{
public
List
<
HandoverExternalDTO
>
listAllByStaffIds
(
String
wxEnterpriseId
,
String
search
,
List
<
String
>
staffIds
)
{
List
<
HandoverExternalDTO
>
retList
=
handoverExternalMapper
.
listAllByStaffIds
(
wxEnterpriseId
,
staffIds
,
search
,
1
);
List
<
TabHandoverExternal
>
list
=
handoverExternalMapper
.
listAllByStaffIds
(
wxEnterpriseId
,
staffIds
,
search
,
1
);
if
(
null
!=
list
)
{
List
<
HandoverExternalDTO
>
retList
=
EntityUtil
.
changeEntityListByJSON
(
HandoverExternalDTO
.
class
,
list
)
;
return
retList
;
return
retList
;
}
}
return
new
ArrayList
<>()
;
}
@Override
@Override
public
List
<
TabHandoverExternal
>
listByIds
(
String
wxEnterpriseId
,
List
<
String
>
ids
)
{
public
List
<
TabHandoverExternal
>
listByIds
(
String
wxEnterpriseId
,
List
<
String
>
ids
)
{
...
...
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