|
|
@@ -13,16 +13,23 @@ import lombok.Setter;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class ArkIpAddressDto {
|
|
|
+ @JsonProperty("INPUT_STRING")
|
|
|
private String inputString;
|
|
|
+ @JsonProperty("INPUT_IP_ADDRESS")
|
|
|
private String inputIpAddress;
|
|
|
+ @JsonProperty("CALLER_IP_ADDRESS")
|
|
|
private String callerIpAddress;
|
|
|
+ @JsonProperty("STATUS")
|
|
|
private String status;
|
|
|
+ @JsonProperty("ENTITY")
|
|
|
private Entity entity;
|
|
|
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public static class Entity {
|
|
|
+ @JsonProperty("INPUT_IP_ADDRESS")
|
|
|
private InputIpAddress inputIpAddress;
|
|
|
+ @JsonProperty("CALLER_IP_ADDRESS")
|
|
|
private CallerIpAddress callerIpAddress;
|
|
|
|
|
|
/**
|