titleauthor.java
来自「带分页显示的简单例子 Hibernate」· Java 代码 · 共 61 行
JAVA
61 行
package fmq.model.bo;
/**
* Titleauthor generated by MyEclipse Persistence Tools
*/
public class Titleauthor implements java.io.Serializable {
// Fields
private TitleauthorId id;
private Short auOrd;
private Integer royaltyper;
// Constructors
/** default constructor */
public Titleauthor() {
}
/** minimal constructor */
public Titleauthor(TitleauthorId id) {
this.id = id;
}
/** full constructor */
public Titleauthor(TitleauthorId id, Short auOrd, Integer royaltyper) {
this.id = id;
this.auOrd = auOrd;
this.royaltyper = royaltyper;
}
// Property accessors
public TitleauthorId getId() {
return this.id;
}
public void setId(TitleauthorId id) {
this.id = id;
}
public Short getAuOrd() {
return this.auOrd;
}
public void setAuOrd(Short auOrd) {
this.auOrd = auOrd;
}
public Integer getRoyaltyper() {
return this.royaltyper;
}
public void setRoyaltyper(Integer royaltyper) {
this.royaltyper = royaltyper;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?