admin
2021-06-05 ddff7888bf7e754d12fb5fc85a58f3012f456490
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
package com.tejia.lijin.app.entity.share;
 
import android.graphics.Bitmap;
 
public class ShareImageEntity {
    private Bitmap bitmap;
    private String url;
    private String filePath;//文件路径
    private boolean checked;
 
    public boolean isChecked() {
        return checked;
    }
 
    public void setChecked(boolean checked) {
        this.checked = checked;
    }
 
 
    public ShareImageEntity(Bitmap bitmap, String url) {
        this.bitmap = bitmap;
        this.url = url;
    }
 
    public ShareImageEntity(String filePath) {
        this.filePath = filePath;
    }
 
    public Bitmap getBitmap() {
        return bitmap;
    }
 
    public void setBitmap(Bitmap bitmap) {
        this.bitmap = bitmap;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
 
}