wjc
2025-05-23 971a24a9e58a21bc306897fd3ad63012a399f7db
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
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;
    }
}