intent.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 132 行
JAVA
132 行
package com.je.ims.hibernate;
import java.sql.Clob;
/**
* Intent generated by MyEclipse - Hibernate Tools
*/
public class Intent implements java.io.Serializable {
// Fields
private Long intentId;
private Long year;
private String ab;
private String nodeId;
private Clob mgrIntent;
private String mgrCycle;
private Clob mgrPoint;
private Clob data;
private Clob appdoc;
// Constructors
/** default constructor */
public Intent() {
}
public Intent(Long year, String ab, String nodeId, String mgrCycle) {
this.year = year;
this.ab = ab;
this.nodeId = nodeId;
this.mgrCycle = mgrCycle;
}
/** full constructor */
public Intent(Long year, String ab, String nodeId, Clob mgrIntent, String mgrCycle, Clob mgrPoint, Clob data, Clob appdoc) {
this.year = year;
this.ab = ab;
this.nodeId = nodeId;
this.mgrIntent = mgrIntent;
this.mgrCycle = mgrCycle;
this.mgrPoint = mgrPoint;
this.data = data;
this.appdoc = appdoc;
}
// Property accessors
public Long getIntentId() {
return this.intentId;
}
public void setIntentId(Long intentId) {
this.intentId = intentId;
}
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 Clob getMgrIntent() {
return this.mgrIntent;
}
public void setMgrIntent(Clob mgrIntent) {
this.mgrIntent = mgrIntent;
}
public String getMgrCycle() {
return this.mgrCycle;
}
public void setMgrCycle(String mgrCycle) {
this.mgrCycle = mgrCycle;
}
public Clob getMgrPoint() {
return this.mgrPoint;
}
public void setMgrPoint(Clob mgrPoint) {
this.mgrPoint = mgrPoint;
}
public Clob getData() {
return this.data;
}
public void setData(Clob data) {
this.data = data;
}
public Clob getAppdoc() {
return this.appdoc;
}
public void setAppdoc(Clob appdoc) {
this.appdoc = appdoc;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?