nullable,
This commit is contained in:
parent
14cdf606cd
commit
330ace9e7e
@ -17,7 +17,7 @@ public class DiscoveryPort {
|
||||
private long id;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn
|
||||
@JoinColumn(nullable = false)
|
||||
@JsonIgnore
|
||||
private DiscoveryHost host;
|
||||
public DiscoveryHost getHost() {
|
||||
|
@ -21,8 +21,8 @@ public class ServiceScanHistory {
|
||||
@Temporal(TemporalType.TIMESTAMP)
|
||||
private Date createDate;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn
|
||||
@ManyToOne
|
||||
@JoinColumn(nullable = false)
|
||||
@JsonIgnore
|
||||
private DiscoveryPort port;
|
||||
|
||||
@ -34,8 +34,6 @@ public class ServiceScanHistory {
|
||||
@Enumerated(EnumType.STRING)
|
||||
private DirectionType direction;
|
||||
|
||||
|
||||
|
||||
@Lob
|
||||
@Column(nullable = false)
|
||||
private byte[] packet;
|
||||
|
Loading…
x
Reference in New Issue
Block a user