File tree 2 files changed +9
-0
lines changed
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/model
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ Jeecg-Boot快速开发平台,可以应用在任何J2EE项目的开发中,尤
62
62
* 24.平台首页风格,提供多种组合模式,支持自定义风格
63
63
* 25.提供简单易用的打印插件,支持谷歌、IE浏览器等各种浏览器
64
64
* 26.示例代码丰富,提供很多学习案例参考
65
+ * 27.采用maven分模块开发方式
66
+ * 27.支持菜单动态路由
67
+ * 28.权限控制采用 RBAC(Role-Based Access Control,基于角色的访问控制)
65
68
66
69
67
70
Original file line number Diff line number Diff line change 4
4
import java .util .List ;
5
5
6
6
import lombok .Data ;
7
+ import lombok .EqualsAndHashCode ;
8
+ import lombok .NoArgsConstructor ;
9
+ import lombok .experimental .Accessors ;
7
10
8
11
@ Data
12
+ @ EqualsAndHashCode (callSuper = false )
13
+ @ Accessors (chain = true )
14
+ @ NoArgsConstructor
9
15
public class SysUserDepartsVO implements Serializable {
10
16
private static final long serialVersionUID = 1L ;
11
17
You can’t perform that action at this time.
0 commit comments