68 lines
1.7 KiB
Java
68 lines
1.7 KiB
Java
package com.nis.domain.callback;
|
||
|
||
import com.nis.domain.configuration.BaseCfg;
|
||
import com.nis.util.excel.ExcelField;
|
||
/**
|
||
* http代理文件策略
|
||
* @author nanfang
|
||
*
|
||
*/
|
||
public class ProxyFileResponsePageCfg extends BaseCfg<ProxyFileResponsePageCfg> {
|
||
|
||
private static final long serialVersionUID = -1989406217948847813L;
|
||
public final static String TABLE_NAME = "pxy_profile_response_pages";//对应表名
|
||
private String indexTable = "pxy_profile_response_pages";
|
||
@ExcelField(title="file_desc",sort=1)
|
||
private String fileDesc;//文件描述
|
||
@ExcelField(title="response_file",sort=2)
|
||
private String url;//文件保存的url
|
||
@ExcelField(title="format",sort=3)
|
||
private String contentType;//内容类型,如text/html,取字典表contentType
|
||
private String md5;//文件md5值
|
||
private Long contentLength;//文件长度
|
||
|
||
public String getIndexTable() {
|
||
return indexTable;
|
||
}
|
||
|
||
public void setIndexTable(String indexTable) {
|
||
this.indexTable = indexTable;
|
||
}
|
||
|
||
public ProxyFileResponsePageCfg() {
|
||
super();
|
||
}
|
||
|
||
public String getFileDesc() {
|
||
return fileDesc;
|
||
}
|
||
public void setFileDesc(String fileDesc) {
|
||
this.fileDesc = fileDesc;
|
||
}
|
||
public String getUrl() {
|
||
return url;
|
||
}
|
||
public void setUrl(String url) {
|
||
this.url = url;
|
||
}
|
||
public String getContentType() {
|
||
return contentType;
|
||
}
|
||
public void setContentType(String contentType) {
|
||
this.contentType = contentType;
|
||
}
|
||
public Long getContentLength() {
|
||
return contentLength;
|
||
}
|
||
public void setContentLength(Long contentLength) {
|
||
this.contentLength = contentLength;
|
||
}
|
||
public String getMd5() {
|
||
return md5;
|
||
}
|
||
public void setMd5(String md5) {
|
||
this.md5 = md5;
|
||
}
|
||
|
||
}
|