首页>代码>Spring Boot+Maven+Spring Data JPA+apache Shiro+Easyui实现通用用户权限管理系统>/topJ/src/main/java/cn/temptation/bean/Resource.java
package cn.temptation.bean; import lombok.Data; import javax.persistence.*; import java.util.List; /** * 【资源】实体 */ @Entity @Table(name = "sys_resource") @Data public class Resource { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer resourceid; @Column private Integer resourcepid; @Column private String resourcename; @Column private String resourceicon; @Column private String resourceurl; @OneToMany(cascade = {CascadeType.ALL}) @Transient private List<Resource> children; }
最近下载更多
呜呜呜吴天 LV2
2022年11月11日
xsxtxbb LV8
2022年10月10日
wangsu123456 LV9
2022年2月23日
wanglinddad LV55
2021年12月26日
chen_jw LV10
2021年9月17日
贾大神 LV5
2021年7月7日
ericxu1116 LV24
2021年5月15日
interface LV22
2021年4月29日
lyd19931203 LV21
2021年4月22日
laishaofe LV7
2021年4月12日