abstractreview.java.svn-base

来自「在线书库系统 查看图书 编写文章 管理员管理」· SVN-BASE 代码 · 共 79 行

SVN-BASE
79
字号
package StoryManage.Dal;

import java.util.Date;

/**
 * AbstractReview entity provides the base persistence definition of the Review
 * entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractReview implements java.io.Serializable {

	// Fields

	private Integer reviewId;
	private Integer userId;
	private Integer storyId;
	private String content;
	private Date reviewTime;

	// Constructors

	/** default constructor */
	public AbstractReview() {
	}

	/** full constructor */
	public AbstractReview(Integer userId, Integer storyId, String content,
			Date reviewTime) {
		this.userId = userId;
		this.storyId = storyId;
		this.content = content;
		this.reviewTime = reviewTime;
	}

	// Property accessors

	public Integer getReviewId() {
		return this.reviewId;
	}

	public void setReviewId(Integer reviewId) {
		this.reviewId = reviewId;
	}

	public Integer getUserId() {
		return this.userId;
	}

	public void setUserId(Integer userId) {
		this.userId = userId;
	}

	public Integer getStoryId() {
		return this.storyId;
	}

	public void setStoryId(Integer storyId) {
		this.storyId = storyId;
	}

	public String getContent() {
		return this.content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public Date getReviewTime() {
		return this.reviewTime;
	}

	public void setReviewTime(Date reviewTime) {
		this.reviewTime = reviewTime;
	}

}

⌨️ 快捷键说明

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