dict.java
来自「一套自己原先在学校作的CRM,大家指点下」· Java 代码 · 共 83 行
JAVA
83 行
package com.crm.pojo;
/**
* Dict generated by MyEclipse Persistence Tools
*/
public class Dict implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = 4956371759936093991L;
private Integer id;
private String names;
private String isEditor="否";
private String val;
private String types;
// Constructors
/** default constructor */
public Dict() {
}
/** full constructor */
public Dict(String names, String isEditor, String val, String types) {
this.names = names;
this.isEditor = isEditor;
this.val = val;
this.types = types;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getNames() {
return this.names;
}
public void setNames(String names) {
this.names = names;
}
public String getIsEditor() {
return this.isEditor;
}
public void setIsEditor(String isEditor) {
this.isEditor = isEditor;
}
public String getVal() {
return this.val;
}
public void setVal(String val) {
this.val = val;
}
public String getTypes() {
return this.types;
}
public void setTypes(String types) {
this.types = types;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?