queryheadervo.java

来自「管理公司合同」· Java 代码 · 共 239 行

JAVA
239
字号
/*
 * Created on 2006-11-11 12:05:12
 *
 * 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 QueryHeaderVO extends BaseForm{
	/**
	 * property: 查询头ID.
	 */
	private	String queryId;
	/**
	 * property: 查询索引.
	 */
	private	String queryIndex;
	/**
	 * property: 查询标题.
	 */
	private	String queryName;
	/**
	 * property: 定制SQL语句.
	 */
	private	String queryContent;
	/**
	 * property: 对应数据源.
	 */
	private	String queryType;
	/**
	 * property: 优先级.
	 */
	private	String priority;
	/**
	 * property: 引用的HTML.
	 */
	private	String includeHtml;
	/**
	 * property: 引用的JScript.
	 */
	private	String includeJs;
	/**
	 * property: 超连接的列.
	 */
	private	String linkColumn;
	/**
	 * property: 超连接的SRC.
	 */
	private	String linkSrc;
	/**
	 * property: 其他选项,如排序和分组.
	 */
	private	String queryOther;

	public QueryHeaderVO(){
	}
	/**
	 * @param newQueryHeaderVO
	 */
	public QueryHeaderVO(QueryHeaderVO newQueryHeaderVO){
		this.cloneProperties( newQueryHeaderVO);
	}
	/**
	 * get property:查询头ID
	 * @return queryId
	 */
	public	String getQueryId(){
		return queryId;
	}
	/**
	 * set property:查询头ID
	 * @param queryId
	 */
	public	void setQueryId(String queryId){
		this.queryId = queryId;
	}

	/**
	 * get property:查询索引
	 * @return queryIndex
	 */
	public	String getQueryIndex(){
		return queryIndex;
	}
	/**
	 * set property:查询索引
	 * @param queryIndex
	 */
	public	void setQueryIndex(String queryIndex){
		this.queryIndex = queryIndex;
	}

	/**
	 * get property:查询标题
	 * @return queryName
	 */
	public	String getQueryName(){
		return queryName;
	}
	/**
	 * set property:查询标题
	 * @param queryName
	 */
	public	void setQueryName(String queryName){
		this.queryName = queryName;
	}

	/**
	 * get property:定制SQL语句
	 * @return queryContent
	 */
	public	String getQueryContent(){
		return queryContent;
	}
	/**
	 * set property:定制SQL语句
	 * @param queryContent
	 */
	public	void setQueryContent(String queryContent){
		this.queryContent = queryContent;
	}

	/**
	 * get property:对应数据源
	 * @return queryType
	 */
	public	String getQueryType(){
		return queryType;
	}
	/**
	 * set property:对应数据源
	 * @param queryType
	 */
	public	void setQueryType(String queryType){
		this.queryType = queryType;
	}

	/**
	 * get property:优先级
	 * @return priority
	 */
	public	String getPriority(){
		return priority;
	}
	/**
	 * set property:优先级
	 * @param priority
	 */
	public	void setPriority(String priority){
		this.priority = priority;
	}

	/**
	 * get property:引用的HTML
	 * @return includeHtml
	 */
	public	String getIncludeHtml(){
		return includeHtml;
	}
	/**
	 * set property:引用的HTML
	 * @param includeHtml
	 */
	public	void setIncludeHtml(String includeHtml){
		this.includeHtml = includeHtml;
	}

	/**
	 * get property:引用的JScript
	 * @return includeJs
	 */
	public	String getIncludeJs(){
		return includeJs;
	}
	/**
	 * set property:引用的JScript
	 * @param includeJs
	 */
	public	void setIncludeJs(String includeJs){
		this.includeJs = includeJs;
	}

	/**
	 * get property:超连接的列
	 * @return linkColumn
	 */
	public	String getLinkColumn(){
		return linkColumn;
	}
	/**
	 * set property:超连接的列
	 * @param linkColumn
	 */
	public	void setLinkColumn(String linkColumn){
		this.linkColumn = linkColumn;
	}

	/**
	 * get property:超连接的SRC
	 * @return linkSrc
	 */
	public	String getLinkSrc(){
		return linkSrc;
	}
	/**
	 * set property:超连接的SRC
	 * @param linkSrc
	 */
	public	void setLinkSrc(String linkSrc){
		this.linkSrc = linkSrc;
	}

	/**
	 * get property:其他选项,如排序和分组
	 * @return queryOther
	 */
	public	String getQueryOther(){
		return queryOther;
	}
	/**
	 * set property:其他选项,如排序和分组
	 * @param queryOther
	 */
	public	void setQueryOther(String queryOther){
		this.queryOther = queryOther;
	}

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

⌨️ 快捷键说明

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