1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.qmth.distributed.print.updateObjectiveOmrResult;
- import java.io.Serializable;
- import java.util.ArrayList;
- import java.util.List;
- public class Question implements Serializable {
- private String field;
- private int index;
- private String content;
- private int wrong_flag;
- private List<FillResult> fill_result = new ArrayList<>();
- private String type;
- public String getField() {
- return field;
- }
- public void setField(String field) {
- this.field = field;
- }
- public int getIndex() {
- return index;
- }
- public void setIndex(int index) {
- this.index = index;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public int getWrong_flag() {
- return wrong_flag;
- }
- public void setWrong_flag(int wrong_flag) {
- this.wrong_flag = wrong_flag;
- }
- public List<FillResult> getFill_result() {
- return fill_result;
- }
- public void setFill_result(List<FillResult> fill_result) {
- this.fill_result = fill_result;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|