修复DSNIP提交/删除的bug
This commit is contained in:
@@ -2,11 +2,17 @@ package com.nis.domain.maat;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class DnsIpRecvData implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -3438469380427993582L;
|
||||
|
||||
@Expose
|
||||
@SerializedName("cfgId")
|
||||
private Long cfgId;
|
||||
@Expose
|
||||
@SerializedName("fakeId")
|
||||
private Integer fakeId;
|
||||
|
||||
public Long getCfgId() {
|
||||
|
||||
@@ -3,10 +3,14 @@ package com.nis.domain.maat;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class FromMaatBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1277140754421705676L;
|
||||
|
||||
@Expose
|
||||
@SerializedName("data")
|
||||
private List<DnsIpRecvData> data;
|
||||
|
||||
public List<DnsIpRecvData> getData() {
|
||||
|
||||
Reference in New Issue
Block a user