package com.rongyichuang.player.dto.response;
|
|
public class PlayerRegistrationResponse {
|
private Long id;
|
private Integer status;
|
private String registrationTime;
|
private Integer reviewStatus;
|
private String reviewComment;
|
|
public PlayerRegistrationResponse() {}
|
|
public PlayerRegistrationResponse(Long id, Integer status, String registrationTime, Integer reviewStatus, String reviewComment) {
|
this.id = id;
|
this.status = status;
|
this.registrationTime = registrationTime;
|
this.reviewStatus = reviewStatus;
|
this.reviewComment = reviewComment;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getRegistrationTime() {
|
return registrationTime;
|
}
|
|
public void setRegistrationTime(String registrationTime) {
|
this.registrationTime = registrationTime;
|
}
|
|
public Integer getReviewStatus() {
|
return reviewStatus;
|
}
|
|
public void setReviewStatus(Integer reviewStatus) {
|
this.reviewStatus = reviewStatus;
|
}
|
|
public String getReviewComment() {
|
return reviewComment;
|
}
|
|
public void setReviewComment(String reviewComment) {
|
this.reviewComment = reviewComment;
|
}
|
}
|