-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathAccount.java
More file actions
88 lines (65 loc) · 1.69 KB
/
Account.java
File metadata and controls
88 lines (65 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package io.zipcoder.entities;
import io.zipcoder.utilities.AccountType;
import javax.persistence.*;
@Entity
public class Account {
@Id
@GeneratedValue
@Column(name = "ACCOUNT_ID")
private Long id;
@Enumerated(value = EnumType.STRING)
@Column(name = "ACCOUNT_TYPE")
private AccountType type;
@Column(name = "NICKNAME")
private String nickname;
@Column(name = "REWARDS_POINTS")
private Integer rewards;
@Column(name = "ACCOUNT_BALANCE")
private Double balance;
@ManyToOne
@JoinColumn(name = "CUSTOMER_ID")
private Customer customer;
public Account(){}
public Account(String nickname, AccountType type, Double balance, Customer customer){
this.nickname = nickname;
this.type = type;
this.balance = balance;
this.customer = customer;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public AccountType getType() {
return this.type;
}
public void setType(AccountType type) {
this.type = type;
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public Integer getRewards() {
return rewards;
}
public void setRewards(Integer rewards) {
this.rewards = rewards;
}
public Double getBalance() {
return balance;
}
public void setBalance(Double balance) {
this.balance = balance;
}
public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
}