XMTT 6 anos atrás
pai
commit
bbb4c6eb83

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

@ -41,7 +41,7 @@ public interface UserDao {
41 41
    User login(Connection con, String account, String passwd) throws SQLException;
42 42
43 43
    @Update
44
    @Exclude({"passwd"})
44
    @Exclude({"passwd","active"})
45 45
    int update(Connection con, User user) throws SQLException;
46 46
47 47
    @UpdateWith