Quellcode durchsuchen

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

jiapeng vor 6 Jahren
Ursprung
Commit
663788a859

+ 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
}