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 RecommendSectionGood implements Serializable {
|
@Expose
|
private String id;
|
@Expose
|
private String createtime;
|
@Expose
|
private String orderby;
|
@Expose
|
private TaoBaoGoodsBrief taoBaoGoodsBrief;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
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 TaoBaoGoodsBrief getTaoBaoGoodsBrief() {
|
return taoBaoGoodsBrief;
|
}
|
|
public void setTaoBaoGoodsBrief(TaoBaoGoodsBrief taoBaoGoodsBrief) {
|
this.taoBaoGoodsBrief = taoBaoGoodsBrief;
|
}
|
}
|