meta
This commit is contained in:
snoop 2017-06-22 20:40:47 +09:00
parent 2cf647d6a8
commit 00d59bfa27
6 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ public class MetaInfraType {
this.id = id;
}
@Basic
@Column(name = "NAME", nullable = true, length = 50)
public String getName() {
return name;

View File

@ -25,7 +25,7 @@ public class MetaInfraVendor {
this.id = id;
}
@Basic
@Column(name = "NAME", nullable = true, length = 50)
public String getName() {
return name;

View File

@ -24,7 +24,7 @@ public class MetaProbeOs {
this.id = id;
}
@Basic
@Column(name = "NAME", nullable = true, length = 50)
public String getName() {
return name;

View File

@ -24,7 +24,7 @@ public class MetaProbeVersion {
this.id = id;
}
@Basic
@Column(name = "VERSION", nullable = true, length = 10)
public String getVersion() {
return version;

View File

@ -25,7 +25,7 @@ public class MetaSensorItemType {
this.id = id;
}
@Basic
@Column(name = "NAME", nullable = true, length = 50)
public String getName() {
return name;
@ -35,7 +35,7 @@ public class MetaSensorItemType {
this.name = name;
}
@Basic
@Column(name = "DESC", nullable = true, length = 50)
public String getDesc() {
return desc;

View File

@ -28,7 +28,7 @@ public class MetaVendorCrawlerSensorItem {
this.id = id;
}
@Basic
@Column(name = "INTERVAL", nullable = true, length = 50)
public String getInterval() {
return interval;
@ -38,7 +38,7 @@ public class MetaVendorCrawlerSensorItem {
this.interval = interval;
}
@Basic
@Column(name = "WARN_CONDITION", nullable = true, length = 50)
public String getWarnCondition() {
return warnCondition;