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;
|
}
|
|
}
|