tbbringupontent.java
来自「java swing 开发的一些实例」· Java 代码 · 共 45 行
JAVA
45 行
package com.mwq.hibernate.mapping;
public class TbBringUpOntent implements java.io.Serializable {
// Fields
private Integer id;
private TbBringUpContent tbBringUpContent;
private TbRecord tbRecord;
// Constructors
public TbBringUpOntent() {
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public TbBringUpContent getTbBringUpContent() {
return this.tbBringUpContent;
}
public void setTbBringUpContent(TbBringUpContent tbBringUpContent) {
this.tbBringUpContent = tbBringUpContent;
}
public TbRecord getTbRecord() {
return this.tbRecord;
}
public void setTbRecord(TbRecord tbRecord) {
this.tbRecord = tbRecord;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?