XMTT 6 years ago
parent
commit
810a2373a0

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

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