package com.ruoyi.system.domain;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* GPS设备最后位置响应
|
*/
|
public class GpsLastPositionResponse implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/** 状态 */
|
private Integer status;
|
|
/** 状态描述 */
|
private String cause;
|
|
/** 当前查询位置时间 */
|
private Long lastquerypositiontime;
|
|
/** 最后位置列表 */
|
private List<GpsLastPosition> records;
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getCause() {
|
return cause;
|
}
|
|
public void setCause(String cause) {
|
this.cause = cause;
|
}
|
|
public Long getLastquerypositiontime() {
|
return lastquerypositiontime;
|
}
|
|
public void setLastquerypositiontime(Long lastquerypositiontime) {
|
this.lastquerypositiontime = lastquerypositiontime;
|
}
|
|
public List<GpsLastPosition> getRecords() {
|
return records;
|
}
|
|
public void setRecords(List<GpsLastPosition> records) {
|
this.records = records;
|
}
|
}
|