Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Entities #58

Open
wants to merge 2 commits into
base: flow
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions src/main/java/com/wellsfargo/counselor/entity/Client.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
package com.wellsfargo.counselor.entity;

import jakarta.persistence.*;

@Entity
public class Client {

@Id
@GeneratedValue
private long clientId;
@ManyToOne
private Advisor advisor;

@Column(nullable = false)
private String firstName;

@Column(nullable = false)
private String lastName;
@Column(nullable = false)
private String address;

@Column(nullable = false)
private String phone;

@Column(nullable = false)
private String email;

public long getClientId() {
return clientId;
}
public Advisor getAdvisor() {
return advisor;
}
public void setAdvisor(Advisor advisor) {
this.advisor = advisor;
}

public String getFirstName() {
return firstName;
}

public void setFirstName(String firstName) {
this.firstName = firstName;
}

public String getLastName() {
return lastName;
}

public void setLastName(String lastName) {
this.lastName = lastName;
}

public String getAddress() {
return address;
}

public void setAddress(String address) {
this.address = address;
}

public String getPhone() {
return phone;
}

public void setPhone(String phone) {
this.phone = phone;
}

public String getEmail() {
return email;
}

public void setEmail(String email) {
this.email = email;
}

protected Client() {

}


public Client(Advisor advisor, String firstName, String lastName, String address, String phone, String email) {
this.advisor =advisor;
this.firstName = firstName;
this.lastName = lastName;
this.address = address;
this.phone = phone;
this.email = email;

}


}
49 changes: 49 additions & 0 deletions src/main/java/com/wellsfargo/counselor/entity/Portfolio.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
package com.wellsfargo.counselor.entity;


import jakarta.persistence.*;

@Entity
public class Portfolio {

@Id
@GeneratedValue
private long portfolioId;

@ManyToOne
private Client client;

@Column(nullable = false)
private String creationDate;

public long getPortfolioId() {
return portfolioId;
}

public Client getClient() {
return client;
}

public void setClient(Client client) {
this.client = client;
}

public String getCreationDate() {
return creationDate;
}

public void setCreationDate(String creationDate) {
this.creationDate = creationDate;
}

protected Portfolio() {

}

public Portfolio(Client client, String creationDate){
this.client = client;
this.creationDate = creationDate;

}

}
95 changes: 95 additions & 0 deletions src/main/java/com/wellsfargo/counselor/entity/Security.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
package com.wellsfargo.counselor.entity;

import com.sun.jdi.event.StepEvent;
import jakarta.persistence.*;

@Entity
public class Security {

@Id
@GeneratedValue
private long securityId;

@ManyToOne
private Portfolio portfolio;

@Column(nullable = false)
private String name;

@Column(nullable = false)
private String category;

@Column(nullable = false)
private float purchasePrice;

@Column(nullable = false)
private String purchaseDate;

@Column(nullable = false)
private float quantity;

public long getSecurityId() {
return securityId;
}

public Portfolio getPortfolio() {
return portfolio;
}

public void setPortfolio(Portfolio portfolio) {
this.portfolio = portfolio;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getCategory() {
return category;
}

public void setCategory(String category) {
this.category = category;
}

public float getPurchasePrice() {
return purchasePrice;
}

public void setPurchasePrice(float purchasePrice) {
this.purchasePrice = purchasePrice;
}

public String getPurchaseDate() {
return purchaseDate;
}

public void setPurchaseDate(String purchaseDate) {
this.purchaseDate = purchaseDate;
}

public float getQuantity() {
return quantity;
}

public void setQuantity(float quantity) {
this.quantity = quantity;
}

protected Security(){

}

public Security(Portfolio portfolio, String name, String category, float purchasePrice, String purchaseDate, float quantity){
this.portfolio = portfolio;
this.name = name;
this.category = category;
this.purchasePrice = purchasePrice;
this.purchaseDate = purchaseDate;
this.quantity = quantity;
}
}