package com.yeshi.fanli.util.goods.douyin.vo;
|
|
import com.yeshi.fanli.entity.goods.BaseGoodsInfo;
|
|
/**
|
* @author hxh
|
* @title: DYGoods
|
* @description: 抖音商品信息
|
* @date 2022/9/28 10:14
|
*/
|
public class DYGoods extends BaseGoodsInfo {
|
/**
|
* product_id : 3566898027765626183
|
* title : 千可净小白鞋专用去污膏不伤手带海绵擦去污渍膏
|
* is_kol_product : false
|
* price : 990
|
* first_cid : 20073
|
* second_cid : 21125
|
* third_cid : 26764
|
* in_stock : true
|
* sales : 439168
|
* cover : https://p3-aio.ecombdimg.com/obj/ecom-shop-material/RFZoBkS_m_b56b6e4ac369731c1cea6c5d6cd01d28_sx_278669_www800-800
|
* detail_url : https://haohuo.jinritemai.com/views/product/item2?id=3566898027765626183
|
* shop_id : 6985389
|
* shop_name : 蜜斯
|
* coupon_price : 0
|
* cos_ratio : 3600
|
* cos_fee : 356
|
* ext : req_id=cefc005b-e4c7-4d23-8605-95427fe3534a&product_id=3566898027765626183
|
*/
|
/**
|
* 商品id
|
**/
|
private Long product_id;
|
/**
|
* 商品名称
|
**/
|
private String title;
|
/**
|
* 在穿⼭甲上是否有达⼈特殊佣⾦
|
**/
|
private Boolean is_kol_product;
|
/**
|
* 商品价格,单位分
|
**/
|
private Long price;
|
/**
|
* 商品⼀级类⽬
|
**/
|
private Long first_cid;
|
/**
|
* 商品⼆级类⽬
|
**/
|
private Long second_cid;
|
/**
|
* 商品三级类⽬
|
**/
|
private Long third_cid;
|
/**
|
* 有⽆库存
|
**/
|
private Boolean in_stock;
|
/**
|
* 商品历史销量
|
**/
|
private Integer sales;
|
/**
|
* 商品主图
|
**/
|
private String cover;
|
/**
|
* 商品链接
|
**/
|
private String detail_url;
|
/**
|
* 商铺id
|
**/
|
private Long shop_id;
|
/**
|
* 商铺名称
|
**/
|
private String shop_name;
|
/**
|
* 券后价格,单位分(0或者没传则为
|
* 原价)
|
**/
|
private Long coupon_price;
|
/**
|
* 分佣⽐例,百分⽐乘以 100,⽐如
|
* 1% 返回 1*100 = 100
|
**/
|
private Integer cos_ratio;
|
/**
|
* 佣⾦⾦额,单位分
|
**/
|
private Integer cos_fee;
|
/**
|
* ⼀个加密字段,需要在转链接⼝当
|
* 中回传
|
**/
|
private String ext;
|
|
public Long getProduct_id() {
|
return product_id;
|
}
|
|
public void setProduct_id(Long product_id) {
|
this.product_id = product_id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Boolean isIs_kol_product() {
|
return is_kol_product;
|
}
|
|
public void setIs_kol_product(Boolean is_kol_product) {
|
this.is_kol_product = is_kol_product;
|
}
|
|
public Long getPrice() {
|
return price;
|
}
|
|
public void setPrice(Long price) {
|
this.price = price;
|
}
|
|
public Long getFirst_cid() {
|
return first_cid;
|
}
|
|
public void setFirst_cid(Long first_cid) {
|
this.first_cid = first_cid;
|
}
|
|
public Long getSecond_cid() {
|
return second_cid;
|
}
|
|
public void setSecond_cid(Long second_cid) {
|
this.second_cid = second_cid;
|
}
|
|
public Long getThird_cid() {
|
return third_cid;
|
}
|
|
public void setThird_cid(Long third_cid) {
|
this.third_cid = third_cid;
|
}
|
|
public Boolean isIn_stock() {
|
return in_stock;
|
}
|
|
public void setIn_stock(Boolean in_stock) {
|
this.in_stock = in_stock;
|
}
|
|
public Integer getSales() {
|
return sales;
|
}
|
|
public void setSales(Integer sales) {
|
this.sales = sales;
|
}
|
|
public String getCover() {
|
return cover;
|
}
|
|
public void setCover(String cover) {
|
this.cover = cover;
|
}
|
|
public String getDetail_url() {
|
return detail_url;
|
}
|
|
public void setDetail_url(String detail_url) {
|
this.detail_url = detail_url;
|
}
|
|
public Long getShop_id() {
|
return shop_id;
|
}
|
|
public void setShop_id(Long shop_id) {
|
this.shop_id = shop_id;
|
}
|
|
public String getShop_name() {
|
return shop_name;
|
}
|
|
public void setShop_name(String shop_name) {
|
this.shop_name = shop_name;
|
}
|
|
public Long getCoupon_price() {
|
return coupon_price;
|
}
|
|
public void setCoupon_price(Long coupon_price) {
|
this.coupon_price = coupon_price;
|
}
|
|
public Integer getCos_ratio() {
|
return cos_ratio;
|
}
|
|
public void setCos_ratio(Integer cos_ratio) {
|
this.cos_ratio = cos_ratio;
|
}
|
|
public Integer getCos_fee() {
|
return cos_fee;
|
}
|
|
public void setCos_fee(Integer cos_fee) {
|
this.cos_fee = cos_fee;
|
}
|
|
public String getExt() {
|
return ext;
|
}
|
|
public void setExt(String ext) {
|
this.ext = ext;
|
}
|
}
|