https://github.com/nathancordeiro/wells-fargo-task-2
This is the 2nd task of the Wells Fargo learning Experience course with Forage learning
https://github.com/nathancordeiro/wells-fargo-task-2
Last synced: 4 months ago
JSON representation
This is the 2nd task of the Wells Fargo learning Experience course with Forage learning
- Host: GitHub
- URL: https://github.com/nathancordeiro/wells-fargo-task-2
- Owner: NathanCordeiro
- Created: 2024-08-17T14:17:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-17T14:25:02.000Z (about 1 year ago)
- Last Synced: 2025-03-31T19:47:24.741Z (7 months ago)
- Language: Java
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wells-Fargo-Task-2
This is the 2nd task of the Wells Fargo learning Experience course with Forage learning## Task details
Create a class for each entity in your data model (these should be placed in the entities directory). Respect the following when implementing your data model:
- Each entity must be annotated with the @Entity type, which can be found in the javax.persistence package.
- Each id must be auto-generated.
- Each instance variable must contain either a column or a relationship annotation.
- Each class must contain a constructor which initializes all instance variables.
- Each class must expose a getter and setter for each instance variable (no setter for the id field is required).
- Lean on the existing entities (one has been provided for you) for hints on how to accomplish the above.