123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.example.zhpan.banner.net;
- /**
- * <pre>
- * Created by zhangpan on 2019-08-14.
- * Description:
- * </pre>
- */
- public class BannerData {
- /**
- * desc :
- * id : 20
- * imagePath : https://www.wanandroid.com/blogimgs/90c6cc12-742e-4c9f-b318-b912f163b8d0.png
- * isVisible : 1
- * order : 2
- * title : flutter 中文社区
- * type : 1
- * url : https://flutter.cn/
- */
- public static final int TYPE_NEW = 10000;
- private String desc;
- private int id;
- private String imagePath;
- private int isVisible;
- private int order;
- private String title;
- private int type;
- private String url;
- private int drawable;
- public int getDrawable() {
- return drawable;
- }
- public void setDrawable(int drawable) {
- this.drawable = drawable;
- }
- public String getDesc() {
- return desc;
- }
- public void setDesc(String desc) {
- this.desc = desc;
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public String getImagePath() {
- return imagePath;
- }
- public void setImagePath(String imagePath) {
- this.imagePath = imagePath;
- }
- public int getIsVisible() {
- return isVisible;
- }
- public void setIsVisible(int isVisible) {
- this.isVisible = isVisible;
- }
- public int getOrder() {
- return order;
- }
- public void setOrder(int order) {
- this.order = order;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public int getType() {
- return type;
- }
- public void setType(int type) {
- this.type = type;
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- }
|