RecommendationFeedbackRequest
extends BaseEntity
in package
Base Entity for KMP Application
Table of Contents
Constants
- STATUS_COMPLETED : mixed = 'completed'
- STATUS_EXPIRED : mixed = 'expired'
- STATUS_PENDING : mixed = 'pending'
- STATUS_RETRACTED : mixed = 'retracted'
Properties
- $branch_id : int|null
- $created : DateTime|null
- $id : int
- $modified : DateTime|null
- $_accessible : array<string|int, mixed>
Methods
- getBranchId() : int|null
- Get the branch ID for authorization checks.
Constants
STATUS_COMPLETED
public
mixed
STATUS_COMPLETED
= 'completed'
STATUS_EXPIRED
public
mixed
STATUS_EXPIRED
= 'expired'
STATUS_PENDING
public
mixed
STATUS_PENDING
= 'pending'
STATUS_RETRACTED
public
mixed
STATUS_RETRACTED
= 'retracted'
Properties
$branch_id
public
int|null
$branch_id
Associated branch ID (when applicable)
$created
public
DateTime|null
$created
Creation timestamp
$id
public
int
$id
Primary key identifier
$modified
public
DateTime|null
$modified
Last modification timestamp
$_accessible
protected
array<string|int, mixed>
$_accessible
= ['requester_id' => true, 'status' => true, 'message' => true, 'deadline' => true, 'workflow_instance_id' => true, 'completed_at' => true, 'retracted_at' => true, 'expired_at' => true, 'created_by' => true, 'modified_by' => true, 'requester' => true, 'items' => true, 'recipients' => true]
Methods
getBranchId()
Get the branch ID for authorization checks.
public
getBranchId() : int|null
Child classes should override for complex branch relationships.
Return values
int|null —The branch ID, or null if no association