⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tomcatlog.java

📁 具备多表组合查询组件功能。通过将表字段与表间关系映射到对象关系及属性
💻 JAVA
字号:
package cn.edu.buaa.ieguam.logmanage.pojos;

import cn.edu.buaa.ieguam.logmanage.Pojo;

public class TomcatLog implements Pojo {
	
	private Integer id = null;
	private Integer auditId = null;
	private String remoteIp = null;
	private String locIp = null;
	private Integer byteSent = null;
	private String reHostName = null;
	private String reqMethod = null;
	private String locPort = null;
	private String queryStr = null;
	private String firstLineReq = null;
	private Integer httpStatus = null;
	private String usrSessId = null;
	private String autherReUsr = null;
	private String reqUrl = null;
	private String locSerName = null;
	private Integer proTime = null;
	private String reQuProtocol = null;
	private String reUsrName = null;
	
	
	
	public void setId(Integer id)
	{
		this.id = id;
	}	
	public void setAuditId(Integer auditId)
	{
		this.auditId = auditId;
	}
	public void setRemoteIp(String remoteIp)
	{
		this.remoteIp = remoteIp;
	}
	public void setLocIp(String locIp)
	{
		this.locIp = locIp;
	}
	public void setByteSent(Integer byteSent)
	{
		this.byteSent = byteSent;
	}
	public void setReHostName(String reHostName)
	{
		this.reHostName = reHostName;
	}
	public void setReqMethod(String reqMethod)
	{
		this.reqMethod = reqMethod;
	}
	public void setLocPort(String locPort)
	{
		this.locPort = locPort;
	}
	public void setQueryStr(String queryStr)
	{
		this.queryStr =  queryStr;
	}
	public void setFirstLineReq(String firstLineReq)
	{
		this.firstLineReq = firstLineReq;
	}
	public void setHttpStatus(Integer httpStatus)
	{
		this.httpStatus = httpStatus;
	}
	public void setUsrSessId(String usrSessId)
	{
		this.usrSessId = usrSessId ;
	}
	public void setAutherReUsr(String autherReUsr)
	{
		this.autherReUsr = autherReUsr;
	}
	public void setReqUrl(String reqUrl)
	{
		this.reqUrl = reqUrl;
	}
	public void setLocSerName(String locSerName)
	{
		this.locSerName = locSerName;
	}
	public void setProTime(Integer proTime)
	{
		this.proTime = proTime;
	}
	public void setReQuProtocol(String reQuProtocol)
	{
		this.reQuProtocol = reQuProtocol;
	}
	public void setReUsrName(String reUsrName)
	{
		this.reUsrName = reUsrName;
	}
	
	public Integer getId()
	{
		return this.id;
	}
	public Integer getAuditId()
	{
		return this.auditId;
	}
	public String getRemoteIp()
	{
		return this.remoteIp;
	}
	public String getLocIp()
	{
		return this.locIp;
	}
	public Integer getByteSent()
	{
		return this.byteSent;
	}
	public String getReHostName()
	{
		return this.reHostName;
	}
	public String getReqMethod()
	{
		return this.reqMethod;
	}
	public String getLocPort()
	{
		return this.locPort;
	}
	public String getQueryStr()
	{
		return this.queryStr;
	}
	public String getFirstLineReq()
	{
		return this.firstLineReq;
	}
	public Integer getHttpStatus()
	{
		return this.httpStatus;
	}
	public String getUsrSessId()
	{
		return this.usrSessId;
	}
	public String getAutherReUsr()
	{
		return this.autherReUsr;
	}
	public String getReqUrl()
	{
		return this.reqUrl;
	}
	public String getLocSerName()
	{
		return this.locSerName;
	}
	public Integer getProTime()
	{
		return this.proTime;
	}
	public String getReUsrName()
	{
		return this.reUsrName;
	}
	public String getReQuProtocol()
	{
		return this.reQuProtocol;
	}

	public Object getColValue(String colName) {
		// TODO Auto-generated method stub
		return null;
	}

	public void setColValue(String colName, Object value) {
		// TODO Auto-generated method stub

	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -