basdict.java
来自「crm系统 有源码 及相关文档sql2005 数据库 客户反馈模块」· Java 代码 · 共 91 行
JAVA
91 行
package org.jb.y272.team0.entity;
/**
* BasDict generated by MyEclipse - Hibernate Tools
*/
public class BasDict implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = 210369797181810948L;
private Long dictId;
private String dictType;
private String dictItem;
private String dictValue;
private Byte dictIsEditable;
// Constructors
/** default constructor */
public BasDict() {
}
/** full constructor */
public BasDict(String dictType, String dictItem, String dictValue, Byte dictIsEditable) {
this.dictType = dictType;
this.dictItem = dictItem;
this.dictValue = dictValue;
this.dictIsEditable = dictIsEditable;
}
// Property accessors
public Long getDictId() {
return this.dictId;
}
public void setDictId(Long dictId) {
this.dictId = dictId;
}
public String getDictType() {
return this.dictType;
}
public void setDictType(String dictType) {
this.dictType = dictType;
}
public String getDictItem() {
return this.dictItem;
}
public void setDictItem(String dictItem) {
this.dictItem = dictItem;
}
public String getDictValue() {
return this.dictValue;
}
public void setDictValue(String dictValue) {
this.dictValue = dictValue;
}
public Byte getDictIsEditable() {
return this.dictIsEditable;
}
public void setDictIsEditable(Byte dictIsEditable) {
this.dictIsEditable = dictIsEditable;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?