📄 esm000500.java
字号:
package jm.entity;
import jm.util.JMEntity;
/**
* faq信息
* @author ishome
*/
public class ESM000500 extends JMEntity
{
/** 编号*/
private String numID = null;
/** 标题*/
private String title = null;
/** 标签*/
private String tag = null;
/** 内容*/
private String faqValue = null;
/** 奇偶行区分 */
private String rowsKb = null;
/**
* clear
*/
public void clear() {
/* 编号*/
this.numID = null;
/* 标题*/
this.title = null;
/* 标签*/
this.tag = null;
/* 内容*/
this.faqValue = null;
}
/**
* 获得存储器内容
*
* @return 存储器内容
*/
public String getItems() {
return "NumID;Title;Tag;FaqValue";
}
/**
* 返回项目汉字名
* @return String
*/
public String getNames(){
return "Numid;Title;Tag;Faqvalue;";
}
/**
* toString
*/
public String toString() {
return "SM000500:"
/* 编号*/
+ " numID =" + this.numID + ", "
/* 标题*/
+ " title =" + this.title + ", "
/* 标签*/
+ " tag =" + this.tag + ", "
/* 内容*/
+ " faqValue =" + this.faqValue + ", "
;
}
/**
* 获取编号
*
* @return NumID 编号
*/
public String getNumID() {
return this.numID;
}
/**
* 获取标题
*
* @return Title 标题
*/
public String getTitle() {
return this.title;
}
/**
* 获取标签
*
* @return Tag 标签
*/
public String getTag() {
return this.tag;
}
/**
* 获取内容
*
* @return FaqValue 内容
*/
public String getFaqValue() {
return this.faqValue;
}
/**
* 获得奇偶行区分
*
* @return 奇偶行区分
*/
public String getRowsKb() {
return rowsKb;
}
/**
* 设置编号
*
* @param NumID 编号
*/
public void setNumID(String NumID) {
this.numID = NumID ;
}
/**
* 设置标题
*
* @param Title 标题
*/
public void setTitle(String Title) {
this.title = Title ;
}
/**
* 设置标签
*
* @param Tag 标签
*/
public void setTag(String Tag) {
this.tag = Tag ;
}
/**
* 设置内容
*
* @param FaqValue 内容
*/
public void setFaqValue(String FaqValue) {
this.faqValue = FaqValue ;
}
/**
* 设置奇偶行区分
*
* @param string 奇偶行区分
*/
public void setRowsKb(String RowsKb) {
this.rowsKb = RowsKb;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -