package com.ks.tool.bkz.entity;
|
|
import com.ks.tool.bkz.dto.FirstOrderSubInfoRecommendTitleDTO;
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Document(collection = "firstOrderSubInfo")
|
public class FirstOrderSubInfo {
|
@Field
|
private Integer activityPrice;
|
@Field
|
private String brandLogo;
|
@Field
|
private String brandName;
|
@Field
|
private String entitySource;
|
@Id
|
private String id;
|
@Field
|
private BigDecimal itemActPrice;
|
@Field
|
private String itemDesc;
|
@Field
|
private String itemId;
|
@Field
|
private String itemImg;
|
@Field
|
private String itemPrice;
|
@Field
|
private String itemType;
|
@Field
|
private String itemUrl;
|
@Field
|
private String monthSellNum;
|
@Field
|
private String npcCnt;
|
@Field
|
private String promotionAmount;
|
@Field
|
private int promotionDisplayAmount;
|
@Field
|
private BigDecimal promotionPrice;
|
@Field
|
private String promotionTag;
|
@Field
|
private String promotionValue;
|
@Field
|
private String remainStock;
|
@Field
|
private String sellerUrl;
|
@Field
|
private String shopTitle;
|
@Field
|
private String shortTitle;
|
@Field
|
private String title;
|
@Field
|
private Date createTime;
|
@Field
|
private Date updateTime;
|
@Field
|
private FirstOrderSubInfoRecommendTitleDTO recommendTitle;
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
|
public Integer getActivityPrice() {
|
return activityPrice;
|
}
|
|
public void setActivityPrice(Integer activityPrice) {
|
this.activityPrice = activityPrice;
|
}
|
|
public String getBrandLogo() {
|
return brandLogo;
|
}
|
|
public void setBrandLogo(String brandLogo) {
|
this.brandLogo = brandLogo;
|
}
|
|
public String getBrandName() {
|
return brandName;
|
}
|
|
public void setBrandName(String brandName) {
|
this.brandName = brandName;
|
}
|
|
public String getEntitySource() {
|
return entitySource;
|
}
|
|
public void setEntitySource(String entitySource) {
|
this.entitySource = entitySource;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public BigDecimal getItemActPrice() {
|
return itemActPrice;
|
}
|
|
public void setItemActPrice(BigDecimal itemActPrice) {
|
this.itemActPrice = itemActPrice;
|
}
|
|
public String getItemDesc() {
|
return itemDesc;
|
}
|
|
public void setItemDesc(String itemDesc) {
|
this.itemDesc = itemDesc;
|
}
|
|
public String getItemId() {
|
return itemId;
|
}
|
|
public void setItemId(String itemId) {
|
this.itemId = itemId;
|
}
|
|
public String getItemImg() {
|
return itemImg;
|
}
|
|
public void setItemImg(String itemImg) {
|
this.itemImg = itemImg;
|
}
|
|
public String getItemPrice() {
|
return itemPrice;
|
}
|
|
public void setItemPrice(String itemPrice) {
|
this.itemPrice = itemPrice;
|
}
|
|
public String getItemType() {
|
return itemType;
|
}
|
|
public void setItemType(String itemType) {
|
this.itemType = itemType;
|
}
|
|
public String getItemUrl() {
|
return itemUrl;
|
}
|
|
public void setItemUrl(String itemUrl) {
|
this.itemUrl = itemUrl;
|
}
|
|
public String getMonthSellNum() {
|
return monthSellNum;
|
}
|
|
public void setMonthSellNum(String monthSellNum) {
|
this.monthSellNum = monthSellNum;
|
}
|
|
public String getNpcCnt() {
|
return npcCnt;
|
}
|
|
public void setNpcCnt(String npcCnt) {
|
this.npcCnt = npcCnt;
|
}
|
|
public String getPromotionAmount() {
|
return promotionAmount;
|
}
|
|
public void setPromotionAmount(String promotionAmount) {
|
this.promotionAmount = promotionAmount;
|
}
|
|
public int getPromotionDisplayAmount() {
|
return promotionDisplayAmount;
|
}
|
|
public void setPromotionDisplayAmount(int promotionDisplayAmount) {
|
this.promotionDisplayAmount = promotionDisplayAmount;
|
}
|
|
public BigDecimal getPromotionPrice() {
|
return promotionPrice;
|
}
|
|
public void setPromotionPrice(BigDecimal promotionPrice) {
|
this.promotionPrice = promotionPrice;
|
}
|
|
public String getPromotionTag() {
|
return promotionTag;
|
}
|
|
public void setPromotionTag(String promotionTag) {
|
this.promotionTag = promotionTag;
|
}
|
|
public String getPromotionValue() {
|
return promotionValue;
|
}
|
|
public void setPromotionValue(String promotionValue) {
|
this.promotionValue = promotionValue;
|
}
|
|
public String getRemainStock() {
|
return remainStock;
|
}
|
|
public void setRemainStock(String remainStock) {
|
this.remainStock = remainStock;
|
}
|
|
public String getSellerUrl() {
|
return sellerUrl;
|
}
|
|
public void setSellerUrl(String sellerUrl) {
|
this.sellerUrl = sellerUrl;
|
}
|
|
public String getShopTitle() {
|
return shopTitle;
|
}
|
|
public void setShopTitle(String shopTitle) {
|
this.shopTitle = shopTitle;
|
}
|
|
public String getShortTitle() {
|
return shortTitle;
|
}
|
|
public void setShortTitle(String shortTitle) {
|
this.shortTitle = shortTitle;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public FirstOrderSubInfoRecommendTitleDTO getRecommendTitle() {
|
return recommendTitle;
|
}
|
|
public void setRecommendTitle(FirstOrderSubInfoRecommendTitleDTO recommendTitle) {
|
this.recommendTitle = recommendTitle;
|
}
|
|
|
}
|