ing
This commit is contained in:
parent
ac2e2f6b2c
commit
dd72c492be
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<groupId>com.loafle.overflow</groupId>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.75-SNAPSHOT</version>
|
||||
<version>1.0.76-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -13,7 +13,7 @@ import java.util.Date;
|
|||
@Table(name = "INFRA_HOST_PORT", schema = "public")
|
||||
public class InfraHostPort {
|
||||
private Long id;
|
||||
private InfraHostIP infraHostIp;
|
||||
private InfraHostIP infraHostIP;
|
||||
private MetaPortType metaPortType;
|
||||
private Integer port;
|
||||
private Date createDate;
|
||||
|
@ -30,12 +30,12 @@ public class InfraHostPort {
|
|||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "INFRA_HOST_IP_ID", nullable = false)
|
||||
public InfraHostIP getInfraHostIp() {
|
||||
return infraHostIp;
|
||||
public InfraHostIP getInfraHostIP() {
|
||||
return infraHostIP;
|
||||
}
|
||||
|
||||
public void setInfraHostIp(InfraHostIP infraHostIp) {
|
||||
this.infraHostIp = infraHostIp;
|
||||
public void setInfraHostIP(InfraHostIP infraHostIP) {
|
||||
this.infraHostIP = infraHostIP;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
|
|
Loading…
Reference in New Issue
Block a user