package com.hdl.sdk.link.core.bean.response;
|
|
import java.io.Serializable;
|
|
import androidx.annotation.NonNull;
|
|
/**
|
* Created by Tong on 2021/9/29.
|
*/
|
public class BaseLocalWithCodeResponse<T> implements Serializable {
|
|
private String id;
|
private String time_stamp;
|
private T code;
|
|
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;
|
}
|
|
public T getCode() {
|
return code;
|
}
|
|
public void setCode(@NonNull T code) {
|
this.code = code;
|
}
|
}
|