115 lines
2.3 KiB
Java
115 lines
2.3 KiB
Java
package com.community.app.dto;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public class SignupView {
|
|
private Long id;
|
|
private Long activityId;
|
|
private String activityTitle;
|
|
private String term;
|
|
private String location;
|
|
private LocalDateTime startTime;
|
|
private LocalDateTime endTime;
|
|
private String status;
|
|
private String checkinStatus;
|
|
private LocalDateTime signedAt;
|
|
private LocalDateTime canceledAt;
|
|
private LocalDateTime checkinAt;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getActivityId() {
|
|
return activityId;
|
|
}
|
|
|
|
public void setActivityId(Long activityId) {
|
|
this.activityId = activityId;
|
|
}
|
|
|
|
public String getActivityTitle() {
|
|
return activityTitle;
|
|
}
|
|
|
|
public void setActivityTitle(String activityTitle) {
|
|
this.activityTitle = activityTitle;
|
|
}
|
|
|
|
public String getTerm() {
|
|
return term;
|
|
}
|
|
|
|
public void setTerm(String term) {
|
|
this.term = term;
|
|
}
|
|
|
|
public String getLocation() {
|
|
return location;
|
|
}
|
|
|
|
public void setLocation(String location) {
|
|
this.location = location;
|
|
}
|
|
|
|
public LocalDateTime getStartTime() {
|
|
return startTime;
|
|
}
|
|
|
|
public void setStartTime(LocalDateTime startTime) {
|
|
this.startTime = startTime;
|
|
}
|
|
|
|
public LocalDateTime getEndTime() {
|
|
return endTime;
|
|
}
|
|
|
|
public void setEndTime(LocalDateTime endTime) {
|
|
this.endTime = endTime;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getCheckinStatus() {
|
|
return checkinStatus;
|
|
}
|
|
|
|
public void setCheckinStatus(String checkinStatus) {
|
|
this.checkinStatus = checkinStatus;
|
|
}
|
|
|
|
public LocalDateTime getSignedAt() {
|
|
return signedAt;
|
|
}
|
|
|
|
public void setSignedAt(LocalDateTime signedAt) {
|
|
this.signedAt = signedAt;
|
|
}
|
|
|
|
public LocalDateTime getCanceledAt() {
|
|
return canceledAt;
|
|
}
|
|
|
|
public void setCanceledAt(LocalDateTime canceledAt) {
|
|
this.canceledAt = canceledAt;
|
|
}
|
|
|
|
public LocalDateTime getCheckinAt() {
|
|
return checkinAt;
|
|
}
|
|
|
|
public void setCheckinAt(LocalDateTime checkinAt) {
|
|
this.checkinAt = checkinAt;
|
|
}
|
|
}
|