29 lines
621 B
Java
29 lines
621 B
Java
package net.gepafin.tendermanagement.entities;
|
|
|
|
import jakarta.persistence.Column;
|
|
import jakarta.persistence.Entity;
|
|
import jakarta.persistence.Table;
|
|
import lombok.Data;
|
|
import org.hibernate.annotations.Where;
|
|
|
|
@Entity
|
|
@Data
|
|
@Table(name ="role_action_context")
|
|
@Where(clause = "is_deleted = false")
|
|
public class RoleActionContextEntity extends BaseEntity {
|
|
|
|
@Column(name = "action_context")
|
|
private String actionContext;
|
|
|
|
@Column(name = "role_id")
|
|
private Long roleId;
|
|
|
|
@Column(name = "is_viewed")
|
|
private Boolean isViewed;
|
|
|
|
@Column(name = "description")
|
|
private String description;
|
|
|
|
|
|
}
|