⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysdicitemvo.java

📁 管理公司合同
💻 JAVA
字号:
/*
 * Created on 2006-10-23 16:49:11
 *
 * By Yehailong
 * Copyright juneng.com.cn, 2005-2006, All rights reserved.
 */
package cn.com.juneng.system.vo;

import java.sql.Timestamp;
import cn.com.juneng.system.common.BaseForm;

/**
 * 简单的Domain Object,与数据表映射,提供getter和setter方法
 * @author yehailong
 */
public class SysDicItemVO extends BaseForm{
	/**
	 * property: 唯一ID.
	 */
	private	String rid;
	/**
	 * property: 字典种类.
	 */
	private	String kind;
	/**
	 * property: 字典编码.
	 */
	private	String code;
	/**
	 * property: 父字典ID.
	 */
	private	String parentId;
	/**
	 * property: 中文描述.
	 */
	private	String detail;
	/**
	 * property: 拼音头.
	 */
	private	String spell;
	/**
	 * property: 全拼.
	 */
	private	String wholeSpell;
	/**
	 * property: 备注说明.
	 */
	private	String remark;

	public SysDicItemVO(){
	}
	/**
	 * @param newSysDicItemVO
	 */
	public SysDicItemVO(SysDicItemVO newSysDicItemVO){
		this.cloneProperties( newSysDicItemVO);
	}
	/**
	 * get property:唯一ID
	 * @return rid
	 */
	public	String getRid(){
		return rid;
	}
	/**
	 * set property:唯一ID
	 * @param rid
	 */
	public	void setRid(String rid){
		this.rid = rid;
	}

	/**
	 * get property:字典种类
	 * @return kind
	 */
	public	String getKind(){
		return kind;
	}
	/**
	 * set property:字典种类
	 * @param kind
	 */
	public	void setKind(String kind){
		this.kind = kind;
	}

	/**
	 * get property:字典编码
	 * @return code
	 */
	public	String getCode(){
		return code;
	}
	/**
	 * set property:字典编码
	 * @param code
	 */
	public	void setCode(String code){
		this.code = code;
	}

	/**
	 * get property:父字典ID
	 * @return parentId
	 */
	public	String getParentId(){
		return parentId;
	}
	/**
	 * set property:父字典ID
	 * @param parentId
	 */
	public	void setParentId(String parentId){
		this.parentId = parentId;
	}

	/**
	 * get property:中文描述
	 * @return detail
	 */
	public	String getDetail(){
		return detail;
	}
	/**
	 * set property:中文描述
	 * @param detail
	 */
	public	void setDetail(String detail){
		this.detail = detail;
	}

	/**
	 * get property:拼音头
	 * @return spell
	 */
	public	String getSpell(){
		return spell;
	}
	/**
	 * set property:拼音头
	 * @param spell
	 */
	public	void setSpell(String spell){
		this.spell = spell;
	}

	/**
	 * get property:全拼
	 * @return wholeSpell
	 */
	public	String getWholeSpell(){
		return wholeSpell;
	}
	/**
	 * set property:全拼
	 * @param wholeSpell
	 */
	public	void setWholeSpell(String wholeSpell){
		this.wholeSpell = wholeSpell;
	}

	/**
	 * get property:备注说明
	 * @return remark
	 */
	public	String getRemark(){
		return remark;
	}
	/**
	 * set property:备注说明
	 * @param remark
	 */
	public	void setRemark(String remark){
		this.remark = remark;
	}

	public Object clone() {
	return new SysDicItemVO(this);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -