package com.rongyichuang.player.dto.input;
|
|
import java.util.List;
|
|
public class ActivityPlayerRatingInput {
|
private Long activityPlayerId;
|
private List<ActivityPlayerRatingItemInput> ratings;
|
private String comment;
|
|
public Long getActivityPlayerId() {
|
return activityPlayerId;
|
}
|
|
public void setActivityPlayerId(Long activityPlayerId) {
|
this.activityPlayerId = activityPlayerId;
|
}
|
|
public List<ActivityPlayerRatingItemInput> getRatings() {
|
return ratings;
|
}
|
|
public void setRatings(List<ActivityPlayerRatingItemInput> ratings) {
|
this.ratings = ratings;
|
}
|
|
public String getComment() {
|
return comment;
|
}
|
|
public void setComment(String comment) {
|
this.comment = comment;
|
}
|
}
|