59 lines
1.3 KiB
Java
59 lines
1.3 KiB
Java
package com.nis.domain.log;
|
|
|
|
public class MmPicIpLog extends BaseLogEntity<MmPicIpLog> {
|
|
|
|
private static final long serialVersionUID = -7759329968597287092L;
|
|
|
|
private String pid;// 节目ID
|
|
private String url;// 节目访问地址
|
|
private String logUri;// fd现场片段路径
|
|
private String referer;// 入口页面
|
|
private Integer level;// 有害级别
|
|
private Integer fdType;// fd类型
|
|
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;
|
|
}
|
|
|
|
}
|