update 开屏过度动画接口开关

This commit is contained in:
2023-04-20 15:10:57 +08:00
parent 5dcdd3fc5f
commit 79a709a76f
2 changed files with 17 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ import com.alibaba.fastjson.annotation.JSONField;
public class AdBean {
private String mUrl;
private String mLink;
private int animation;//是否使用过度动画
@JSONField(name = "thumb")
public String getUrl() {
@@ -26,4 +27,12 @@ public class AdBean {
public void setLink(String link) {
mLink = link;
}
@JSONField(name = "animation")
public int getAnimation() {
return animation;
}
@JSONField(name = "animation")
public void setAnimation(int animation) {
this.animation = animation;
}
}