Done ticket GEPAFINBE-128
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.Column;
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.Table;
|
||||
import lombok.Data;
|
||||
|
||||
@Entity
|
||||
@Data
|
||||
@Table(name ="role_action_context")
|
||||
public class RoleActionContextEntity extends BaseEntity {
|
||||
|
||||
@Column(name = "action_context")
|
||||
private String actionContext;
|
||||
|
||||
@Column(name = "role_id")
|
||||
private Long roleId;
|
||||
|
||||
@Column(name="is_deleted")
|
||||
private Boolean isDeleted;
|
||||
|
||||
@Column(name = "is_viewed")
|
||||
private Boolean isViewed;
|
||||
|
||||
@Column(name = "description")
|
||||
private String description;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user