This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/log/MmFileDigestLog.java
2018-12-17 08:32:02 +08:00

74 lines
1.7 KiB
Java

package com.nis.domain.log;
import com.nis.util.excel.ExcelField;
import com.wordnik.swagger.annotations.ApiModelProperty;
/**
* @ClassName:MmFileDigestLog
* @author (wx)
* @date 2018年7月16日 下午2:54:23
* @version V1.0
*/
public class MmFileDigestLog extends BaseLogEntity<MmFileDigestLog> {
private static final long serialVersionUID = -6177790560553329386L;
@ExcelField(title="pid",sort=8)
private String pid;// 节目ID
@ExcelField(title="access_url",sort=9)
private String url;// 节目访问地址
@ExcelField(title="log_uri",sort=10)
private String logUri;// fd现场片段路径
@ExcelField(title="referer",sort=11)
private String referer;// 入口页面
@ExcelField(title="harm_level",sort=12)
private Integer level;// 有害级别
@ExcelField(title="fd_type",dictType="FD_TYPE",sort=13)
private Integer fdType;// fd类型
@ExcelField(title="av_protocol",dictType="AV_PROTOCOL",sort=14)
private String protocol;// 传输协议
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;
}
public String getReferer() {
return referer;
}
public void setReferer(String referer) {
this.referer = referer;
}
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;
}
}