mirror of https://github.com/jeecgboot/jeecg-boot
JeecgBoot V2.0版本发布
parent
240cc7fb17
commit
64c3415b51
|
@ -62,6 +62,9 @@ Jeecg-Boot快速开发平台,可以应用在任何J2EE项目的开发中,尤
|
|||
* 24.平台首页风格,提供多种组合模式,支持自定义风格
|
||||
* 25.提供简单易用的打印插件,支持谷歌、IE浏览器等各种浏览器
|
||||
* 26.示例代码丰富,提供很多学习案例参考
|
||||
* 27.采用maven分模块开发方式
|
||||
* 27.支持菜单动态路由
|
||||
* 28.权限控制采用 RBAC(Role-Based Access Control,基于角色的访问控制)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -4,8 +4,14 @@ import java.io.Serializable;
|
|||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Accessors(chain = true)
|
||||
@NoArgsConstructor
|
||||
public class SysUserDepartsVO implements Serializable{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
|
Loading…
Reference in New Issue