baizonghao
2023-06-15 bc2ffa758e58d2a390fd57bc90920599c01b0b80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.mindskip.xzs.domain.exam;
 
 
import java.util.List;
 
public class ExamPaperTitleItemObject {
 
    private String name;
 
    private List<ExamPaperQuestionItemObject> questionItems;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public List<ExamPaperQuestionItemObject> getQuestionItems() {
        return questionItems;
    }
 
    public void setQuestionItems(List<ExamPaperQuestionItemObject> questionItems) {
        this.questionItems = questionItems;
    }
}