MobShareBean.java 1.4 KB
package com.wd.foundation.bean.share;

/**
 * Time:2023/2/7
 * Author:ypf
 * Description:分享
 */
public class MobShareBean {
    /**
     * 功能类型
     */
    private int type;
    /**
     * 功能图标
     */
    private int logo;
    /**
     * 功能标题
     */
    private String describe;

    /**
     * 是否展示收藏图标
     * -1-不展示图标
     * 0-未收藏
     * 1-已收藏
     */
    private int showCollect = -1;
    /**
     * 是否展示点赞图标
     * -1-不展示图标
     */
    private int showLike = -1;




    public MobShareBean(int type, int logo, String describe) {
        this.type = type;
        this.logo = logo;
        this.describe = describe;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public int getLogo() {
        return logo;
    }

    public void setLogo(int logo) {
        this.logo = logo;
    }

    public String getDescribe() {
        return describe;
    }

    public void setDescribe(String describe) {
        this.describe = describe;
    }

    public int getShowCollect() {
        return showCollect;
    }

    public void setShowCollect(int showCollect) {
        this.showCollect = showCollect;
    }

    public int getShowLike() {
        return showLike;
    }

    public void setShowLike(int showLike) {
        this.showLike = showLike;
    }
}