mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-01-09 15:30:06 -05:00
Update the Attendee class
It won't ever receive the date_registered, and it should receive the ID
This commit is contained in:
parent
d21e269579
commit
befaf69d33
@ -1,21 +1,13 @@
|
|||||||
package com.uncc.gameday.registration;
|
package com.uncc.gameday.registration;
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
public class Attendee {
|
public class Attendee {
|
||||||
|
|
||||||
private Date date_registered;
|
private int id;
|
||||||
private String first_name;
|
private String first_name;
|
||||||
private String last_name;
|
private String last_name;
|
||||||
private String section;
|
private String section;
|
||||||
private int row;
|
private int row;
|
||||||
|
|
||||||
public Date getDate_registered() {
|
|
||||||
return date_registered;
|
|
||||||
}
|
|
||||||
public void setDate_registered(Date date_registered) {
|
|
||||||
this.date_registered = date_registered;
|
|
||||||
}
|
|
||||||
public String getFirst_name() {
|
public String getFirst_name() {
|
||||||
return first_name;
|
return first_name;
|
||||||
}
|
}
|
||||||
@ -40,6 +32,12 @@ public class Attendee {
|
|||||||
public void setRow(int row) {
|
public void setRow(int row) {
|
||||||
this.row = row;
|
this.row = row;
|
||||||
}
|
}
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user