package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2017/3/8.
|
*/
|
|
public class RecommendSection implements Serializable {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
@Expose
|
private String orderby;
|
@Expose
|
private String show;
|
@Expose
|
private String createtime;
|
@Expose
|
private String counts;
|
@Expose
|
private String jumpUrl;
|
@Expose
|
private String picUrl;
|
|
public String getJumpUrl() {
|
return jumpUrl;
|
}
|
|
public void setJumpUrl(String jumpUrl) {
|
this.jumpUrl = jumpUrl;
|
}
|
|
public String getPicUrl() {
|
return picUrl;
|
}
|
|
public void setPicUrl(String picUrl) {
|
this.picUrl = picUrl;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(String orderby) {
|
this.orderby = orderby;
|
}
|
|
public String getShow() {
|
return show;
|
}
|
|
public void setShow(String show) {
|
this.show = show;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getCounts() {
|
return counts;
|
}
|
|
public void setCounts(String counts) {
|
this.counts = counts;
|
}
|
}
|