jsp新代码第240课

纽二

关注

阅读 158

2022-05-16


new240.java

package pack03;

import java.sql.Timestamp;

public class new240
{
private int id;
private String title;
private String content;
private String author;
private Timestamp createTime;
public int getId()
{
return id;
}
public void setId(int id)
{
this.id = id;
}
public String getTitle()
{
return title;
}
public void setTitle(String title)
{
this.title = title;
}
public String getContent()
{
return content;
}
public void setContent(String content)
{
this.content = content;
}
public String getAuthor()
{
return author;
}
public void setAuthor(String author)
{
this.author = author;
}
public Timestamp getCreateTime()
{
return createTime;
}
public void setCreateTime(Timestamp createTime)
{
this.createTime = createTime;
}


}


精彩评论(0)

0 0 举报