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