1234567891011121314151617181920212223242526272829303132333435 |
- 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;
- }
-
-
- }
|