feat(childManage): add enums and model for goal management
📝 Description
This PR introduces the Goal management domain model as part of the implementation for the ticket IA-694
.
Included in this PR:
-
Goal
entity:- Linked to
Child
andSubject
via@ManyToOne
associations - Contains attributes like
title
,description
,startDate
,endDate
,priority
,status
, andprogressPercentage
- Linked to
- Enums:
-
PriorityLevel
with values:LOW
,MEDIUM
,HIGH
-
GoalStatus
with values:IN_PROGRESS
,COMPLETED
,NOT_STARTED
-
Closes IA-694