107 lines
3.2 KiB
Java
107 lines
3.2 KiB
Java
package entity;
|
|
|
|
import android.databinding.BaseObservable;
|
|
import android.databinding.Bindable;
|
|
|
|
import com.sl.house_property.BR;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class HousekeepingItemDetailEntity extends BaseObservable implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Bindable
|
|
private String serve_content_id;
|
|
@Bindable
|
|
private String serve_content_name;
|
|
@Bindable
|
|
private String serve_category_id;
|
|
@Bindable
|
|
private String serve_category_name;
|
|
@Bindable
|
|
private String serve_content_price;
|
|
@Bindable
|
|
private String serve_pic;
|
|
@Bindable
|
|
private String serve_content_introduce;
|
|
|
|
public String getServe_content_id() {
|
|
return serve_content_id;
|
|
}
|
|
|
|
public void setServe_content_id(String serve_content_id) {
|
|
this.serve_content_id = serve_content_id;
|
|
notifyPropertyChanged(BR.serve_content_id);
|
|
}
|
|
|
|
public String getServe_content_name() {
|
|
return serve_content_name;
|
|
}
|
|
|
|
public void setServe_content_name(String serve_content_name) {
|
|
this.serve_content_name = serve_content_name;
|
|
notifyPropertyChanged(BR.serve_content_name);
|
|
}
|
|
|
|
public String getServe_category_id() {
|
|
return serve_category_id;
|
|
}
|
|
|
|
public void setServe_category_id(String serve_category_id) {
|
|
this.serve_category_id = serve_category_id;
|
|
notifyPropertyChanged(BR.serve_category_id);
|
|
}
|
|
|
|
public String getServe_category_name() {
|
|
return serve_category_name;
|
|
}
|
|
|
|
public void setServe_category_name(String serve_category_name) {
|
|
this.serve_category_name = serve_category_name;
|
|
notifyPropertyChanged(BR.serve_category_name);
|
|
}
|
|
|
|
public String getServe_content_price() {
|
|
return serve_content_price;
|
|
}
|
|
|
|
public void setServe_content_price(String serve_content_price) {
|
|
this.serve_content_price = serve_content_price;
|
|
notifyPropertyChanged(BR.serve_content_price);
|
|
}
|
|
|
|
public String getServe_pic() {
|
|
return serve_pic;
|
|
}
|
|
|
|
public void setServe_pic(String serve_pic) {
|
|
this.serve_pic = serve_pic;
|
|
notifyPropertyChanged(BR.serve_pic);
|
|
}
|
|
|
|
public String getServe_content_introduce() {
|
|
return serve_content_introduce;
|
|
}
|
|
|
|
public void setServe_content_introduce(String serve_content_introduce) {
|
|
this.serve_content_introduce = serve_content_introduce;
|
|
notifyPropertyChanged(BR.serve_content_introduce);
|
|
}
|
|
|
|
public String getServe_hint() {
|
|
return serve_hint;
|
|
}
|
|
|
|
public void setServe_hint(String serve_hint) {
|
|
this.serve_hint = serve_hint;
|
|
notifyPropertyChanged(BR.serve_hint);
|
|
}
|
|
|
|
@Bindable
|
|
|
|
private String serve_hint;
|
|
|
|
|
|
|
|
/* {"serve_content_id":"95","userid":"3","serve_content":{"serve_content_id":"95","serve_content_name":"测试服务","serve_category_id":"2","serve_category_name":"清洁服务","serve_content_price":"200.00","serve_pic":"https://wy.shiningsoft.top/uploads/84/13/a8/87/98/93731c0a4fec975ab377a3.jpg","serve_content_introduce":"https://wy.shiningsoft.top/serve/index/servecontentintroduce?serve_content_id\u003d95","serve_hint":"好好干,干净整洁"}}*/
|
|
}
|