story.java

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

JAVA
38
字号
package StoryManage.Dal;

import java.util.Date;

/**
 * Story entity.
 * 
 * @author MyEclipse Persistence Tools
 */
public class Story extends AbstractStory implements java.io.Serializable {

	// Constructors

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

	/** minimal constructor */
	public Story(String storyTitle, String content, Integer writerId,
			Date buildTime, Integer typeId, Integer hot, Integer vote,
			Integer firstChapterId, Integer dayHot, Integer weekHot,
			Integer monthHot, Integer isOver, Date updateTime) {
		super(storyTitle, content, writerId, buildTime, typeId, hot, vote,
				firstChapterId, dayHot, weekHot, monthHot, isOver, updateTime);
	}

	/** full constructor */
	public Story(String storyTitle, String content, Integer writerId,
			Date buildTime, Integer typeId, String imageUrl, Integer hot,
			Integer vote, Integer firstChapterId, Integer dayHot,
			Integer weekHot, Integer monthHot, Integer isOver, Date updateTime) {
		super(storyTitle, content, writerId, buildTime, typeId, imageUrl, hot,
				vote, firstChapterId, dayHot, weekHot, monthHot, isOver,
				updateTime);
	}

}

⌨️ 快捷键说明

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