bookshelf.java
来自「在线读书交流平台」· Java 代码 · 共 23 行
JAVA
23 行
package com.olr.beans;
/**
* Bookshelf entity.
*
* @author MyEclipse Persistence Tools
*/
public class Bookshelf extends AbstractBookshelf implements
java.io.Serializable {
// Constructors
/** default constructor */
public Bookshelf() {
}
/** full constructor */
public Bookshelf(Integer userId, Integer bookId) {
super(userId, bookId);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?