📄 bulletinurl.java
字号:
package com.je.ims.hibernate;
/**
* BulletinUrl generated by MyEclipse - Hibernate Tools
*/
public class BulletinUrl implements java.io.Serializable {
// Fields
private BulletinUrlId id;
private String urlDoc;
private Long isDelete;
// Constructors
/** default constructor */
public BulletinUrl() {
}
/** full constructor */
public BulletinUrl(BulletinUrlId id, String urlDoc, Long isDelete) {
this.id = id;
this.urlDoc = urlDoc;
this.isDelete = isDelete;
}
// Property accessors
public BulletinUrlId getId() {
return this.id;
}
public void setId(BulletinUrlId id) {
this.id = id;
}
public String getUrlDoc() {
return this.urlDoc;
}
public void setUrlDoc(String urlDoc) {
this.urlDoc = urlDoc;
}
public Long getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Long isDelete) {
this.isDelete = isDelete;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -