2018-07-24 17:17:56 +08:00
|
|
|
package com.nis.domain.log;
|
|
|
|
|
|
2018-12-17 06:32:37 +08:00
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
|
|
2018-07-24 17:17:56 +08:00
|
|
|
public class MmSampleVideoLog extends BaseLogEntity<MmSampleVideoLog>{
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = -1160853324359310439L;
|
|
|
|
|
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="pid",sort=8)
|
2018-07-24 17:17:56 +08:00
|
|
|
private String pid;// 节目ID
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="access_url",sort=9)
|
2018-07-24 17:17:56 +08:00
|
|
|
private String url;// 节目访问地址
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="log_uri",sort=10)
|
2018-07-24 17:17:56 +08:00
|
|
|
private String logUri;// fd现场片段路径
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="referer",sort=11)
|
2018-08-16 16:41:17 +08:00
|
|
|
private String referer;// 入口页面
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="harm_level",sort=12)
|
2018-07-24 17:17:56 +08:00
|
|
|
private Integer level;// 有害级别
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="fd_type",dictType="FD_TYPE",sort=13)
|
2018-07-24 17:17:56 +08:00
|
|
|
private Integer fdType;// fd类型
|
2018-12-17 06:32:37 +08:00
|
|
|
@ExcelField(title="av_protocol",dictType="AV_PROTOCOL",sort=14)
|
2018-07-24 17:17:56 +08:00
|
|
|
private String protocol;// 传输协议
|
2018-12-17 06:32:37 +08:00
|
|
|
|
2018-07-24 17:17:56 +08:00
|
|
|
public String getPid() {
|
|
|
|
|
return pid;
|
|
|
|
|
}
|
|
|
|
|
public void setPid(String pid) {
|
|
|
|
|
this.pid = pid;
|
|
|
|
|
}
|
|
|
|
|
public String getUrl() {
|
|
|
|
|
return url;
|
|
|
|
|
}
|
|
|
|
|
public void setUrl(String url) {
|
|
|
|
|
this.url = url;
|
|
|
|
|
}
|
|
|
|
|
public String getLogUri() {
|
|
|
|
|
return logUri;
|
|
|
|
|
}
|
|
|
|
|
public void setLogUri(String logUri) {
|
|
|
|
|
this.logUri = logUri;
|
|
|
|
|
}
|
2018-08-16 16:41:17 +08:00
|
|
|
public String getReferer() {
|
|
|
|
|
return referer;
|
2018-07-24 17:17:56 +08:00
|
|
|
}
|
2018-08-16 16:41:17 +08:00
|
|
|
public void setReferer(String referer) {
|
|
|
|
|
this.referer = referer;
|
2018-07-24 17:17:56 +08:00
|
|
|
}
|
|
|
|
|
public Integer getLevel() {
|
|
|
|
|
return level;
|
|
|
|
|
}
|
|
|
|
|
public void setLevel(Integer level) {
|
|
|
|
|
this.level = level;
|
|
|
|
|
}
|
|
|
|
|
public Integer getFdType() {
|
|
|
|
|
return fdType;
|
|
|
|
|
}
|
|
|
|
|
public void setFdType(Integer fdType) {
|
|
|
|
|
this.fdType = fdType;
|
|
|
|
|
}
|
|
|
|
|
public String getProtocol() {
|
|
|
|
|
return protocol;
|
|
|
|
|
}
|
|
|
|
|
public void setProtocol(String protocol) {
|
|
|
|
|
this.protocol = protocol;
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
2018-08-16 16:41:17 +08:00
|
|
|
return "MmSampleVideoLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", referer=" + referer + ", level="
|
2018-07-24 17:17:56 +08:00
|
|
|
+ level + ", fdType=" + fdType + ", protocol=" + protocol + "]";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|