优化网卡名称变更处理
增加非saas平台拨号数据处理 优化详情信息
This commit is contained in:
+5
@@ -1,11 +1,13 @@
|
||||
package com.tongran.system.api.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public class NetworkInfo {
|
||||
// 运营商
|
||||
@JsonProperty("carrier")
|
||||
@@ -36,6 +38,9 @@ public class NetworkInfo {
|
||||
private String publicIp;
|
||||
@JsonProperty("type")
|
||||
private String type;
|
||||
/** 与外网的连通性(0否,1是) */
|
||||
@JsonProperty("status")
|
||||
private String status;
|
||||
// 如果是子接口,存储父接口名称
|
||||
@JsonProperty("parentInterface")
|
||||
private String parentInterface;
|
||||
|
||||
Reference in New Issue
Block a user