package com.yeshi.fanli.util.goods.douyin.vo;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: DYLiveInfo
|
* @description: 抖音直播信息
|
* @date 2022/9/26 15:28
|
*/
|
public class DYLiveInfo {
|
/**
|
* author_openid : 1@#6ND9iPMOaYtq5zLItnzvdXR9cybYIIT4/AwkF5qtAONlIEb7XvMua3GsaA0rCAsn762v3ePi1vVx/6AnVe/qFvlH43nVZUw=
|
* author_name : 迈特优官方旗舰店
|
* author_pic : https://p3-aio.ecombdimg.com/origin/aweme-avatar/douyin-user-file_64ed7cc0375578292e48e35f234d4927
|
* author_level : 6
|
* product_category : ["服饰内衣"]
|
* average_gmv : 10万-50万
|
* fans_num : 2232391
|
* average_commission_rate : 14.67
|
* room_id : 7147501547499375391
|
* is_live : true
|
* is_ecom : true
|
* gender : male
|
* ext : e86e8d0f-3d75-11ed-8b4b-3436ac1201bd
|
* online_num : 589
|
* create_time : 1664157435
|
* products : [{}]
|
* lottery_products : [{}]
|
*/
|
/**
|
* 直播间主播openid
|
**/
|
private String author_openid;
|
/**
|
* 昵称
|
**/
|
private String author_name;
|
/**
|
* 头像
|
**/
|
private String author_pic;
|
/**
|
* 达⼈等级
|
**/
|
private int author_level;
|
/**
|
* 场均gmv
|
**/
|
private String average_gmv;
|
/**
|
* 粉丝数量
|
**/
|
private int fans_num;
|
/**
|
* 平均佣⾦率
|
**/
|
private String average_commission_rate;
|
/**
|
* 直播间id
|
**/
|
private String room_id;
|
/**
|
* 是否正在直播
|
**/
|
private boolean is_live;
|
/**
|
*
|
**/
|
private boolean is_ecom;
|
/**
|
* 性别 male/ female/
|
**/
|
private String gender;
|
/**
|
* 内部⽣成的加密字段。直播间转
|
* 链请求的live_ext应填此字段
|
**/
|
private String ext;
|
/**
|
* 查询时刻在线⼈数
|
**/
|
private int online_num;
|
/**
|
* 开播时间戳
|
**/
|
private int create_time;
|
/**
|
* 商品类别
|
**/
|
private List<String> product_category;
|
/**
|
* 直播间挂⻋的商品信息
|
**/
|
private List<ProductsBean> products;
|
/**
|
*
|
**/
|
private List<LotteryProductsBean> lottery_products;
|
|
public String getAuthor_openid() {
|
return author_openid;
|
}
|
|
public void setAuthor_openid(String author_openid) {
|
this.author_openid = author_openid;
|
}
|
|
public String getAuthor_name() {
|
return author_name;
|
}
|
|
public void setAuthor_name(String author_name) {
|
this.author_name = author_name;
|
}
|
|
public String getAuthor_pic() {
|
return author_pic;
|
}
|
|
public void setAuthor_pic(String author_pic) {
|
this.author_pic = author_pic;
|
}
|
|
public int getAuthor_level() {
|
return author_level;
|
}
|
|
public void setAuthor_level(int author_level) {
|
this.author_level = author_level;
|
}
|
|
public String getAverage_gmv() {
|
return average_gmv;
|
}
|
|
public void setAverage_gmv(String average_gmv) {
|
this.average_gmv = average_gmv;
|
}
|
|
public int getFans_num() {
|
return fans_num;
|
}
|
|
public void setFans_num(int fans_num) {
|
this.fans_num = fans_num;
|
}
|
|
public String getAverage_commission_rate() {
|
return average_commission_rate;
|
}
|
|
public void setAverage_commission_rate(String average_commission_rate) {
|
this.average_commission_rate = average_commission_rate;
|
}
|
|
public String getRoom_id() {
|
return room_id;
|
}
|
|
public void setRoom_id(String room_id) {
|
this.room_id = room_id;
|
}
|
|
public boolean isIs_live() {
|
return is_live;
|
}
|
|
public void setIs_live(boolean is_live) {
|
this.is_live = is_live;
|
}
|
|
public boolean isIs_ecom() {
|
return is_ecom;
|
}
|
|
public void setIs_ecom(boolean is_ecom) {
|
this.is_ecom = is_ecom;
|
}
|
|
public String getGender() {
|
return gender;
|
}
|
|
public void setGender(String gender) {
|
this.gender = gender;
|
}
|
|
public String getExt() {
|
return ext;
|
}
|
|
public void setExt(String ext) {
|
this.ext = ext;
|
}
|
|
public int getOnline_num() {
|
return online_num;
|
}
|
|
public void setOnline_num(int online_num) {
|
this.online_num = online_num;
|
}
|
|
public int getCreate_time() {
|
return create_time;
|
}
|
|
public void setCreate_time(int create_time) {
|
this.create_time = create_time;
|
}
|
|
public List<String> getProduct_category() {
|
return product_category;
|
}
|
|
public void setProduct_category(List<String> product_category) {
|
this.product_category = product_category;
|
}
|
|
public List<ProductsBean> getProducts() {
|
return products;
|
}
|
|
public void setProducts(List<ProductsBean> products) {
|
this.products = products;
|
}
|
|
public List<LotteryProductsBean> getLottery_products() {
|
return lottery_products;
|
}
|
|
public void setLottery_products(List<LotteryProductsBean> lottery_products) {
|
this.lottery_products = lottery_products;
|
}
|
|
public static class ProductsBean {
|
|
|
/**
|
* product_id : 3557841818521569758
|
* title : 【浮雕透气】2022夏季新款男女休闲运动无袖背心短裤套装 3083
|
* price : 15990
|
* first_cid : 20009
|
* first_cname : 男装
|
* second_cid : 20192
|
* second_cname : 套装
|
* third_cid : 22419
|
* third_cname : 休闲运动套装
|
* in_stock : true
|
* sales : 4066
|
* cover : https://p3-aio.ecombdimg.com/obj/ecom-shop-material/v1_WNxCemZY_71116845633065290590856_fd8fdb82ded95deac8a3325c6070455d_sx_90073_www720-720
|
* detail_url : https://haohuo.jinritemai.com/views/product/item2?id=3557841818521569758
|
* shop_id : 12502856
|
* shop_name : 迈特优官方旗舰店
|
* coupon_price : 6990
|
* cos_ratio : 2500
|
* cos_fee : 1572
|
* old_fans_cos_ratio : 5000
|
* old_fans_cos_fee : 3145
|
* ext :
|
* is_explaining : false
|
* has_given_product : false
|
*/
|
|
private long product_id;
|
private String title;
|
private int price;
|
private int first_cid;
|
private String first_cname;
|
private int second_cid;
|
private String second_cname;
|
private int third_cid;
|
private String third_cname;
|
private boolean in_stock;
|
private int sales;
|
private String cover;
|
private String detail_url;
|
private int shop_id;
|
private String shop_name;
|
private int coupon_price;
|
private int cos_ratio;
|
private int cos_fee;
|
private int old_fans_cos_ratio;
|
private int old_fans_cos_fee;
|
private String ext;
|
private boolean is_explaining;
|
private boolean has_given_product;
|
|
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 int getPrice() {
|
return price;
|
}
|
|
public void setPrice(int price) {
|
this.price = price;
|
}
|
|
public int getFirst_cid() {
|
return first_cid;
|
}
|
|
public void setFirst_cid(int first_cid) {
|
this.first_cid = first_cid;
|
}
|
|
public String getFirst_cname() {
|
return first_cname;
|
}
|
|
public void setFirst_cname(String first_cname) {
|
this.first_cname = first_cname;
|
}
|
|
public int getSecond_cid() {
|
return second_cid;
|
}
|
|
public void setSecond_cid(int second_cid) {
|
this.second_cid = second_cid;
|
}
|
|
public String getSecond_cname() {
|
return second_cname;
|
}
|
|
public void setSecond_cname(String second_cname) {
|
this.second_cname = second_cname;
|
}
|
|
public int getThird_cid() {
|
return third_cid;
|
}
|
|
public void setThird_cid(int third_cid) {
|
this.third_cid = third_cid;
|
}
|
|
public String getThird_cname() {
|
return third_cname;
|
}
|
|
public void setThird_cname(String third_cname) {
|
this.third_cname = third_cname;
|
}
|
|
public boolean isIn_stock() {
|
return in_stock;
|
}
|
|
public void setIn_stock(boolean in_stock) {
|
this.in_stock = in_stock;
|
}
|
|
public int getSales() {
|
return sales;
|
}
|
|
public void setSales(int 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 int getShop_id() {
|
return shop_id;
|
}
|
|
public void setShop_id(int 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 int getCoupon_price() {
|
return coupon_price;
|
}
|
|
public void setCoupon_price(int coupon_price) {
|
this.coupon_price = coupon_price;
|
}
|
|
public int getCos_ratio() {
|
return cos_ratio;
|
}
|
|
public void setCos_ratio(int cos_ratio) {
|
this.cos_ratio = cos_ratio;
|
}
|
|
public int getCos_fee() {
|
return cos_fee;
|
}
|
|
public void setCos_fee(int cos_fee) {
|
this.cos_fee = cos_fee;
|
}
|
|
public int getOld_fans_cos_ratio() {
|
return old_fans_cos_ratio;
|
}
|
|
public void setOld_fans_cos_ratio(int old_fans_cos_ratio) {
|
this.old_fans_cos_ratio = old_fans_cos_ratio;
|
}
|
|
public int getOld_fans_cos_fee() {
|
return old_fans_cos_fee;
|
}
|
|
public void setOld_fans_cos_fee(int old_fans_cos_fee) {
|
this.old_fans_cos_fee = old_fans_cos_fee;
|
}
|
|
public String getExt() {
|
return ext;
|
}
|
|
public void setExt(String ext) {
|
this.ext = ext;
|
}
|
|
public boolean isIs_explaining() {
|
return is_explaining;
|
}
|
|
public void setIs_explaining(boolean is_explaining) {
|
this.is_explaining = is_explaining;
|
}
|
|
public boolean isHas_given_product() {
|
return has_given_product;
|
}
|
|
public void setHas_given_product(boolean has_given_product) {
|
this.has_given_product = has_given_product;
|
}
|
}
|
|
public static class LotteryProductsBean {
|
|
|
/**
|
* product_id : 3572489218263492280
|
* title : YHBM42A5HX873随机颜色尺码发货 短袖t恤男夏季新款潮流42
|
* price : 9900
|
* first_cid : 20009
|
* first_cname : 男装
|
* second_cid : 20172
|
* second_cname : T恤
|
* third_cid : 0
|
* third_cname :
|
* in_stock : true
|
* sales : 0
|
* cover : https://p9-aio.ecombdimg.com/obj/ecom-shop-material/v1_WNxCemZY_71083070041840683640856_4f1ffc00ec33e4c933c9c181e88042cc_sx_365628_www800-800
|
* detail_url :
|
* shop_id : 0
|
* shop_name :
|
* coupon_price : 0
|
* cos_ratio : 2500
|
* cos_fee : 0
|
* old_fans_cos_ratio : 5000
|
* old_fans_cos_fee : 0
|
* ext :
|
* is_explaining : false
|
* has_given_product : false
|
* lottery_activity_info : {"lottery_activity_id":7147492334950777100,"lottery_product_start_time":1664159397,"lottery_product_end_time":1664159997}
|
*/
|
|
private long product_id;
|
private String title;
|
private int price;
|
private int first_cid;
|
private String first_cname;
|
private int second_cid;
|
private String second_cname;
|
private int third_cid;
|
private String third_cname;
|
private boolean in_stock;
|
private int sales;
|
private String cover;
|
private String detail_url;
|
private int shop_id;
|
private String shop_name;
|
private int coupon_price;
|
private int cos_ratio;
|
private int cos_fee;
|
private int old_fans_cos_ratio;
|
private int old_fans_cos_fee;
|
private String ext;
|
private boolean is_explaining;
|
private boolean has_given_product;
|
private LotteryActivityInfoBean lottery_activity_info;
|
|
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 int getPrice() {
|
return price;
|
}
|
|
public void setPrice(int price) {
|
this.price = price;
|
}
|
|
public int getFirst_cid() {
|
return first_cid;
|
}
|
|
public void setFirst_cid(int first_cid) {
|
this.first_cid = first_cid;
|
}
|
|
public String getFirst_cname() {
|
return first_cname;
|
}
|
|
public void setFirst_cname(String first_cname) {
|
this.first_cname = first_cname;
|
}
|
|
public int getSecond_cid() {
|
return second_cid;
|
}
|
|
public void setSecond_cid(int second_cid) {
|
this.second_cid = second_cid;
|
}
|
|
public String getSecond_cname() {
|
return second_cname;
|
}
|
|
public void setSecond_cname(String second_cname) {
|
this.second_cname = second_cname;
|
}
|
|
public int getThird_cid() {
|
return third_cid;
|
}
|
|
public void setThird_cid(int third_cid) {
|
this.third_cid = third_cid;
|
}
|
|
public String getThird_cname() {
|
return third_cname;
|
}
|
|
public void setThird_cname(String third_cname) {
|
this.third_cname = third_cname;
|
}
|
|
public boolean isIn_stock() {
|
return in_stock;
|
}
|
|
public void setIn_stock(boolean in_stock) {
|
this.in_stock = in_stock;
|
}
|
|
public int getSales() {
|
return sales;
|
}
|
|
public void setSales(int 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 int getShop_id() {
|
return shop_id;
|
}
|
|
public void setShop_id(int 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 int getCoupon_price() {
|
return coupon_price;
|
}
|
|
public void setCoupon_price(int coupon_price) {
|
this.coupon_price = coupon_price;
|
}
|
|
public int getCos_ratio() {
|
return cos_ratio;
|
}
|
|
public void setCos_ratio(int cos_ratio) {
|
this.cos_ratio = cos_ratio;
|
}
|
|
public int getCos_fee() {
|
return cos_fee;
|
}
|
|
public void setCos_fee(int cos_fee) {
|
this.cos_fee = cos_fee;
|
}
|
|
public int getOld_fans_cos_ratio() {
|
return old_fans_cos_ratio;
|
}
|
|
public void setOld_fans_cos_ratio(int old_fans_cos_ratio) {
|
this.old_fans_cos_ratio = old_fans_cos_ratio;
|
}
|
|
public int getOld_fans_cos_fee() {
|
return old_fans_cos_fee;
|
}
|
|
public void setOld_fans_cos_fee(int old_fans_cos_fee) {
|
this.old_fans_cos_fee = old_fans_cos_fee;
|
}
|
|
public String getExt() {
|
return ext;
|
}
|
|
public void setExt(String ext) {
|
this.ext = ext;
|
}
|
|
public boolean isIs_explaining() {
|
return is_explaining;
|
}
|
|
public void setIs_explaining(boolean is_explaining) {
|
this.is_explaining = is_explaining;
|
}
|
|
public boolean isHas_given_product() {
|
return has_given_product;
|
}
|
|
public void setHas_given_product(boolean has_given_product) {
|
this.has_given_product = has_given_product;
|
}
|
|
public LotteryActivityInfoBean getLottery_activity_info() {
|
return lottery_activity_info;
|
}
|
|
public void setLottery_activity_info(LotteryActivityInfoBean lottery_activity_info) {
|
this.lottery_activity_info = lottery_activity_info;
|
}
|
|
public static class LotteryActivityInfoBean {
|
/**
|
* lottery_activity_id : 7147492334950777100
|
* lottery_product_start_time : 1664159397
|
* lottery_product_end_time : 1664159997
|
*/
|
|
private long lottery_activity_id;
|
private int lottery_product_start_time;
|
private int lottery_product_end_time;
|
|
public long getLottery_activity_id() {
|
return lottery_activity_id;
|
}
|
|
public void setLottery_activity_id(long lottery_activity_id) {
|
this.lottery_activity_id = lottery_activity_id;
|
}
|
|
public int getLottery_product_start_time() {
|
return lottery_product_start_time;
|
}
|
|
public void setLottery_product_start_time(int lottery_product_start_time) {
|
this.lottery_product_start_time = lottery_product_start_time;
|
}
|
|
public int getLottery_product_end_time() {
|
return lottery_product_end_time;
|
}
|
|
public void setLottery_product_end_time(int lottery_product_end_time) {
|
this.lottery_product_end_time = lottery_product_end_time;
|
}
|
}
|
}
|
}
|