📄 logentity.java
字号:
/*
*
* on 06-十月-2005 at 04:15:42
*
* Mail:relationinfo@hotmail.com
*
* visit:www.relaioninfo.com or www.helpsoft.org
*/
package org.helpsoft.helplog.jdo;
import java.io.Serializable;
import java.math.*;
import java.util.Date;
import java.util.Collection;
public class LogEntity implements Serializable
{
/**
* This attribute maps to the column logid in the Log table.
*/
private String logid;
/**
* This attribute maps to the column logtypecode in the Log table.
*/
private String logtypecode;
/**
* This attribute maps to the column title in the Log table.
*/
private String title;
/**
* This attribute maps to the column content in the Log table.
*/
private String content;
/**
* This attribute maps to the column author in the Log table.
*/
private String author;
/**
* This attribute maps to the column date in the Log table.
*/
private Date date;
/**
* Sets the value of logid
*/
public void setLogid(String logid)
{
this.logid = logid;
}
/**
* Gets the value of logid
*/
public String getLogid()
{
return logid;
}
/**
* Sets the value of logtypecode
*/
public void setLogtypecode(String logtypecode)
{
this.logtypecode = logtypecode;
}
/**
* Gets the value of logtypecode
*/
public String getLogtypecode()
{
return logtypecode;
}
/**
* Sets the value of title
*/
public void setTitle(String title)
{
this.title = title;
}
/**
* Gets the value of title
*/
public String getTitle()
{
return title;
}
/**
* Sets the value of content
*/
public void setContent(String content)
{
this.content = content;
}
/**
* Gets the value of content
*/
public String getContent()
{
return content;
}
/**
* Sets the value of author
*/
public void setAuthor(String author)
{
this.author = author;
}
/**
* Gets the value of author
*/
public String getAuthor()
{
return author;
}
/**
* Sets the value of date
*/
public void setDate(Date date)
{
this.date = date;
}
/**
* Gets the value of date
*/
public Date getDate()
{
return date;
}
/**
* Method 'LogEntity'
*
*/
public LogEntity()
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -