Commit 64ad409c authored by renjie's avatar renjie

iplist bug

parent a6d677c2
......@@ -14,7 +14,7 @@ public class IpResourceDto {
//0:正常, 1:已过期, 2:即将过期, 3:正在分配, 4:未使用
private int status;
private List<String> port;
private long purchasedTIme;
private long purchasedTime;
private long validTime;
private String username;
private String details;
......@@ -32,7 +32,7 @@ public class IpResourceDto {
this.region = ipResource.getRegion();
this.status = ipResource.getStatus();
this.port = ipResource.getPort();
this.purchasedTIme = ipResource.getPurchasedTime();
this.purchasedTime = ipResource.getPurchasedTime();
this.validTime = ipResource.getValidTime();
this.username = ipResource.getUsername();
this.details = ipResource.getDetails();
......@@ -89,12 +89,12 @@ public class IpResourceDto {
this.validTime = validTime;
}
public long getPurchasedTIme() {
return purchasedTIme;
public long getPurchasedTime() {
return purchasedTime;
}
public void setPurchasedTIme(long purchasedTIme) {
this.purchasedTIme = purchasedTIme;
public void setPurchasedTime(long purchasedTime) {
this.purchasedTime = purchasedTime;
}
public int getStatus() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment