package cn.flightfeather.thirdapp.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; } }