ConsumerDto.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package cn.com.qmth.importpaper;
  2. public class ConsumerDto {
  3. private ImportCourse ic;
  4. private String sourceDir;
  5. private String host;
  6. private String batch;
  7. private String rootOrgId;
  8. private String key;
  9. private String token;
  10. public String getSourceDir() {
  11. return sourceDir;
  12. }
  13. public void setSourceDir(String sourceDir) {
  14. this.sourceDir = sourceDir;
  15. }
  16. public String getHost() {
  17. return host;
  18. }
  19. public void setHost(String host) {
  20. this.host = host;
  21. }
  22. public String getRootOrgId() {
  23. return rootOrgId;
  24. }
  25. public void setRootOrgId(String rootOrgId) {
  26. this.rootOrgId = rootOrgId;
  27. }
  28. public String getKey() {
  29. return key;
  30. }
  31. public void setKey(String key) {
  32. this.key = key;
  33. }
  34. public String getToken() {
  35. return token;
  36. }
  37. public void setToken(String token) {
  38. this.token = token;
  39. }
  40. public ImportCourse getIc() {
  41. return ic;
  42. }
  43. public void setIc(ImportCourse ic) {
  44. this.ic = ic;
  45. }
  46. public String getBatch() {
  47. return batch;
  48. }
  49. public void setBatch(String batch) {
  50. this.batch = batch;
  51. }
  52. public ConsumerDto(ImportCourse ic, String sourceDir, String host, String rootOrgId, String key, String token,String batch) {
  53. super();
  54. this.ic = ic;
  55. this.sourceDir = sourceDir;
  56. this.host = host;
  57. this.rootOrgId = rootOrgId;
  58. this.key = key;
  59. this.token = token;
  60. this.batch = batch;
  61. }
  62. }