admin
2021-12-04 c79b1ebed5a42a4cbb2f824232da2a51ff22a9a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
    }
}