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
29bb8dfd
Commit
29bb8dfd
authored
Jan 17, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/获取用户敏感信息' into 'developer'
Feature/获取用户敏感信息 See merge request
!873
parents
d4249204
e304a3ca
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
5 deletions
+4
-5
StaffMapper.java
...com/gic/haoban/manage/service/dao/mapper/StaffMapper.java
+1
-1
StaffService.java
...a/com/gic/haoban/manage/service/service/StaffService.java
+1
-1
StaffServiceImpl.java
.../haoban/manage/service/service/impl/StaffServiceImpl.java
+2
-2
StaffMapper.xml
...manage3-service/src/main/resources/mapper/StaffMapper.xml
+0
-1
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/dao/mapper/StaffMapper.java
View file @
29bb8dfd
...
@@ -140,7 +140,7 @@ public interface StaffMapper {
...
@@ -140,7 +140,7 @@ public interface StaffMapper {
* @author mozhu
* @author mozhu
* @date 2022-08-03 17:36:52
* @date 2022-08-03 17:36:52
*/
*/
int
updateActiveStatusById
(
@Param
(
"staffId"
)
String
staffId
,
@Param
(
"active
Code"
)
String
activeCode
,
@Param
(
"active
Time"
)
Date
activeTime
,
int
updateActiveStatusById
(
@Param
(
"staffId"
)
String
staffId
,
@Param
(
"activeTime"
)
Date
activeTime
,
@Param
(
"expireTime"
)
Date
expireTime
,
@Param
(
"expireTime"
)
Date
expireTime
,
@Param
(
"activeDoTime"
)
Date
activeDoTime
,
@Param
(
"activeStatus"
)
Integer
activeStatus
);
@Param
(
"activeDoTime"
)
Date
activeDoTime
,
@Param
(
"activeStatus"
)
Integer
activeStatus
);
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/StaffService.java
View file @
29bb8dfd
...
@@ -139,7 +139,7 @@ public interface StaffService {
...
@@ -139,7 +139,7 @@ public interface StaffService {
* @return
* @return
* @throws
* @throws
*/
*/
int
updateActiveStatusById
(
String
staffId
,
String
activeCode
,
Date
activeTime
,
Date
expireTime
,
Date
activeDoTime
,
Integer
activeStatus
);
int
updateActiveStatusById
(
String
staffId
,
Date
activeTime
,
Date
expireTime
,
Date
activeDoTime
,
Integer
activeStatus
);
void
updateOpenConcatFlag
(
List
<
String
>
wxUserIdList
,
int
mixFlag
);
void
updateOpenConcatFlag
(
List
<
String
>
wxUserIdList
,
int
mixFlag
);
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/StaffServiceImpl.java
View file @
29bb8dfd
...
@@ -163,10 +163,10 @@ public class StaffServiceImpl implements StaffService {
...
@@ -163,10 +163,10 @@ public class StaffServiceImpl implements StaffService {
}
}
@Override
@Override
public
int
updateActiveStatusById
(
String
staffId
,
String
activeCode
,
Date
activeTime
,
Date
expireTime
,
public
int
updateActiveStatusById
(
String
staffId
,
Date
activeTime
,
Date
expireTime
,
Date
activeDoTime
,
Integer
activeStatus
)
{
Date
activeDoTime
,
Integer
activeStatus
)
{
return
mapper
.
updateActiveStatusById
(
staffId
,
active
Code
,
active
Time
,
expireTime
,
activeDoTime
,
activeStatus
)
;
return
mapper
.
updateActiveStatusById
(
staffId
,
activeTime
,
expireTime
,
activeDoTime
,
activeStatus
)
;
}
}
@Override
@Override
...
...
haoban-manage3-service/src/main/resources/mapper/StaffMapper.xml
View file @
29bb8dfd
...
@@ -490,7 +490,6 @@
...
@@ -490,7 +490,6 @@
<update
id=
"updateActiveStatusById"
>
<update
id=
"updateActiveStatusById"
>
update tab_haoban_staff
update tab_haoban_staff
set active_status = #{activeStatus},
set active_status = #{activeStatus},
`active_code` = #{activeCode},
`active_time` = #{activeTime},
`active_time` = #{activeTime},
`expire_time` = #{expireTime},
`expire_time` = #{expireTime},
`active_do_time` = #{activeDoTime},
`active_do_time` = #{activeDoTime},
...
...
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