This commit is contained in:
Crystal.Sea
2020-08-26 07:34:54 +08:00
parent 47fdfbc607
commit 39911b4264
5 changed files with 9 additions and 9 deletions

View File

@@ -76,7 +76,7 @@ public class AppListController {
if (gridList != null && !gridList.equals("")) {
int intGridList = Integer.parseInt(gridList);
jdbcTemplate.update("UPDATE USERINFO SET GRIDLIST = ? WHERE ID = ?", intGridList,
jdbcTemplate.update("UPDATE MXK_USERINFO SET GRIDLIST = ? WHERE ID = ?", intGridList,
WebContext.getUserInfo().getId());
WebContext.getUserInfo().setGridList(intGridList);
}