85 lines
1.7 KiB
Java
85 lines
1.7 KiB
Java
package ovh.herisson.Clyde.Tables;
|
|
|
|
import jakarta.persistence.Entity;
|
|
import jakarta.persistence.GeneratedValue;
|
|
import jakarta.persistence.GenerationType;
|
|
import jakarta.persistence.Id;
|
|
|
|
import java.util.Date;
|
|
|
|
@Entity
|
|
public class Payment {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
|
private long id;
|
|
|
|
private long studentRegNo;
|
|
private String card;
|
|
private String client;
|
|
private Date expDate;
|
|
private int amount;
|
|
private Date date;
|
|
public Payment(){}
|
|
|
|
public Payment(long studentRegNo, String card, String client, Date expDate, int amount, Date date){
|
|
this.studentRegNo = studentRegNo;
|
|
this.card = card;
|
|
this.client = client;
|
|
this.expDate = expDate;
|
|
this.amount = amount;
|
|
this.date = date;
|
|
}
|
|
|
|
public long getStudentRegNo() {
|
|
return studentRegNo;
|
|
}
|
|
|
|
public void setStudentRegNo(long studentRegNo) {
|
|
this.studentRegNo = studentRegNo;
|
|
}
|
|
|
|
public String getCard() {
|
|
return card;
|
|
}
|
|
|
|
public void setCard(String card) {
|
|
this.card = card;
|
|
}
|
|
|
|
public String getClient() {
|
|
return client;
|
|
}
|
|
|
|
public void setClient(String client) {
|
|
this.client = client;
|
|
}
|
|
|
|
public Date getExpDate() {
|
|
return expDate;
|
|
}
|
|
|
|
public void setExpDate(Date expDate) {
|
|
this.expDate = expDate;
|
|
}
|
|
|
|
public int getAmount() {
|
|
return amount;
|
|
}
|
|
|
|
public void setAmount(int amount) {
|
|
this.amount = amount;
|
|
}
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
public Date getDate() {
|
|
return date;
|
|
}
|
|
|
|
public void setDate(Date date) {
|
|
this.date = date;
|
|
}
|
|
}
|