FillResult.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.qmth.distributed.print.updateObjectiveOmrResult;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. public class FillResult implements Serializable {
  5. private int main_number;
  6. private int sub_number;
  7. private int single;
  8. private List<Integer> fill_option;
  9. private int suspect_flag;
  10. private List<String> fill_position;
  11. private List<Integer> fill_size;
  12. public int getMain_number() {
  13. return main_number;
  14. }
  15. public void setMain_number(int main_number) {
  16. this.main_number = main_number;
  17. }
  18. public int getSub_number() {
  19. return sub_number;
  20. }
  21. public void setSub_number(int sub_number) {
  22. this.sub_number = sub_number;
  23. }
  24. public int getSingle() {
  25. return single;
  26. }
  27. public void setSingle(int single) {
  28. this.single = single;
  29. }
  30. public List<Integer> getFill_option() {
  31. return fill_option;
  32. }
  33. public void setFill_option(List<Integer> fill_option) {
  34. this.fill_option = fill_option;
  35. }
  36. public int getSuspect_flag() {
  37. return suspect_flag;
  38. }
  39. public void setSuspect_flag(int suspect_flag) {
  40. this.suspect_flag = suspect_flag;
  41. }
  42. public List<String> getFill_position() {
  43. return fill_position;
  44. }
  45. public void setFill_position(List<String> fill_position) {
  46. this.fill_position = fill_position;
  47. }
  48. public List<Integer> getFill_size() {
  49. return fill_size;
  50. }
  51. public void setFill_size(List<Integer> fill_size) {
  52. this.fill_size = fill_size;
  53. }
  54. }