package com.rongyichuang.rating.dto.request;
|
|
import java.util.List;
|
|
/**
|
* 评分模板输入DTO
|
*/
|
public class RatingSchemeInput {
|
|
/**
|
* 模板ID(null表示新增,非null表示修改)
|
*/
|
private Long id;
|
|
/**
|
* 模板名称
|
*/
|
private String name;
|
|
/**
|
* 模板描述
|
*/
|
private String description;
|
|
/**
|
* 评分条目列表
|
*/
|
private List<RatingItemInput> items;
|
|
// 构造函数
|
public RatingSchemeInput() {}
|
|
// Getter和Setter方法
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public List<RatingItemInput> getItems() {
|
return items;
|
}
|
|
public void setItems(List<RatingItemInput> items) {
|
this.items = items;
|
}
|
}
|