101 lines
2.0 KiB
Java
101 lines
2.0 KiB
Java
package cn.palmte.work.model;
|
|
|
|
import javax.persistence.*;
|
|
import java.util.Date;
|
|
|
|
@Entity
|
|
@Table(name = "sys_role_permission")
|
|
public class SysRolePermission {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private int id;
|
|
@Column(name = "role_id")
|
|
private int roleId;
|
|
|
|
@Column(name = "permission_id")
|
|
private int permissionId;
|
|
|
|
@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;
|
|
|
|
public SysRolePermission() {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public int getRoleId() {
|
|
return roleId;
|
|
}
|
|
|
|
public void setRoleId(int roleId) {
|
|
this.roleId = roleId;
|
|
}
|
|
|
|
public int getPermissionId() {
|
|
return permissionId;
|
|
}
|
|
|
|
public void setPermissionId(int permissionId) {
|
|
this.permissionId = permissionId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|