commit
95eaa20f43
@ -0,0 +1,118 @@ |
||||
package com.ruoyi.quartz.domain.dto; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @author hehang |
||||
* @version 2021.3 |
||||
* @date 2023/5/19 15:02 |
||||
*/ |
||||
public class PassengerFlowResult implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
private String projectId; |
||||
private String accuracy; |
||||
private Long startTime; |
||||
private Long endTime; |
||||
private String inFlow; |
||||
private String outflow; |
||||
private String deviceId; |
||||
private String deviceName; |
||||
private String relatedRegionId; |
||||
private String relatedRegionName; |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return "PassengerFlowResult{" + |
||||
"projectId='" + projectId + '\'' + |
||||
", accuracy='" + accuracy + '\'' + |
||||
", startTime=" + startTime + |
||||
", endTime=" + endTime + |
||||
", inFlow='" + inFlow + '\'' + |
||||
", outflow='" + outflow + '\'' + |
||||
", deviceId='" + deviceId + '\'' + |
||||
", deviceName='" + deviceName + '\'' + |
||||
", relatedRegionId='" + relatedRegionId + '\'' + |
||||
", relatedRegionName='" + relatedRegionName + '\'' + |
||||
'}'; |
||||
} |
||||
|
||||
public String getProjectId() { |
||||
return projectId; |
||||
} |
||||
|
||||
public void setProjectId(String projectId) { |
||||
this.projectId = projectId; |
||||
} |
||||
|
||||
public String getAccuracy() { |
||||
return accuracy; |
||||
} |
||||
|
||||
public void setAccuracy(String accuracy) { |
||||
this.accuracy = accuracy; |
||||
} |
||||
|
||||
public Long getStartTime() { |
||||
return startTime; |
||||
} |
||||
|
||||
public void setStartTime(Long startTime) { |
||||
this.startTime = startTime; |
||||
} |
||||
|
||||
public Long getEndTime() { |
||||
return endTime; |
||||
} |
||||
|
||||
public void setEndTime(Long endTime) { |
||||
this.endTime = endTime; |
||||
} |
||||
|
||||
public String getInFlow() { |
||||
return inFlow; |
||||
} |
||||
|
||||
public void setInFlow(String inFlow) { |
||||
this.inFlow = inFlow; |
||||
} |
||||
|
||||
public String getOutflow() { |
||||
return outflow; |
||||
} |
||||
|
||||
public void setOutflow(String outflow) { |
||||
this.outflow = outflow; |
||||
} |
||||
|
||||
public String getDeviceId() { |
||||
return deviceId; |
||||
} |
||||
|
||||
public void setDeviceId(String deviceId) { |
||||
this.deviceId = deviceId; |
||||
} |
||||
|
||||
public String getDeviceName() { |
||||
return deviceName; |
||||
} |
||||
|
||||
public void setDeviceName(String deviceName) { |
||||
this.deviceName = deviceName; |
||||
} |
||||
|
||||
public String getRelatedRegionId() { |
||||
return relatedRegionId; |
||||
} |
||||
|
||||
public void setRelatedRegionId(String relatedRegionId) { |
||||
this.relatedRegionId = relatedRegionId; |
||||
} |
||||
|
||||
public String getRelatedRegionName() { |
||||
return relatedRegionName; |
||||
} |
||||
|
||||
public void setRelatedRegionName(String relatedRegionName) { |
||||
this.relatedRegionName = relatedRegionName; |
||||
} |
||||
} |
Loading…
Reference in new issue