Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
涂亚平
/
laowu
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 9ede29d0
authored
Apr 23, 2023
by
涂亚平
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oss
1 parent
5f665695
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
28 deletions
logs/springboot-logback-info.log
logs/springboot-logback/info/2023-04-13-0.log.gz
src/main/java/com/laowu/service/impl/TeamDictServiceImpl.java
src/main/java/com/laowu/vo/team/MemberManagementVO.java
src/main/resources/mapper/MemberTeamMappingMapper.xml
src/main/resources/mapper/TeamDictMapper.xml
src/main/resources/mapper/WorkstationDictMapper.xml
logs/springboot-logback-info.log
View file @
9ede29d
This diff could not be displayed because it is too large.
logs/springboot-logback/info/2023-04-13-0.log.gz
0 → 100644
View file @
9ede29d
No preview for this file type
src/main/java/com/laowu/service/impl/TeamDictServiceImpl.java
View file @
9ede29d
...
...
@@ -48,6 +48,9 @@ public class TeamDictServiceImpl extends ServiceImpl<TeamDictMapper, TeamDictDO>
@Autowired
private
WorkstationAdministersMapper
workstationAdministersMapper
;
@Autowired
private
MemberPositionsMapper
memberPositionsMapper
;
public
IPage
<
TeamsVO
>
teams
(
TeamsDTO
teamsDTO
)
{
Page
pager
=
new
Page
(
teamsDTO
.
getPageNum
(),
teamsDTO
.
getPageSize
());
return
this
.
baseMapper
.
teams
(
pager
,
teamsDTO
.
getStationId
(),
teamsDTO
.
getTeamName
(),
teamsDTO
.
getProvince
());
...
...
@@ -314,6 +317,9 @@ public class TeamDictServiceImpl extends ServiceImpl<TeamDictMapper, TeamDictDO>
memberManagementVO
.
setCompanyCounty
(
recentJobInfoVO
.
getCounty
());
memberManagementVO
.
setCompanyAddress
(
recentJobInfoVO
.
getAddress
());
}
//技能
List
<
PositionDictDO
>
positionDictDOS
=
memberPositionsMapper
.
memberPositions
(
memberManagementVO
.
getId
());
memberManagementVO
.
setPositionDictDOList
(
positionDictDOS
);
}
return
memberManagementVOIPage
;
}
...
...
src/main/java/com/laowu/vo/team/MemberManagementVO.java
View file @
9ede29d
package
com
.
laowu
.
vo
.
team
;
import
com.laowu.model.PositionDictDO
;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
MemberManagementVO
{
...
...
@@ -21,6 +24,8 @@ public class MemberManagementVO {
private
String
city
;
private
String
county
;
private
String
address
;
private
String
startDate
;
...
...
@@ -47,5 +52,6 @@ public class MemberManagementVO {
private
String
companyAddress
;
private
List
<
PositionDictDO
>
positionDictDOList
;
}
src/main/resources/mapper/MemberTeamMappingMapper.xml
View file @
9ede29d
...
...
@@ -39,13 +39,15 @@
member_dict t1
WHERE
t1.delete_date IS NULL
AND t1.id NOT
IN (
AND t1.id
IN (
SELECT
t
2
.member_id
t
1
.member_id
FROM
member_team_mapping t2
workstation_member_mapping t1
LEFT JOIN team_dict t2 ON t1.station_id = t2.station_id
WHERE
t2.team_id = #{teamId}
t2.id = #{teamId}
AND t1.delete_date IS NULL
AND t2.delete_date IS NULL
)
<if
test=
"userName != null and userName != ''"
>
...
...
src/main/resources/mapper/TeamDictMapper.xml
View file @
9ede29d
...
...
@@ -129,6 +129,7 @@
t1.id_card,
t1.province,
t1.city,
t1.county,
t1.address,
t1.start_date,
t1.end_date,
...
...
@@ -137,16 +138,12 @@
t1.is_party
FROM
member_dict t1
LEFT JOIN
member_team_mapping t2 ON t1.id = t2.member_id
LEFT JOIN
team_dict t3 ON t2.team_id = t3.id
LEFT JOIN
workstation_member_mapping t5 ON t1.id = t5.member_id
LEFT JOIN
workstation_dict t4 ON t5.station_id = t4.id
LEFT JOIN
workstation_member_mapping t5 ON t1.id = t5.member_id and t5.delete_date is null
LEFT JOIN
workstation_dict t4 ON t5.station_id = t4.id AND t4.delete_date IS NULL
LEFT JOIN
member_team_mapping t2 ON t1.id = t2.member_id AND t2.delete_date IS NULL
LEFT JOIN
team_dict t3 ON t2.team_id = t3.id AND t3.delete_date IS NULL
WHERE
t1.delete_date IS NULL
AND t2.delete_date IS NULL
AND t3.delete_date IS NULL
AND t4.delete_date IS NULL
and t5.delete_date is null
<if
test=
"jobStatus != null and jobStatus != ''"
>
AND t1.job_status = #{jobStatus}
</if>
...
...
src/main/resources/mapper/WorkstationDictMapper.xml
View file @
9ede29d
...
...
@@ -100,25 +100,11 @@
LEFT JOIN (
SELECT
t9.id,
sum( ct
8 + ct
9 ) AS ct1
sum( ct9 ) AS ct1
FROM
(
SELECT
t1.id,
count( DISTINCT t3.member_id ) AS ct8
FROM
workstation_dict t1
LEFT JOIN team_dict t2 ON t1.id = t2.station_id
LEFT JOIN member_team_mapping t3 ON t2.id = t3.team_id
WHERE
t1.id = #{stationId}
AND t1.delete_date IS NULL
AND t2.delete_date IS NULL
AND t3.delete_date IS NULL
) t9
LEFT JOIN (
SELECT
t1.id,
count( DISTINCT t2.id ) AS ct9
FROM
workstation_dict t1
...
...
@@ -128,7 +114,7 @@
t2.delete_date IS NULL
AND t3.delete_date IS NULL
AND t1.id = #{stationId}
) t
10 ON t9.id = t10.id
) t
9
) t4 ON t1.id = t4.id
LEFT JOIN (
SELECT
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment