fixed
meta
This commit is contained in:
parent
2cf647d6a8
commit
00d59bfa27
|
@ -24,7 +24,7 @@ public class MetaInfraType {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "NAME", nullable = true, length = 50)
|
@Column(name = "NAME", nullable = true, length = 50)
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
|
|
|
@ -25,7 +25,7 @@ public class MetaInfraVendor {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "NAME", nullable = true, length = 50)
|
@Column(name = "NAME", nullable = true, length = 50)
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class MetaProbeOs {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "NAME", nullable = true, length = 50)
|
@Column(name = "NAME", nullable = true, length = 50)
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class MetaProbeVersion {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "VERSION", nullable = true, length = 10)
|
@Column(name = "VERSION", nullable = true, length = 10)
|
||||||
public String getVersion() {
|
public String getVersion() {
|
||||||
return version;
|
return version;
|
||||||
|
|
|
@ -25,7 +25,7 @@ public class MetaSensorItemType {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "NAME", nullable = true, length = 50)
|
@Column(name = "NAME", nullable = true, length = 50)
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
|
@ -35,7 +35,7 @@ public class MetaSensorItemType {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "DESC", nullable = true, length = 50)
|
@Column(name = "DESC", nullable = true, length = 50)
|
||||||
public String getDesc() {
|
public String getDesc() {
|
||||||
return desc;
|
return desc;
|
||||||
|
|
|
@ -28,7 +28,7 @@ public class MetaVendorCrawlerSensorItem {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "INTERVAL", nullable = true, length = 50)
|
@Column(name = "INTERVAL", nullable = true, length = 50)
|
||||||
public String getInterval() {
|
public String getInterval() {
|
||||||
return interval;
|
return interval;
|
||||||
|
@ -38,7 +38,7 @@ public class MetaVendorCrawlerSensorItem {
|
||||||
this.interval = interval;
|
this.interval = interval;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
|
||||||
@Column(name = "WARN_CONDITION", nullable = true, length = 50)
|
@Column(name = "WARN_CONDITION", nullable = true, length = 50)
|
||||||
public String getWarnCondition() {
|
public String getWarnCondition() {
|
||||||
return warnCondition;
|
return warnCondition;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user