intentstrreflection.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 122 行
JAVA
122 行
package com.je.ims.hibernate;
/**
* 這個類是專門用來映射Intent類的,
* CLOB不能直接返回給頁面,就做了個映射類,
* 把CLOB裏面的字符串賦給影射類的STRING,
* 然後把這個類返回給界面
* */
import java.sql.Clob;
/**
* Intent generated by MyEclipse - Hibernate Tools
*/
public class IntentStrReflection implements java.io.Serializable {
// Fields
private Long intentId;
private Long year;
private String ab;
private String nodeId;
private String mgrIntent;
private String mgrCycle;
private String mgrPoint;
private String data;
private String appdoc;
// Constructors
/** default constructor */
public IntentStrReflection() {
}
/** full constructor */
public IntentStrReflection(Long year, String ab, String nodeId, String mgrIntent, String mgrCycle, String mgrPoint, String data, String 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 String getAb() {
return ab;
}
public void setAb(String ab) {
this.ab = ab;
}
public String getAppdoc() {
return appdoc;
}
public void setAppdoc(String appdoc) {
this.appdoc = appdoc;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public Long getIntentId() {
return intentId;
}
public void setIntentId(Long intentId) {
this.intentId = intentId;
}
public String getMgrCycle() {
return mgrCycle;
}
public void setMgrCycle(String mgrCycle) {
this.mgrCycle = mgrCycle;
}
public String getMgrIntent() {
return mgrIntent;
}
public void setMgrIntent(String mgrIntent) {
this.mgrIntent = mgrIntent;
}
public String getMgrPoint() {
return mgrPoint;
}
public void setMgrPoint(String mgrPoint) {
this.mgrPoint = mgrPoint;
}
public String getNodeId() {
return nodeId;
}
public void setNodeId(String nodeId) {
this.nodeId = nodeId;
}
public Long getYear() {
return year;
}
public void setYear(Long year) {
this.year = year;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?