Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
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
徐少华
midjourney-proxy
Commits
507564ae
Commit
507564ae
authored
Aug 23, 2019
by
杨涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 错误代码
parent
c0cecbaa
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
WeixinClockMemberDao.java
...com/pcloud/book/weixinclock/dao/WeixinClockMemberDao.java
+1
-1
WeixinClockMemberDaoImpl.java
...d/book/weixinclock/dao/impl/WeixinClockMemberDaoImpl.java
+2
-2
WeixinClockMember.Mapper.xml
...resources/mapper/weixinclock/WeixinClockMember.Mapper.xml
+1
-1
No files found.
pcloud-service-book/src/main/java/com/pcloud/book/weixinclock/dao/WeixinClockMemberDao.java
View file @
507564ae
...
@@ -32,7 +32,7 @@ public interface WeixinClockMemberDao extends BaseDao<WeixinClockMember> {
...
@@ -32,7 +32,7 @@ public interface WeixinClockMemberDao extends BaseDao<WeixinClockMember> {
* @param userWxId
* @param userWxId
* @return
* @return
*/
*/
void
updateClockDays
(
String
wechatGroupId
,
String
userWxId
,
Long
wchatUserId
);
void
updateClockDays
(
String
wechatGroupId
,
String
userWxId
,
Long
w
e
chatUserId
);
/**
/**
* 获取的打卡排名(微信群)
* 获取的打卡排名(微信群)
...
...
pcloud-service-book/src/main/java/com/pcloud/book/weixinclock/dao/impl/WeixinClockMemberDaoImpl.java
View file @
507564ae
...
@@ -51,11 +51,11 @@ public class WeixinClockMemberDaoImpl extends BaseDaoImpl<WeixinClockMember> imp
...
@@ -51,11 +51,11 @@ public class WeixinClockMemberDaoImpl extends BaseDaoImpl<WeixinClockMember> imp
* @return
* @return
*/
*/
@Override
@Override
public
void
updateClockDays
(
String
wechatGroupId
,
String
userWxId
,
Long
wchatUserId
)
{
public
void
updateClockDays
(
String
wechatGroupId
,
String
userWxId
,
Long
w
e
chatUserId
)
{
Map
<
String
,
Object
>
paramMap
=
new
HashMap
<>();
Map
<
String
,
Object
>
paramMap
=
new
HashMap
<>();
paramMap
.
put
(
"wechatGroupId"
,
wechatGroupId
);
paramMap
.
put
(
"wechatGroupId"
,
wechatGroupId
);
paramMap
.
put
(
"userWxId"
,
userWxId
);
paramMap
.
put
(
"userWxId"
,
userWxId
);
paramMap
.
put
(
"w
chatUserId"
,
w
chatUserId
);
paramMap
.
put
(
"w
echatUserId"
,
we
chatUserId
);
super
.
getSqlSession
().
update
(
this
.
getStatement
(
"updateClockDays"
),
paramMap
);
super
.
getSqlSession
().
update
(
this
.
getStatement
(
"updateClockDays"
),
paramMap
);
}
}
...
...
pcloud-service-book/src/main/resources/mapper/weixinclock/WeixinClockMember.Mapper.xml
View file @
507564ae
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
update weixin_clock_member
update weixin_clock_member
set
set
all_clock_day = all_clock_day + 1,
all_clock_day = all_clock_day + 1,
wechat_user_id = #{wehatUserId, jdbcType=BIGINT}
wechat_user_id = #{we
c
hatUserId, jdbcType=BIGINT}
update_time = NOW()
update_time = NOW()
where
where
wx_user_id = #{userWxId}
wx_user_id = #{userWxId}
...
...
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