009374ed
Hugiee.Liu
fea: create
|
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
|
package com.objecteye.pojo.viid.common;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
/**
* @author: liuhaoyu
* @date: 2023/6/28
*/
@Data
public class ResponseStatusResponse implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("RequestURL")
private String requestUrl;
@JsonProperty("StatusCode")
private Integer statusCode;
@JsonProperty("StatusString")
private String statusString;
@JsonProperty("ID")
private String id;
@JsonProperty("LocalTime")
private String localTime;
}
|