package com.yeshi.fanli.entity.taobao;
|
|
import java.util.Date;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
/**
|
* 新人免单商品
|
*
|
* @author Administrator
|
*
|
*/
|
@Document(collection = "TLJFreeBuyGoods")
|
public class TLJFreeBuyGoods {
|
|
@Id
|
private String id;
|
|
@Field
|
private TaoBaoGoodsBrief goods;
|
|
@Field
|
private String day;
|
|
@Field
|
private Integer weight;
|
|
@Field
|
private Date updateTime;
|
|
public TLJFreeBuyGoods() {}
|
|
|
public TLJFreeBuyGoods(String day, TaoBaoGoodsBrief goods) {
|
this.day = day;
|
this.goods = goods;
|
}
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public TaoBaoGoodsBrief getGoods() {
|
return goods;
|
}
|
|
public void setGoods(TaoBaoGoodsBrief goods) {
|
this.goods = goods;
|
}
|
|
public String getDay() {
|
return day;
|
}
|
|
public void setDay(String day) {
|
this.day = day;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Integer getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Integer weight) {
|
this.weight = weight;
|
}
|
|
}
|