SubjectConfig.java 614 B

123456789101112131415161718192021222324252627
  1. package cn.com.qmth.scancentral.vo.examinfo;
  2. import java.util.List;
  3. public class SubjectConfig {
  4. private List<String> paperTypeBarcodeContent;
  5. private String subjectCode;
  6. public List<String> getPaperTypeBarcodeContent() {
  7. return paperTypeBarcodeContent;
  8. }
  9. public void setPaperTypeBarcodeContent(List<String> paperTypeBarcodeContent) {
  10. this.paperTypeBarcodeContent = paperTypeBarcodeContent;
  11. }
  12. public String getSubjectCode() {
  13. return subjectCode;
  14. }
  15. public void setSubjectCode(String subjectCode) {
  16. this.subjectCode = subjectCode;
  17. }
  18. }