admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
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;
            }
        }
    }
 
}