202 lines
3.6 KiB
Java
202 lines
3.6 KiB
Java
package cn.palmte.work.model;
|
|
|
|
|
|
import javax.persistence.*;
|
|
import java.util.Date;
|
|
|
|
@Entity
|
|
@Table(name = "sys_permission")
|
|
public class SysPermission {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private int id;
|
|
|
|
@Column(name = "name")
|
|
private String name;
|
|
|
|
@Column(name = "icon")
|
|
private String icon;
|
|
|
|
@Column(name = "url")
|
|
private String url;
|
|
|
|
@Column(name = "permission")
|
|
private String permission;
|
|
|
|
@Column(name = "parent_id")
|
|
private int parentId;
|
|
|
|
@Column(name = "level")
|
|
private int level;
|
|
|
|
@Column(name = "type")
|
|
private int type;
|
|
|
|
@Column(name = "sort")
|
|
private int sort;
|
|
|
|
@Column(name = "remark")
|
|
private String remark;
|
|
|
|
@Column(name = "is_deleted")
|
|
private int isDeleted;
|
|
|
|
@Column(name = "created_by")
|
|
private int createdBy;
|
|
|
|
@Column(name = "created_time")
|
|
private Date createdTime;
|
|
|
|
@Column(name = "last_updated_by")
|
|
private int lastUpdatedBy;
|
|
|
|
@Column(name = "last_updated_time")
|
|
private Date lastUpdatedTime;
|
|
|
|
@Transient
|
|
private String creator;
|
|
|
|
@Transient
|
|
private String updator;
|
|
|
|
public SysPermission() {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getIcon() {
|
|
return icon;
|
|
}
|
|
|
|
public void setIcon(String icon) {
|
|
this.icon = icon;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
|
|
public String getPermission() {
|
|
return permission;
|
|
}
|
|
|
|
public void setPermission(String permission) {
|
|
this.permission = permission;
|
|
}
|
|
|
|
public int getParentId() {
|
|
return parentId;
|
|
}
|
|
|
|
public void setParentId(int parentId) {
|
|
this.parentId = parentId;
|
|
}
|
|
|
|
public int getLevel() {
|
|
return level;
|
|
}
|
|
|
|
public void setLevel(int level) {
|
|
this.level = level;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public int getSort() {
|
|
return sort;
|
|
}
|
|
|
|
public void setSort(int sort) {
|
|
this.sort = sort;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
public int getIsDeleted() {
|
|
return isDeleted;
|
|
}
|
|
|
|
public void setIsDeleted(int isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
|
|
public int getCreatedBy() {
|
|
return createdBy;
|
|
}
|
|
|
|
public void setCreatedBy(int createdBy) {
|
|
this.createdBy = createdBy;
|
|
}
|
|
|
|
public Date getCreatedTime() {
|
|
return createdTime;
|
|
}
|
|
|
|
public void setCreatedTime(Date createdTime) {
|
|
this.createdTime = createdTime;
|
|
}
|
|
|
|
public int getLastUpdatedBy() {
|
|
return lastUpdatedBy;
|
|
}
|
|
|
|
public void setLastUpdatedBy(int lastUpdatedBy) {
|
|
this.lastUpdatedBy = lastUpdatedBy;
|
|
}
|
|
|
|
public Date getLastUpdatedTime() {
|
|
return lastUpdatedTime;
|
|
}
|
|
|
|
public void setLastUpdatedTime(Date lastUpdatedTime) {
|
|
this.lastUpdatedTime = lastUpdatedTime;
|
|
}
|
|
|
|
public String getCreator() {
|
|
return creator;
|
|
}
|
|
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
}
|
|
|
|
public String getUpdator() {
|
|
return updator;
|
|
}
|
|
|
|
public void setUpdator(String updator) {
|
|
this.updator = updator;
|
|
}
|
|
}
|