SelectMediaBean.java 829 Bytes
/*
 * Copyright (c) Wondertek Technologies Co., Ltd. 2021-2022. All rights reserved.
 */

package com.wd.foundation.bean.custom;

import com.wd.foundation.bean.base.BaseBean;

/**
 * 用户反馈、新闻报料 图片显示Vo
 *
 * @author : lvjinhui
 * @since : 2022/5/17
 */
public class SelectMediaBean extends BaseBean {

    /**
     * 图片本地路径
     */
    private String sourcePath;

    /**
     * 相机 1, 相册 2
     */
    private int type;

    public String getSourcePath() {
        return sourcePath;
    }

    public void setSourcePath(String sourcePath) {
        this.sourcePath = sourcePath;
    }

    public int getType() {
        return type;
    }

    /**
     * 相机 1, 相册 2
     * 
     * @param type
     */
    public void setType(int type) {
        this.type = type;
    }
}