XMTT 6 ans auparavant
Parent
commit
89ac62a209

+ 1 - 2
src/main/java/com/ekexiu/project/bridge/system/dao/UserDao.java

@ -41,14 +41,13 @@ public interface UserDao {
41 41
42 42
	@Nullable
43 43
	@SelectOne
44
	@Where("active = '1'")
45 44
	User login(Connection con, String account, String passwd) throws SQLException;
46 45
47 46
	@Insert
48 47
	int insert(Connection con, User user) throws SQLException;
49 48
50 49
	@Update
51
	@Exclude("passwd")
50
	@Exclude({"passwd","type","active"})
52 51
	@Dynamic
53 52
	int update(Connection con, User user) throws SQLException;
54 53

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

@ -92,6 +92,9 @@ public class SysService {
92 92
        }
93 93
        User user = userDao.login(con, account, StringUtil.md5(pw));
94 94
        if (user != null) {
95
			if(!user.isActive()){
96
				throw new JfwBaseException(-60005,"user is disabled");
97
			}
95 98
            return makeSessionUser(user);
96 99
        }
97 100
        return null;