📄 abstractbooksmallclass.java
字号:
package com.internetshop.hibernate.book_small_class;
/**
* AbstractBookSmallClass generated by MyEclipse Persistence Tools
*/
public abstract class AbstractBookSmallClass implements java.io.Serializable {
// Fields
private Long ME_classId;
private String ME_className;
private Integer ME_order;
private Integer ME_belongBigClass;
private Integer ME_usually;
// Constructors
/** default constructor */
public AbstractBookSmallClass() {
}
/** full constructor */
public AbstractBookSmallClass(String ME_className, Integer ME_order,
Integer ME_belongBigClass, Integer ME_usually) {
this.ME_className = ME_className;
this.ME_order = ME_order;
this.ME_belongBigClass = ME_belongBigClass;
this.ME_usually = ME_usually;
}
// Property accessors
public Long getME_classId() {
return this.ME_classId;
}
public void setME_classId(Long ME_classId) {
this.ME_classId = ME_classId;
}
public String getME_className() {
return this.ME_className;
}
public void setME_className(String ME_className) {
this.ME_className = ME_className;
}
public Integer getME_order() {
return this.ME_order;
}
public void setME_order(Integer ME_order) {
this.ME_order = ME_order;
}
public Integer getME_belongBigClass() {
return this.ME_belongBigClass;
}
public void setME_belongBigClass(Integer ME_belongBigClass) {
this.ME_belongBigClass = ME_belongBigClass;
}
public Integer getME_usually() {
return this.ME_usually;
}
public void setME_usually(Integer ME_usually) {
this.ME_usually = ME_usually;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -