XMTT 6 gadi atpakaļ
vecāks
revīzija
810a2373a0

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

@ -193,7 +193,7 @@ public class SysService {
193 193
    public Object[] resetpwMobile(@JdbcConn(false) Connection con, String account, @DefaultValue("false") boolean checkExists) throws Exception {
194 194
		if (checkExists) {
195 195
			User user = this.userDao.queryByAccount(con, account);
196
			if (null != user) {
196
			if (null == user) {
197 197
				throw new JfwBaseException(-60000, "not found account");
198 198
			}
199 199
		}