From ad3ac53da1c3a11a96ae62d790aa61a81b9eab91 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 20 三月 2021 18:47:23 +0800 Subject: [PATCH] 完善APP首页顶部标签栏兼容,初步处理推送 --- src/main/java/com/yeshi/buwan/domain/HomeType.java | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 85 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/domain/HomeType.java b/src/main/java/com/yeshi/buwan/domain/HomeType.java index 4d199ee..da930cf 100644 --- a/src/main/java/com/yeshi/buwan/domain/HomeType.java +++ b/src/main/java/com/yeshi/buwan/domain/HomeType.java @@ -1,13 +1,17 @@ package com.yeshi.buwan.domain; import java.io.Serializable; +import java.math.BigDecimal; import java.util.List; import javax.persistence.Entity; import javax.persistence.ManyToOne; +import javax.persistence.Transient; import javax.validation.constraints.Pattern; +import com.alibaba.fastjson.JSONObject; import com.google.gson.annotations.Expose; +import com.yeshi.buwan.domain.jump.JumpDetail; import com.yeshi.buwan.domain.system.SystemInfo; /** @@ -37,6 +41,11 @@ private String params; @Expose private boolean hasMore; + + //鏄惁闇�瑕佸~鍏呭箍鍛� + @Expose + private boolean needAd; + @Expose private String iosControl; @Expose @@ -51,9 +60,33 @@ @Expose private int number;// 鏄剧ず澶氬皯涓� + @Expose + @Transient + private HomeTypeAd ad; + private SystemInfo system; private VideoType videoType; //20170914 + + //涓撻鍏抽敭瀛� + private String specialDataKey; + + public HomeTypeAd getAd() { + return ad; + } + + public void setAd(HomeTypeAd ad) { + this.ad = ad; + } + + public boolean isNeedAd() { + return needAd; + } + + public void setNeedAd(boolean needAd) { + this.needAd = needAd; + } + public String getIcon() { return icon; @@ -210,4 +243,56 @@ public void setSystem(SystemInfo system) { this.system = system; } + + + public String getSpecialDataKey() { + return specialDataKey; + } + + public void setSpecialDataKey(String specialDataKey) { + this.specialDataKey = specialDataKey; + } + + public static class HomeTypeAd { + @Expose + private String picture; + @Expose + private BigDecimal pictureRate; + @Expose + private JumpDetail jumpDetail; + @Expose + private String params; + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + public BigDecimal getPictureRate() { + return pictureRate; + } + + public void setPictureRate(BigDecimal pictureRate) { + this.pictureRate = pictureRate; + } + + public JumpDetail getJumpDetail() { + return jumpDetail; + } + + public void setJumpDetail(JumpDetail jumpDetail) { + this.jumpDetail = jumpDetail; + } + + public String getParams() { + return params; + } + + public void setParams(String params) { + this.params = params; + } + } } -- Gitblit v1.8.0