From c79b1ebed5a42a4cbb2f824232da2a51ff22a9a1 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 04 十二月 2021 18:25:08 +0800 Subject: [PATCH] 功能完善 --- app/src/main/java/com/yeshi/location/app/service/query/sos/SOSRecordQuery.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/app/src/main/java/com/yeshi/location/app/service/query/sos/SOSRecordQuery.java b/app/src/main/java/com/yeshi/location/app/service/query/sos/SOSRecordQuery.java index dd16115..6841c5a 100644 --- a/app/src/main/java/com/yeshi/location/app/service/query/sos/SOSRecordQuery.java +++ b/app/src/main/java/com/yeshi/location/app/service/query/sos/SOSRecordQuery.java @@ -1,7 +1,10 @@ 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; @@ -10,4 +13,12 @@ public void setUid(Long uid) { this.uid = uid; } + + public Date getMaxCreateTime() { + return maxCreateTime; + } + + public void setMaxCreateTime(Date maxCreateTime) { + this.maxCreateTime = maxCreateTime; + } } -- Gitblit v1.8.0