You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
782 B
43 lines
782 B
package kr.co.kihyun.beans.batch; |
|
|
|
public class ResponseData<T> { |
|
private String responseCode; |
|
private long idx; |
|
private String name; |
|
public long getIdx() { |
|
return idx; |
|
} |
|
public void setIdx(long idx) { |
|
this.idx = idx; |
|
} |
|
public String getName() { |
|
return name; |
|
} |
|
public void setName(String name) { |
|
this.name = name; |
|
} |
|
private T response; |
|
private String message; |
|
|
|
public String getResponseCode() { |
|
return responseCode; |
|
} |
|
public void setResponseCode(String responseCode) { |
|
this.responseCode = responseCode; |
|
} |
|
public T getResponse() { |
|
return response; |
|
} |
|
public void setResponse(T response) { |
|
this.response = response; |
|
} |
|
public String getMessage() { |
|
return message; |
|
} |
|
public void setMessage(String message) { |
|
this.message = message; |
|
} |
|
|
|
|
|
|
|
}
|
|
|