SelectMediaBean.java
829 Bytes
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
/*
* 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;
}
}