sendTime change
This commit is contained in:
parent
ca0deca18c
commit
b800e1929e
|
@ -43,10 +43,10 @@ public class PortScanHistory {
|
|||
private String description;
|
||||
|
||||
@Column(nullable = true)
|
||||
private Date sendTime;
|
||||
private Date startDate;
|
||||
|
||||
@Column(nullable = true)
|
||||
private Date resultTime;
|
||||
private Date endDate;
|
||||
|
||||
@Column(columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", nullable = false, insertable = false, updatable = false)
|
||||
private Date createDate;
|
||||
|
@ -104,20 +104,20 @@ public class PortScanHistory {
|
|||
this.directionType = directionType;
|
||||
}
|
||||
|
||||
public Date getSendTime() {
|
||||
return sendTime;
|
||||
public Date getStartDate() {
|
||||
return startDate;
|
||||
}
|
||||
|
||||
public void setSendTime(Date sendTime) {
|
||||
this.sendTime = sendTime;
|
||||
public void setStartDate(Date startDate) {
|
||||
this.startDate = startDate;
|
||||
}
|
||||
|
||||
public Date getResultTime() {
|
||||
return resultTime;
|
||||
public Date getEndDate() {
|
||||
return endDate;
|
||||
}
|
||||
|
||||
public void setResultTime(Date resultTime) {
|
||||
this.resultTime = resultTime;
|
||||
public void setEndDate(Date endDate) {
|
||||
this.endDate = endDate;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user