调查问卷查看

This commit is contained in:
2024-07-29 17:24:14 +08:00
parent 77a4aee88e
commit 1b5f64785d
8 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
package com.ai.da.model.vo;
import lombok.Data;
import java.util.List;
@Data
public class QuestionnaireFeedbackVO {
private Info age;
private Info question1;
private Info question2;
private Info question3;
private List<String> otherDesignTools;
public QuestionnaireFeedbackVO() {
}
public QuestionnaireFeedbackVO(Info age, Info question1, Info question2, Info question3, List<String> otherDesignTools) {
this.age = age;
this.question1 = question1;
this.question2 = question2;
this.question3 = question3;
this.otherDesignTools = otherDesignTools;
}
public static class Info{
public List<String> name;
public List<Integer> values;
public List<String> otherReason;
public Info() {
}
public Info(List<String> name, List<Integer> values) {
this.name = name;
this.values = values;
}
public Info(List<String> name, List<Integer> values, List<String> otherReason) {
this.name = name;
this.values = values;
this.otherReason = otherReason;
}
}
}