lrj
7 天以前 6d519474e44855682043d3c40db2c86a6822caca
backend/src/main/java/com/rongyichuang/player/dto/input/ActivityPlayerRatingItemInput.java
@@ -2,7 +2,7 @@
public class ActivityPlayerRatingItemInput {
    private Long itemId;
    private Integer score;
    private Double score;
    public Long getItemId() {
        return itemId;
@@ -12,11 +12,11 @@
        this.itemId = itemId;
    }
    public Integer getScore() {
    public Double getScore() {
        return score;
    }
    public void setScore(Integer score) {
    public void setScore(Double score) {
        this.score = score;
    }
}