chore: update pom.xml Lombok config and deploy settings

- Update Maven compiler plugin to support Lombok annotation processing
- Add deploy.conf for automated deployment
- Update backend models and controllers
- Update frontend pages and API
This commit is contained in:
2026-03-04 12:21:29 +08:00
parent 4646fbc9b5
commit 6f2dc27fbc
20 changed files with 352 additions and 151 deletions

View File

@@ -79,7 +79,7 @@ public class SystemMenuServiceImpl extends ServiceImpl<SystemMenuDao, SystemMenu
lqw.like(SystemMenu::getName, request.getName());
}
if (StrUtil.isNotEmpty(request.getMenuType())) {
lqw.eq(SystemMenu::getName, request.getMenuType());
lqw.eq(SystemMenu::getMenuType, request.getMenuType());
}
lqw.eq(SystemMenu::getIsDelte, false);
lqw.orderByDesc(SystemMenu::getSort);