56 lines
1.6 KiB
Java
56 lines
1.6 KiB
Java
|
|
package entity;
|
||
|
|
|
||
|
|
import android.databinding.BaseObservable;
|
||
|
|
import android.databinding.Bindable;
|
||
|
|
import com.sl.house_property.BR;
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.util.ArrayList;
|
||
|
|
|
||
|
|
public class MainF1Entity extends BaseObservable implements Serializable {//首页所有数据
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
@Bindable
|
||
|
|
private String userid;
|
||
|
|
@Bindable
|
||
|
|
private ArrayList<Advert_carouseleEntity> advert_carousel;
|
||
|
|
@Bindable
|
||
|
|
private ArrayList<Advertorial_listEntity> advertorial_list;
|
||
|
|
|
||
|
|
public String getUserid() {
|
||
|
|
return userid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUserid(String userid) {
|
||
|
|
this.userid = userid;
|
||
|
|
notifyPropertyChanged(BR.userid);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ArrayList<Advert_carouseleEntity> getAdvert_carousel() {
|
||
|
|
return advert_carousel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAdvert_carousel(ArrayList<Advert_carouseleEntity> advert_carousel) {
|
||
|
|
this.advert_carousel = advert_carousel;
|
||
|
|
notifyPropertyChanged(BR.advert_carousel);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ArrayList<Advertorial_listEntity> getAdvertorial_list() {
|
||
|
|
return advertorial_list;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAdvertorial_list(ArrayList<Advertorial_listEntity> advertorial_list) {
|
||
|
|
this.advertorial_list = advertorial_list;
|
||
|
|
notifyPropertyChanged(BR.advertorial_list);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ArrayList<Message_listEntity> getMessage_list() {
|
||
|
|
return message_list;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setMessage_list(ArrayList<Message_listEntity> message_list) {
|
||
|
|
this.message_list = message_list;
|
||
|
|
notifyPropertyChanged(BR.message_list);
|
||
|
|
}
|
||
|
|
@Bindable
|
||
|
|
private ArrayList<Message_listEntity> message_list;
|
||
|
|
}
|