123456789101112131415161718192021222324252627 |
- package cn.com.qmth.scancentral.vo.examinfo;
- import java.util.List;
- public class SubjectConfig {
- private List<String> paperTypeBarcodeContent;
- private String subjectCode;
- public List<String> getPaperTypeBarcodeContent() {
- return paperTypeBarcodeContent;
- }
- public void setPaperTypeBarcodeContent(List<String> paperTypeBarcodeContent) {
- this.paperTypeBarcodeContent = paperTypeBarcodeContent;
- }
- public String getSubjectCode() {
- return subjectCode;
- }
- public void setSubjectCode(String subjectCode) {
- this.subjectCode = subjectCode;
- }
- }
|