package com.yeshi.fanli.util.goods.douyin.vo;
|
|
/**
|
* @author hxh
|
* @title: DYAggregateH5Result
|
* @description: H5聚合页结果
|
* @date 2022/9/30 15:39
|
*/
|
public class DYAggregateH5Result {
|
|
|
/**
|
* full_screen : {"short_url":"https://v.douyin.com/6WYmLRQ/","qrcode":{"url":"https://p6.douyinpic.com/img/aweme-qrcode/AtwRaG7149074129067460352~c5_360x360.webp?from=1723184758","width":360,"height":360},"share_command":"8:/ 复制此链接,打开抖音,有惊喜等待你。##GVdxmiNANP6w8##","deeplink":"snssdk1128://webview?url=https%3A%2F%2Falliance.jinritemai.com%2Fpages%2Fdistribution-landing%3Fhide_nav_bar%3D1%26hide_status_bar%3D1%26token%3D6WYaymL"}
|
* seven_split_screen : {"short_url":"https://v.douyin.com/6WYbNh8/","qrcode":{"url":"https://p3.douyinpic.com/img/aweme-qrcode/HiSGHV7149074142988404521~c5_360x360.webp?from=1723184758","width":360,"height":360},"share_command":"8复制此链接,打开抖音,有惊:/ 喜等待你。##iRwUU6NP6w8##","deeplink":"snssdk1128://webview?url=https%3A%2F%2Falliance.jinritemai.com%2Fpages%2Fdistribution-landing%3Fhide_nav_bar%3D1%26hide_status_bar%3D1%26token%3D6WYUmKU"}
|
*/
|
|
/**
|
* 跳转抖⾳全屏商品聚合⻚的转链信息
|
**/
|
private ScreenBean full_screen;
|
/**
|
* 跳转抖⾳七分屏商品聚合⻚的转链信息
|
**/
|
private ScreenBean seven_split_screen;
|
|
public ScreenBean getFull_screen() {
|
return full_screen;
|
}
|
|
public void setFull_screen(ScreenBean full_screen) {
|
this.full_screen = full_screen;
|
}
|
|
public ScreenBean getSeven_split_screen() {
|
return seven_split_screen;
|
}
|
|
public void setSeven_split_screen(ScreenBean seven_split_screen) {
|
this.seven_split_screen = seven_split_screen;
|
}
|
|
public static class ScreenBean {
|
/**
|
* short_url : https://v.douyin.com/6WYmLRQ/
|
* qrcode : {"url":"https://p6.douyinpic.com/img/aweme-qrcode/AtwRaG7149074129067460352~c5_360x360.webp?from=1723184758","width":360,"height":360}
|
* share_command : 8:/ 复制此链接,打开抖音,有惊喜等待你。##GVdxmiNANP6w8##
|
* deeplink : snssdk1128://webview?url=https%3A%2F%2Falliance.jinritemai.com%2Fpages%2Fdistribution-landing%3Fhide_nav_bar%3D1%26hide_status_bar%3D1%26token%3D6WYaymL
|
*/
|
|
private String short_url;
|
private QrcodeBean qrcode;
|
private String share_command;
|
private String deeplink;
|
|
public String getShort_url() {
|
return short_url;
|
}
|
|
public void setShort_url(String short_url) {
|
this.short_url = short_url;
|
}
|
|
public QrcodeBean getQrcode() {
|
return qrcode;
|
}
|
|
public void setQrcode(QrcodeBean qrcode) {
|
this.qrcode = qrcode;
|
}
|
|
public String getShare_command() {
|
return share_command;
|
}
|
|
public void setShare_command(String share_command) {
|
this.share_command = share_command;
|
}
|
|
public String getDeeplink() {
|
return deeplink;
|
}
|
|
public void setDeeplink(String deeplink) {
|
this.deeplink = deeplink;
|
}
|
|
public static class QrcodeBean {
|
/**
|
* url : https://p6.douyinpic.com/img/aweme-qrcode/AtwRaG7149074129067460352~c5_360x360.webp?from=1723184758
|
* width : 360
|
* height : 360
|
*/
|
|
private String url;
|
private int width;
|
private int height;
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public int getWidth() {
|
return width;
|
}
|
|
public void setWidth(int width) {
|
this.width = width;
|
}
|
|
public int getHeight() {
|
return height;
|
}
|
|
public void setHeight(int height) {
|
this.height = height;
|
}
|
}
|
}
|
|
}
|