bulletinurl.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 68 行
JAVA
68 行
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 + =
减小字号Ctrl + -
显示快捷键?