All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.artifact.builder.extend.DesignTableExtend Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.artifact.builder.extend;

/**
 * @author : DengYing
 * @CreateDate : 2017年11月1日 下午2:34:28
 * @Description :表设计扩展
 */
public class DesignTableExtend extends AbstractDesignExtend {
	/** 顺序 */
	public String order;

	/** 缓存类型 */
	public String cacheType;

	/** 实体代理 */
	public String beanProxy;

	/** 缓存代理 */
	public String cacheProxy;

	/** 缓存代理 */
	public String daoProxy;

	public String getOrder() {
		return order;
	}

	public void setOrder(String order) {
		this.order = order;
	}

	public String getCacheType() {
		return cacheType;
	}

	public void setCacheType(String cacheType) {
		this.cacheType = cacheType;
	}

	public String getBeanProxy() {
		return beanProxy;
	}

	public void setBeanProxy(String beanProxy) {
		this.beanProxy = beanProxy;
	}

	public String getCacheProxy() {
		return cacheProxy;
	}

	public void setCacheProxy(String cacheProxy) {
		this.cacheProxy = cacheProxy;
	}

	public String getDaoProxy() {
		return daoProxy;
	}

	public void setDaoProxy(String daoProxy) {
		this.daoProxy = daoProxy;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy