XMTT 6 vuotta sitten
vanhempi
commit
89ac62a209

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

41
41
42
	@Nullable
42
	@Nullable
43
	@SelectOne
43
	@SelectOne
44
	@Where("active = '1'")
45
	User login(Connection con, String account, String passwd) throws SQLException;
44
	User login(Connection con, String account, String passwd) throws SQLException;
46
45
47
	@Insert
46
	@Insert
48
	int insert(Connection con, User user) throws SQLException;
47
	int insert(Connection con, User user) throws SQLException;
49
48
50
	@Update
49
	@Update
51
	@Exclude("passwd")
50
	@Exclude({"passwd","type","active"})
52
	@Dynamic
51
	@Dynamic
53
	int update(Connection con, User user) throws SQLException;
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
        }
92
        }
93
        User user = userDao.login(con, account, StringUtil.md5(pw));
93
        User user = userDao.login(con, account, StringUtil.md5(pw));
94
        if (user != null) {
94
        if (user != null) {
95
			if(!user.isActive()){
96
				throw new JfwBaseException(-60005,"user is disabled");
97
			}
95
            return makeSessionUser(user);
98
            return makeSessionUser(user);
96
        }
99
        }
97
        return null;
100
        return null;