admin
2021-04-28 a7454d8a6325566753358b37ffabfae2faa0ca7f
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
package com.yeshi.fanli.vo.pdd;
 
import com.yeshi.fanli.vo.common.WXXCXJumpInfoVO;
 
/**
 * 拼多多跳转链接
 */
public class PDDJumpLinkVO {
    private String jumpLink;
    private boolean _native;
    private String nativeJumpLink;
    private WXXCXJumpInfoVO wxxcxJumpInfo;
 
    public String getJumpLink() {
        return jumpLink;
    }
 
    public void setJumpLink(String jumpLink) {
        this.jumpLink = jumpLink;
    }
 
 
    public boolean is_native() {
        return _native;
    }
 
    public void set_native(boolean _native) {
        this._native = _native;
    }
 
    public String getNativeJumpLink() {
        return nativeJumpLink;
    }
 
    public void setNativeJumpLink(String nativeJumpLink) {
        this.nativeJumpLink = nativeJumpLink;
    }
 
    public WXXCXJumpInfoVO getWxxcxJumpInfo() {
        return wxxcxJumpInfo;
    }
 
    public void setWxxcxJumpInfo(WXXCXJumpInfoVO wxxcxJumpInfo) {
        this.wxxcxJumpInfo = wxxcxJumpInfo;
    }
}