You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.1 KiB
74 lines
1.1 KiB
package com.platform.entities;
|
|
|
|
public class DataInfoEntityMoveTmp extends DataInfoEntity {
|
|
|
|
private String dstPath;
|
|
|
|
private String completeStatus;
|
|
|
|
private int rate;
|
|
|
|
private String lastTime; // 采集时间
|
|
|
|
public DataInfoEntityMoveTmp() {
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
/**
|
|
* @return the dstPath
|
|
*/
|
|
public String getDstPath() {
|
|
return dstPath;
|
|
}
|
|
|
|
/**
|
|
* @param dstPath the dstPath to set
|
|
*/
|
|
public void setDstPath(String dstPath) {
|
|
this.dstPath = dstPath;
|
|
}
|
|
|
|
/**
|
|
* @return the completeStatus
|
|
*/
|
|
public String getCompleteStatus() {
|
|
return completeStatus;
|
|
}
|
|
|
|
/**
|
|
* @param completeStatus the completeStatus to set
|
|
*/
|
|
public void setCompleteStatus(String completeStatus) {
|
|
this.completeStatus = completeStatus;
|
|
}
|
|
|
|
/**
|
|
* @return the rate
|
|
*/
|
|
public int getRate() {
|
|
return rate;
|
|
}
|
|
|
|
/**
|
|
* @param rate the rate to set
|
|
*/
|
|
public void setRate(int rate) {
|
|
this.rate = rate;
|
|
}
|
|
|
|
/**
|
|
* @return the lastTime
|
|
*/
|
|
public String getLastTime() {
|
|
return lastTime;
|
|
}
|
|
|
|
/**
|
|
* @param lastTime the lastTime to set
|
|
*/
|
|
public void setLastTime(String lastTime) {
|
|
this.lastTime = lastTime;
|
|
}
|
|
|
|
}
|