📄 attachmenttb.java
字号:
package com.accp.t29.hibernate.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* AttachmentTb generated by MyEclipse - Hibernate Tools
*/
public class AttachmentTb implements java.io.Serializable {
// Fields
private long id;
private String path;
private String remark1;
private String remark2;
private Set newsTbs = new HashSet(0);
// Constructors
/** default constructor */
public AttachmentTb() {
}
/** full constructor */
public AttachmentTb(String path, String remark1, String remark2, Set newsTbs) {
this.path = path;
this.remark1 = remark1;
this.remark2 = remark2;
this.newsTbs = newsTbs;
}
// Property accessors
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getRemark1() {
return this.remark1;
}
public void setRemark1(String remark1) {
this.remark1 = remark1;
}
public String getRemark2() {
return this.remark2;
}
public void setRemark2(String remark2) {
this.remark2 = remark2;
}
public Set getNewsTbs() {
return this.newsTbs;
}
public void setNewsTbs(Set newsTbs) {
this.newsTbs = newsTbs;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -