| | |
| | | package com.yeshi.buwan.domain; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import com.google.gson.annotations.Expose; |
| | | import com.yeshi.buwan.domain.jump.JumpDetail; |
| | | import com.yeshi.buwan.domain.system.SystemInfo; |
| | | |
| | | 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; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 首页的分类 |
| | |
| | | @Expose |
| | | private int number;// 显示多少个 |
| | | |
| | | //刷新的位置 0-无刷新 1-右上角 2-下方 |
| | | @Expose |
| | | private int refreshPosition; |
| | | @Expose |
| | | private String moreTag; |
| | | |
| | | |
| | | private boolean bigPicture; |
| | | |
| | | //数据总数 |
| | | @Expose |
| | | private int count; |
| | | |
| | | |
| | | public boolean isBigPicture() { |
| | | return bigPicture; |
| | | } |
| | | |
| | | public void setBigPicture(boolean bigPicture) { |
| | | this.bigPicture = bigPicture; |
| | | } |
| | | |
| | | public int getCount() { |
| | | return count; |
| | | } |
| | | |
| | | public void setCount(int count) { |
| | | this.count = count; |
| | | } |
| | | |
| | | public int getRefreshPosition() { |
| | | return refreshPosition; |
| | | } |
| | | |
| | | public void setRefreshPosition(int refreshPosition) { |
| | | this.refreshPosition = refreshPosition; |
| | | } |
| | | |
| | | public String getMoreTag() { |
| | | return moreTag; |
| | | } |
| | | |
| | | public void setMoreTag(String moreTag) { |
| | | this.moreTag = moreTag; |
| | | } |
| | | |
| | | @Expose |
| | | @Transient |
| | | private HomeTypeAd ad; |