package com.yeshi.location.app.service.query.sos;
|
|
import java.util.Date;
|
|
public class SOSRecordQuery {
|
private Long uid;
|
private Date maxCreateTime;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Date getMaxCreateTime() {
|
return maxCreateTime;
|
}
|
|
public void setMaxCreateTime(Date maxCreateTime) {
|
this.maxCreateTime = maxCreateTime;
|
}
|
}
|