package com.yeshi.fanli.dto.taobao.koubei;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: KouBeiGoodsDTO
|
* @description: 口碑商品
|
* @date 2021/11/25 17:51
|
*/
|
public class KouBeiGoodsDTO {
|
|
|
/**
|
* apply_shop_num : 1
|
* commission : 24.00
|
* discount : 0.028591953
|
* image_url : https://img.alicdn.com/i4/2212708618441/O1CN01s2e1Fk2CE1uS6QfnL_!!2212708618441-0-koubei.jpg
|
* item_id : 660118081713
|
* item_sale_end_time : 1644681599
|
* item_sale_start_time : 1636646400
|
* original_price : 696.0
|
* price : 19.9
|
* stock : 20
|
* title : 多国留学规划咨询
|
* valid_cities : {"string":["成都"]}
|
* wx_app_id : wx7d26a9e29d2a69c7
|
* wx_path : ad-bdlm/pages/guide/index?scene=1f6ee87254fd4526af0eb098979684c2
|
*/
|
|
private Integer apply_shop_num;//商品可适用门店数量
|
private String commission;//预估佣金,单位元
|
private BigDecimal discount;//折扣
|
private String image_url;//商品图片
|
private Long item_id;//商品标题
|
private Long item_sale_end_time;//商品可售卖结束时间
|
private Long item_sale_start_time;//商品可售卖开始时间
|
private String original_price;//原始价格,单位元
|
private String price;//售卖价格,折扣后价格
|
private Integer stock;//库存
|
private String title;//商品标题
|
private ValidCitiesBean valid_cities;//可使用城市列表
|
private String wx_app_id;//口碑微信小程序appId
|
private String wx_path;//点击商品后,微信小程序的承接页
|
|
public Integer getApply_shop_num() {
|
return apply_shop_num;
|
}
|
|
public void setApply_shop_num(Integer apply_shop_num) {
|
this.apply_shop_num = apply_shop_num;
|
}
|
|
public String getCommission() {
|
return commission;
|
}
|
|
public void setCommission(String commission) {
|
this.commission = commission;
|
}
|
|
public BigDecimal getDiscount() {
|
return discount;
|
}
|
|
public void setDiscount(BigDecimal discount) {
|
this.discount = discount;
|
}
|
|
public String getImage_url() {
|
return image_url;
|
}
|
|
public void setImage_url(String image_url) {
|
this.image_url = image_url;
|
}
|
|
public Long getItem_id() {
|
return item_id;
|
}
|
|
public void setItem_id(Long item_id) {
|
this.item_id = item_id;
|
}
|
|
public Long getItem_sale_end_time() {
|
return item_sale_end_time;
|
}
|
|
public void setItem_sale_end_time(Long item_sale_end_time) {
|
this.item_sale_end_time = item_sale_end_time;
|
}
|
|
public Long getItem_sale_start_time() {
|
return item_sale_start_time;
|
}
|
|
public void setItem_sale_start_time(Long item_sale_start_time) {
|
this.item_sale_start_time = item_sale_start_time;
|
}
|
|
public String getOriginal_price() {
|
return original_price;
|
}
|
|
public void setOriginal_price(String original_price) {
|
this.original_price = original_price;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public Integer getStock() {
|
return stock;
|
}
|
|
public void setStock(Integer stock) {
|
this.stock = stock;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public ValidCitiesBean getValid_cities() {
|
return valid_cities;
|
}
|
|
public void setValid_cities(ValidCitiesBean valid_cities) {
|
this.valid_cities = valid_cities;
|
}
|
|
public String getWx_app_id() {
|
return wx_app_id;
|
}
|
|
public void setWx_app_id(String wx_app_id) {
|
this.wx_app_id = wx_app_id;
|
}
|
|
public String getWx_path() {
|
return wx_path;
|
}
|
|
public void setWx_path(String wx_path) {
|
this.wx_path = wx_path;
|
}
|
|
public static class ValidCitiesBean {
|
private List<String> string;
|
|
public List<String> getString() {
|
return string;
|
}
|
|
public void setString(List<String> string) {
|
this.string = string;
|
}
|
}
|
}
|