length = -1    << removed!@!!!!!!!!!!!!
This commit is contained in:
snoop 2017-06-23 11:59:32 +09:00
parent 432cd07c67
commit 0dfb06c2e6
4 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ public class InfraOsPort {
} }
@Basic @Basic
@Column(name = "PORT_TYPE", nullable = false, length = -1) @Column(name = "PORT_TYPE", nullable = false)
public String getPortType() { public String getPortType() {
return portType; return portType;
} }

View File

@ -38,7 +38,7 @@ public class InfraService {
} }
@Basic @Basic
@Column(name = "PORT_TYPE", nullable = false, length = -1) @Column(name = "PORT_TYPE", nullable = false)
public String getPortType() { public String getPortType() {
return portType; return portType;
} }

View File

@ -68,7 +68,7 @@ public class NoAuthProbe {
} }
@Basic @Basic
@Column(name = "STATUS", nullable = false, length = -1) @Column(name = "STATUS", nullable = false)
@Enumerated(EnumType.STRING) @Enumerated(EnumType.STRING)
public AuthType getStatus() { public AuthType getStatus() {
return status; return status;

View File

@ -33,7 +33,7 @@ public class Probe {
} }
@Column(name = "STATUS", nullable = true, length = -1) @Column(name = "STATUS", nullable = true)
public String getStatus() { public String getStatus() {
return status; return status;
} }