package com.tejia.lijin.app.entity;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2017/2/23.
|
*/
|
|
public class FirstCategory implements Serializable {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
@Expose
|
private String picture;
|
@Expose
|
private String type;
|
@Expose
|
private String classId;
|
@Expose
|
private String createtime;
|
@Expose
|
private String orderby;
|
@Expose
|
private String url;
|
@Expose
|
private String key;
|
@Expose
|
private Long swiperBannerId;
|
@Expose
|
private JSONObject params;
|
|
|
public Long getSwiperBannerId() {
|
return swiperBannerId;
|
}
|
|
public void setSwiperBannerId(Long swiperBannerId) {
|
this.swiperBannerId = swiperBannerId;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getClassId() {
|
return classId;
|
}
|
|
public void setClassId(String classId) {
|
this.classId = classId;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
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 getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(String orderby) {
|
this.orderby = orderby;
|
}
|
|
public JSONObject getParams() {
|
return params;
|
}
|
|
public void setParams(JSONObject params) {
|
this.params = params;
|
}
|
}
|