Commit 215f5646 by chongli

修正刷新token报错

parent 2d7770af
......@@ -17,7 +17,7 @@ public interface TokenDao {
@Select("select * from arc_token t where t.id = #{id}")
TokenModel getById(String id);
@Update("update arc_token t set t.val = #{val}, t.expireTime = #{expireTime}, t.updateTime = #{dataChangeLastTime} where t.id = #{id}")
@Update("update arc_token t set t.val = #{val}, t.expireTime = #{expireTime}, t.dataChangeLastTime = #{dataChangeLastTime} where t.id = #{id}")
int update(TokenModel model);
@Delete("delete from arc_token where id = #{id}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment