riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
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
55
56
package cn.flightfeather.thirdappmodule.bean.entity;
 
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Generated;
import org.greenrobot.greendao.annotation.Id;
import org.greenrobot.greendao.annotation.Property;
 
/**
 * @author riku
 * Date: 2020/4/18
 */
@Entity
public class MediaFileCache {
    @Id(autoincrement = true)
    private Long id;
    @Property
    private String url;
    @Property
    private String path;
    @Property
    private String thumbnailPath;
    @Generated(hash = 554333244)
    public MediaFileCache(Long id, String url, String path, String thumbnailPath) {
        this.id = id;
        this.url = url;
        this.path = path;
        this.thumbnailPath = thumbnailPath;
    }
    @Generated(hash = 545339127)
    public MediaFileCache() {
    }
    public Long getId() {
        return this.id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public String getUrl() {
        return this.url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    public String getPath() {
        return this.path;
    }
    public void setPath(String path) {
        this.path = path;
    }
    public String getThumbnailPath() {
        return this.thumbnailPath;
    }
    public void setThumbnailPath(String thumbnailPath) {
        this.thumbnailPath = thumbnailPath;
    }
}