📄 datadictionary.java
字号:
package com.bjsxt.crm.model;
/**
* 数据字典代码表
* @author Administrator
*
*/
public class DataDictionary {
private int id;
//字典类别,如性别、身份、国家等
private String category;
//代码
private String code;
//文本
private String text;
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getText() {
return text;
}
public void setText(String description) {
this.text = description;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -