package com.hdl.sdk.link.core.bean.response;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by jlchen on 11/15/21.
|
*
|
* @Description : BaseResponse
|
*/
|
public class BaseResponse implements Serializable {
|
|
private String id;
|
private String time_stamp;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getTime_stamp() {
|
return time_stamp;
|
}
|
|
public void setTime_stamp(String time_stamp) {
|
this.time_stamp = time_stamp;
|
}
|
}
|