123456789101112131415161718192021222324252627282930 |
- Entity\AttendanceResult:
- type: entity
- table: c_attendance_result
- repositoryClass: Entity\Repository\AttendanceResultRepository
- fields:
- c_id:
- id: true
- type: integer
- unsigned: false
- nullable: false
- id:
- id: true
- type: integer
- unsigned: false
- nullable: false
- user_id:
- type: integer
- unsigned: false
- nullable: false
- attendance_id:
- type: integer
- unsigned: false
- nullable: false
- score:
- type: integer
- unsigned: false
- nullable: false
- lifecycleCallbacks:
- prePersist:
- - before_save
|