DT008Response.java 1.21 KB
Newer Older
xucl committed
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
package com.fadu.app.bean.b;

import com.fadu.app.bean.BaseResponse;

public class DT008Response extends BaseResponse{
    private int wxProgramType;// 0 正式版,1 开发版,2 体验版

    private String shareTitle;//分享标题

    private String shareDesc;//分享描述

    private String friendPicUrl;

    private String miniProgramPath;

    public int getWxProgramType() {
        return wxProgramType;
    }

    public void setWxProgramType(int wxProgramType) {
        this.wxProgramType = wxProgramType;
    }

    public String getShareTitle() {
        return shareTitle;
    }

    public void setShareTitle(String shareTitle) {
        this.shareTitle = shareTitle;
    }

    public String getShareDesc() {
        return shareDesc;
    }

    public void setShareDesc(String shareDesc) {
        this.shareDesc = shareDesc;
    }

    public String getFriendPicUrl() {
        return friendPicUrl;
    }

    public void setFriendPicUrl(String friendPicUrl) {
        this.friendPicUrl = friendPicUrl;
    }

    public String getMiniProgramPath() {
        return miniProgramPath;
    }

    public void setMiniProgramPath(String miniProgramPath) {
        this.miniProgramPath = miniProgramPath;
    }
}