wjc
2025-01-07 90d5f028ccdaaaf64286f9d632cb335a4d0544b9
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
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;
    }
}