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;
|
}
|
}
|