wjc
2025-05-07 b9cc7390e8e8ce64c41c26fb369c98ce669d660c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
    }
}