📄 story.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -