package com.yeshi.fanli.vo.homemodule;
|
|
import com.google.gson.annotations.Expose;
|
|
public class FloatImgDetailVO {
|
@Expose
|
private String id;
|
@Expose
|
private String img;
|
@Expose
|
private String params;
|
@Expose
|
private Object jumpDetail;
|
@Expose
|
private String showTime;
|
@Expose
|
private boolean accountLogin;
|
@Expose
|
private boolean playSound;
|
|
public boolean isPlaySound() {
|
return playSound;
|
}
|
|
public void setPlaySound(boolean playSound) {
|
this.playSound = playSound;
|
}
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public String getParams() {
|
return params;
|
}
|
|
public void setParams(String params) {
|
this.params = params;
|
}
|
|
public Object getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(Object jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public String getShowTime() {
|
return showTime;
|
}
|
|
public void setShowTime(String showTime) {
|
this.showTime = showTime;
|
}
|
|
public boolean getAccountLogin() {
|
return accountLogin;
|
}
|
|
public void setAccountLogin(boolean accountLogin) {
|
this.accountLogin = accountLogin;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
}
|