浏览代码

Merge branch 'master' of http://121.42.53.174:3000/XMTT/storage.git

jiapeng 6 年之前
父节点
当前提交
663788a859
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/ekexiu/project/storage/system/service/SysService.java

+ 1 - 1
src/main/java/com/ekexiu/project/storage/system/service/SysService.java

@ -249,7 +249,7 @@ public class SysService {
249 249
    @Path("/resetPw")
250 250
    @LoginUser
251 251
    public void resetPw(@JdbcConn(true) Connection con,String id)throws SQLException {
252
        this.userDao.changePw(con, StringUtil.md5(DEFAULT_PW_STR), id);
252
        this.userDao.changePw(con,DEFAULT_PW_STR, id);
253 253
    }
254 254
255 255
}