📄 wiselaw.java
字号:
package com.je.ims.hibernate;
/**
* WiseLaw generated by MyEclipse - Hibernate Tools
*/
public class WiseLaw implements java.io.Serializable {
// Fields
private Long wiseLawId;
private Long year;
private String ab;
private String nodeId;
private Long flag;
// Constructors
/** default constructor */
public WiseLaw() {
}
/** full constructor */
public WiseLaw(Long year, String ab, String nodeId, Long flag) {
this.year = year;
this.ab = ab;
this.nodeId = nodeId;
this.flag = flag;
}
// Property accessors
public Long getWiseLawId() {
return this.wiseLawId;
}
public void setWiseLawId(Long wiseLawId) {
this.wiseLawId = wiseLawId;
}
public Long getYear() {
return this.year;
}
public void setYear(Long year) {
this.year = year;
}
public String getAb() {
return this.ab;
}
public void setAb(String ab) {
this.ab = ab;
}
public String getNodeId() {
return this.nodeId;
}
public void setNodeId(String nodeId) {
this.nodeId = nodeId;
}
public Long getFlag() {
return this.flag;
}
public void setFlag(Long flag) {
this.flag = flag;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -