misprogram.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 91 行
JAVA
91 行
package com.je.ims.hibernate;
import java.sql.Clob;
/**
* MisProgram generated by MyEclipse - Hibernate Tools
*/
public class MisProgram implements java.io.Serializable {
// Fields
private Long misProgramId;
private String caption;
private Clob item;
private Clob mothod;
private Clob howdo;
// Constructors
/** default constructor */
public MisProgram() {
}
public MisProgram(String caption) {
this.caption=caption;
}
/** full constructor */
public MisProgram(String caption, Clob item, Clob mothod, Clob 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 Clob getItem() {
return this.item;
}
public void setItem(Clob item) {
this.item = item;
}
public Clob getMothod() {
return this.mothod;
}
public void setMothod(Clob mothod) {
this.mothod = mothod;
}
public Clob getHowdo() {
return this.howdo;
}
public void setHowdo(Clob howdo) {
this.howdo = howdo;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?