1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- package cn.com.qmth.importpaper;
- public class ConsumerDto {
- private ImportCourse ic;
- private String sourceDir;
- private String host;
- private String batch;
- private String rootOrgId;
- private String key;
- private String token;
- public String getSourceDir() {
- return sourceDir;
- }
- public void setSourceDir(String sourceDir) {
- this.sourceDir = sourceDir;
- }
- public String getHost() {
- return host;
- }
- public void setHost(String host) {
- this.host = host;
- }
- public String getRootOrgId() {
- return rootOrgId;
- }
- public void setRootOrgId(String rootOrgId) {
- this.rootOrgId = rootOrgId;
- }
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public String getToken() {
- return token;
- }
- public void setToken(String token) {
- this.token = token;
- }
- public ImportCourse getIc() {
- return ic;
- }
- public void setIc(ImportCourse ic) {
- this.ic = ic;
- }
-
-
- public String getBatch() {
- return batch;
- }
- public void setBatch(String batch) {
- this.batch = batch;
- }
- public ConsumerDto(ImportCourse ic, String sourceDir, String host, String rootOrgId, String key, String token,String batch) {
- super();
- this.ic = ic;
- this.sourceDir = sourceDir;
- this.host = host;
- this.rootOrgId = rootOrgId;
- this.key = key;
- this.token = token;
- this.batch = batch;
- }
-
-
- }
|