mistakeeeeeeeeee
This commit is contained in:
parent
28ae97cfdf
commit
47dafa6087
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.111-SNAPSHOT</version>
|
||||
<version>1.0.112-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -19,10 +19,6 @@ public class MetaCrawler {
|
|||
@Column(name = "NAME", nullable = true, length = 50)
|
||||
private String name;
|
||||
|
||||
@Basic
|
||||
@Column(name = "IS_DEFAULT", nullable = false, columnDefinition = "Boolean default false")
|
||||
private Boolean isDefault;
|
||||
|
||||
@Temporal(TemporalType.TIMESTAMP)
|
||||
@Column(name = "CREATE_DATE", nullable = false, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = false, updatable = false)
|
||||
private Date createDate;
|
||||
|
@ -51,14 +47,6 @@ public class MetaCrawler {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Boolean getDefault() {
|
||||
return isDefault;
|
||||
}
|
||||
|
||||
public void setDefault(Boolean aDefault) {
|
||||
isDefault = aDefault;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
|
|
@ -110,6 +110,14 @@ public class Sensor {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getInterval() {
|
||||
return interval;
|
||||
}
|
||||
|
||||
public void setInterval(Integer interval) {
|
||||
this.interval = interval;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user