package com.hdl.sdk.link.bean;
|
|
import java.io.Serializable;
|
|
import androidx.annotation.NonNull;
|
|
/**
|
* Created by Zoro
|
* Created on 2022/1/13
|
* description:
|
*/
|
public class LinkResponseBean implements Serializable {
|
private String id;
|
private String code;
|
private String time_stamp;
|
|
public String getId() {
|
return id == null ? "" : id;
|
}
|
|
public void setId(@NonNull String id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return code == null ? "" : code;
|
}
|
|
public void setCode(@NonNull String code) {
|
this.code = code;
|
}
|
|
public String getTime_stamp() {
|
return time_stamp == null ? "" : time_stamp;
|
}
|
|
public void setTime_stamp(@NonNull String time_stamp) {
|
this.time_stamp = time_stamp;
|
}
|
}
|