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
8b865b12
Commit
8b865b12
authored
Jan 17, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
激活账号
parent
d0e5d9cd
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 @
8b865b12
...
...
@@ -132,7 +132,7 @@ public interface StaffMapper {
* @author mozhu
* @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
(
"activeDoTime"
)
Date
activeDoTime
,
@Param
(
"activeStatus"
)
Integer
activeStatus
);
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/StaffService.java
View file @
8b865b12
...
...
@@ -139,7 +139,7 @@ public interface StaffService {
* @return
* @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
);
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/StaffServiceImpl.java
View file @
8b865b12
...
...
@@ -163,10 +163,10 @@ public class StaffServiceImpl implements StaffService {
}
@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
)
{
return
mapper
.
updateActiveStatusById
(
staffId
,
active
Code
,
active
Time
,
expireTime
,
activeDoTime
,
activeStatus
)
;
return
mapper
.
updateActiveStatusById
(
staffId
,
activeTime
,
expireTime
,
activeDoTime
,
activeStatus
)
;
}
@Override
...
...
haoban-manage3-service/src/main/resources/mapper/StaffMapper.xml
View file @
8b865b12
...
...
@@ -483,7 +483,6 @@
<update
id=
"updateActiveStatusById"
>
update tab_haoban_staff
set active_status = #{activeStatus},
`active_code` = #{activeCode},
`active_time` = #{activeTime},
`expire_time` = #{expireTime},
`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