package cn.com.qmth.importpaper; public class ConsumerDto { private CourseDto ic; private String batch; public CourseDto getIc() { return ic; } public void setIc(CourseDto ic) { this.ic = ic; } public String getBatch() { return batch; } public void setBatch(String batch) { this.batch = batch; } public ConsumerDto(CourseDto ic,String batch) { super(); this.ic = ic; this.batch = batch; } }