ConsumerDto.java 434 B

1234567891011121314151617181920212223242526272829303132333435
  1. package cn.com.qmth.importpaper;
  2. public class ConsumerDto {
  3. private CourseDto ic;
  4. private String batch;
  5. public CourseDto getIc() {
  6. return ic;
  7. }
  8. public void setIc(CourseDto ic) {
  9. this.ic = ic;
  10. }
  11. public String getBatch() {
  12. return batch;
  13. }
  14. public void setBatch(String batch) {
  15. this.batch = batch;
  16. }
  17. public ConsumerDto(CourseDto ic,String batch) {
  18. super();
  19. this.ic = ic;
  20. this.batch = batch;
  21. }
  22. }