ItemMediumBean.java
674 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
package com.wd.foundation.bean.convenience;
import android.net.Uri;
import com.wd.foundation.bean.base.BaseBean;
/**
* 媒体bean
* @author baozhaoxin
* @version [V1.0.0, 2023/9/12]
* @since V1.0.0
*/
public class ItemMediumBean extends BaseBean {
/**
* 文件地址
* */
public Uri filePath;
/**
* 文件类型
* 1图片、2视频、3添加图标
* */
public int mediumType;
/**
* 封面路径
* */
public String coverPath;
/**
* 宽比高大
* */
public boolean wider;
/**
* 是否公开不公开,默认为false :公开
* */
public boolean isNotPublic = false;
}