package com.yeshi.location.app.service.query.sos;
|
|
public class SOSTargetInfoQuery {
|
private String sosId;
|
|
private Long targetUid;
|
|
private Integer status;
|
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Long getTargetUid() {
|
return targetUid;
|
}
|
|
public void setTargetUid(Long targetUid) {
|
this.targetUid = targetUid;
|
}
|
|
public String getSosId() {
|
return sosId;
|
}
|
|
public void setSosId(String sosId) {
|
this.sosId = sosId;
|
}
|
}
|