Browse Source

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

jiapeng 6 years ago
parent
commit
663788a859

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

249
    @Path("/resetPw")
249
    @Path("/resetPw")
250
    @LoginUser
250
    @LoginUser
251
    public void resetPw(@JdbcConn(true) Connection con,String id)throws SQLException {
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
}