package com.vci.web.query;
|
|
/**
|
* 图片组件的查询对象
|
* @author weidy
|
* @date 2021/3/11
|
*/
|
public class FileImageViewerQuery implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 876530566276018545L;
|
/**
|
* 业务类型
|
*/
|
private String btmType;
|
|
/**
|
* 图片显示的方式
|
*/
|
private String imageType;
|
|
/**
|
* 文件的主键
|
*/
|
private String fileOid;
|
|
/**
|
* 文件的路径
|
*/
|
private String filePath;
|
|
public String getBtmType() {
|
return btmType;
|
}
|
|
public void setBtmType(String btmType) {
|
this.btmType = btmType;
|
}
|
|
public String getImageType() {
|
return imageType;
|
}
|
|
public void setImageType(String imageType) {
|
this.imageType = imageType;
|
}
|
|
public String getFileOid() {
|
return fileOid;
|
}
|
|
public void setFileOid(String fileOid) {
|
this.fileOid = fileOid;
|
}
|
|
public String getFilePath() {
|
return filePath;
|
}
|
|
public void setFilePath(String filePath) {
|
this.filePath = filePath;
|
}
|
|
@Override
|
public String toString() {
|
return "FileImageViewerQuery{" +
|
"btmType='" + btmType + '\'' +
|
", imageType='" + imageType + '\'' +
|
", fileOid='" + fileOid + '\'' +
|
", filePath='" + filePath + '\'' +
|
'}';
|
}
|
}
|