sdf
This commit is contained in:
46
app/src/main/java/entity/MySimpleHomequEntity.java
Normal file
46
app/src/main/java/entity/MySimpleHomequEntity.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package entity;
|
||||
|
||||
import android.databinding.BaseObservable;
|
||||
import android.databinding.Bindable;
|
||||
import com.sl.house_property.BR;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class MySimpleHomequEntity extends BaseObservable implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Bindable
|
||||
|
||||
private String user_home_id;
|
||||
@Bindable
|
||||
|
||||
private String address;
|
||||
|
||||
private String area;
|
||||
|
||||
|
||||
public String getUser_home_id() {
|
||||
return user_home_id;
|
||||
}
|
||||
|
||||
public void setUser_home_id(String user_home_id) {
|
||||
this.user_home_id = user_home_id;
|
||||
notifyPropertyChanged(BR.user_home_id);
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
notifyPropertyChanged(BR.address);
|
||||
}
|
||||
|
||||
public String getArea() {
|
||||
return area;
|
||||
}
|
||||
|
||||
public void setArea(String area) {
|
||||
this.area = area;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user