jiapeng 6 gadi atpakaļ
vecāks
revīzija
265d99435f

+ 3 - 3
src/main/java/com/ekexiu/project/bridge/system/service/SysService.java

@ -171,10 +171,10 @@ public class SysService {
171 171
172 172
	@Post
173 173
	@Path("/changePw")
174
	public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
175
		User user = this.userDao.query(con, id);
174
	public void changePw(@JdbcConn(true) Connection con, @LoginUser SessionUser u, String oldPw, String newPw) throws SQLException, JfwBaseException {
175
		User user = this.userDao.query(con, u.getId());
176 176
		if (user != null && StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
177
			this.userDao.changePw(con, StringUtil.md5(newPw), id);
177
			this.userDao.changePw(con, StringUtil.md5(newPw), u.getId());
178 178
		} else {
179 179
			throw new JfwBaseException(100001, "用户不存在或密码不匹配");
180 180
		}