1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package com.qmth.distributed.print.updateObjectiveOmrResult;
- import java.io.Serializable;
- import java.util.List;
- public class FillResult implements Serializable {
- private int main_number;
- private int sub_number;
- private int single;
- private List<Integer> fill_option;
- private int suspect_flag;
- private List<String> fill_position;
- private List<Integer> fill_size;
- public int getMain_number() {
- return main_number;
- }
- public void setMain_number(int main_number) {
- this.main_number = main_number;
- }
- public int getSub_number() {
- return sub_number;
- }
- public void setSub_number(int sub_number) {
- this.sub_number = sub_number;
- }
- public int getSingle() {
- return single;
- }
- public void setSingle(int single) {
- this.single = single;
- }
- public List<Integer> getFill_option() {
- return fill_option;
- }
- public void setFill_option(List<Integer> fill_option) {
- this.fill_option = fill_option;
- }
- public int getSuspect_flag() {
- return suspect_flag;
- }
- public void setSuspect_flag(int suspect_flag) {
- this.suspect_flag = suspect_flag;
- }
- public List<String> getFill_position() {
- return fill_position;
- }
- public void setFill_position(List<String> fill_position) {
- this.fill_position = fill_position;
- }
- public List<Integer> getFill_size() {
- return fill_size;
- }
- public void setFill_size(List<Integer> fill_size) {
- this.fill_size = fill_size;
- }
- }
|