wjc
2025-05-07 b9cc7390e8e8ce64c41c26fb369c98ce669d660c
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.hdl.sdk.link.bean;
 
import java.io.Serializable;
 
import androidx.annotation.NonNull;
 
/**
 * Created by Zoro
 * Created on 2023/11/20
 * description:
 */
public class MMWAreaSpaceBean implements Serializable {
    private String space_id;
    private String space_type;
    private String space_color;
    private String space_name;
    private String x_s;
    private String x_e;
    private String y_s;
    private String y_e;
 
    public String getSpace_id() {
        return space_id == null ? "" : space_id;
    }
 
    public void setSpace_id(@NonNull String space_id) {
        this.space_id = space_id;
    }
 
    public String getSpace_type() {
        return space_type == null ? "" : space_type;
    }
 
    public void setSpace_type(@NonNull String space_type) {
        this.space_type = space_type;
    }
 
    public String getSpace_color() {
        return space_color == null ? "" : space_color;
    }
 
    public void setSpace_color(@NonNull String space_color) {
        this.space_color = space_color;
    }
 
    public String getSpace_name() {
        return space_name == null ? "" : space_name;
    }
 
    public void setSpace_name(@NonNull String space_name) {
        this.space_name = space_name;
    }
 
    public String getX_s() {
        return x_s == null ? "" : x_s;
    }
 
    public void setX_s(@NonNull String x_s) {
        this.x_s = x_s;
    }
 
    public String getX_e() {
        return x_e == null ? "" : x_e;
    }
 
    public void setX_e(@NonNull String x_e) {
        this.x_e = x_e;
    }
 
    public String getY_s() {
        return y_s == null ? "" : y_s;
    }
 
    public void setY_s(@NonNull String y_s) {
        this.y_s = y_s;
    }
 
    public String getY_e() {
        return y_e == null ? "" : y_e;
    }
 
    public void setY_e(@NonNull String y_e) {
        this.y_e = y_e;
    }
}