📄 datadictionary.java
字号:
package com.bjsxt.crm.model;
/**
* DataDictionary generated by MyEclipse Persistence Tools
*/
public class DataDictionary implements java.io.Serializable {
// Fields
private Integer id;
private String code;
private String text;
private String category;
// Constructors
/** default constructor */
public DataDictionary() {
}
/** full constructor */
public DataDictionary(String code, String text, String category) {
this.code = code;
this.text = text;
this.category = category;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -