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