package com.rongyichuang.player.dto.input; public class ActivityPlayerRatingItemInput { private Long itemId; private Integer score; public Long getItemId() { return itemId; } public void setItemId(Long itemId) { this.itemId = itemId; } public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } }