📄 misstrreflection.java
字号:
package com.je.ims.hibernate;
/**
* 這個類是專門用來映射MisProgram類的,
* CLOB不能直接返回給頁面,就做了個映射類,
* 把CLOB裏面的字符串賦給影射類的STRING,
* 然後把這個類返回給界面
* */
public class MisStrReflection implements java.io.Serializable
{
// Fields
private Long misProgramId;
private String caption;
private String item;
private String mothod;
private String howdo;
// Constructors
/** default constructor */
public MisStrReflection() {
}
/** full constructor */
public MisStrReflection(String caption, String item, String mothod, String howdo) {
this.caption = caption;
this.item = item;
this.mothod = mothod;
this.howdo = howdo;
}
// Property accessors
public Long getMisProgramId() {
return this.misProgramId;
}
public void setMisProgramId(Long misProgramId) {
this.misProgramId = misProgramId;
}
public String getCaption() {
return this.caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
public String getItem() {
return this.item;
}
public void setItem(String item) {
this.item = item;
}
public String getMothod() {
return this.mothod;
}
public void setMothod(String mothod) {
this.mothod = mothod;
}
public String getHowdo() {
return this.howdo;
}
public void setHowdo(String howdo) {
this.howdo = howdo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -