package com.rongyichuang.player.dto.response; import com.rongyichuang.rating.dto.response.RatingItemResponse; import java.util.List; /** * 评分表单响应 */ public class RatingFormResponse { private Long schemeId; // 评分模板ID private String schemeName; // 评分模板名称 private List items; // 评分项目列表 private Integer totalMaxScore; // 总分 // Constructors public RatingFormResponse() {} // Getters and Setters public Long getSchemeId() { return schemeId; } public void setSchemeId(Long schemeId) { this.schemeId = schemeId; } public String getSchemeName() { return schemeName; } public void setSchemeName(String schemeName) { this.schemeName = schemeName; } public List getItems() { return items; } public void setItems(List items) { this.items = items; } public Integer getTotalMaxScore() { return totalMaxScore; } public void setTotalMaxScore(Integer totalMaxScore) { this.totalMaxScore = totalMaxScore; } }