This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/callback/IpAddrPool.java
2018-12-03 13:38:32 +08:00

39 lines
656 B
Java

package com.nis.domain.callback;
import com.google.gson.annotations.Expose;
public class IpAddrPool extends InlineIp{
@Expose
private Integer regionId;
@Expose
private Long groupId;
@Expose
private Long addrPoolId;
public Integer getRegionId() {
return regionId;
}
public void setRegionId(Integer regionId) {
this.regionId = regionId;
}
public Long getGroupId() {
return groupId;
}
public void setGroupId(Long groupId) {
this.groupId = groupId;
}
public Long getAddrPoolId() {
return addrPoolId;
}
public void setAddrPoolId(Long addrPoolId) {
this.addrPoolId = addrPoolId;
}
}