basdictentity.java

来自「关于ssh的整合,希望对大家有帮助」· Java 代码 · 共 79 行

JAVA
79
字号
package crm.entity.other;

/**
 * BasDictEntity(实体类) 对应 基础数据表(bas_dict)
 */

public class BasDictEntity implements java.io.Serializable {


	private static final long serialVersionUID = 1197570057508342314L;

	private Long dictId;   //数据编号

	private String dictType;  //数据类别

	private String dictItem;  //条目

	private String dictValue;  //值

	private Byte dictIsEditable;  //是否可编辑 1-可以;0-不可以

	// Constructors

	/** default constructor */
	public BasDictEntity() {
	}

	/** full constructor */
	public BasDictEntity(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 + -
显示快捷键?