📄 form_tableitem.java
字号:
package com.vere.form.item; import java.io.*; public class Form_tableItem implements Serializable { private String id;// private String pid;//上级分类 private String nodepath;//上级路径 private String english_name;//表名称 private String chinese_name;//中文名称 private String sort_id;//排序号 private String table_type;//表类型 private String func_id;//功能编号 private String url;//链接地址 public Form_tableItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 上级分类 */ public String getPid() { if(this.pid==null) this.pid=""; return this.pid; } /** * @see 上级分类 */ public void setPid(String pid) { this.pid=pid; } /** * @see 上级路径 */ public String getNodepath() { if(this.nodepath==null) this.nodepath=""; return this.nodepath; } /** * @see 上级路径 */ public void setNodepath(String nodepath) { this.nodepath=nodepath; } /** * @see 表名称 */ public String getEnglish_name() { if(this.english_name==null) this.english_name=""; return this.english_name; } /** * @see 表名称 */ public void setEnglish_name(String english_name) { this.english_name=english_name; } /** * @see 中文名称 */ public String getChinese_name() { if(this.chinese_name==null) this.chinese_name=""; return this.chinese_name; } /** * @see 中文名称 */ public void setChinese_name(String chinese_name) { this.chinese_name=chinese_name; } /** * @see 排序号 */ public String getSort_id() { if(this.sort_id==null) this.sort_id=""; return this.sort_id; } /** * @see 排序号 */ public void setSort_id(String sort_id) { this.sort_id=sort_id; } /** * @see 表类型 */ public String getTable_type() { if(this.table_type==null) this.table_type=""; return this.table_type; } /** * @see 表类型 */ public void setTable_type(String table_type) { this.table_type=table_type; } /** * @see 链接地址 */ public String getUrl() { if(this.url==null) this.url=""; return this.url; } /** * @see 链接地址 */ public void setUrl(String url) { this.url=url; } /** * @see 功能编号 */ public String getFunc_id() { if(this.func_id==null) this.func_id=""; return this.func_id; } /** * @see 功能编号 */ public void setFunc_id(String func_id) { this.func_id=func_id; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -