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

📄 basewebsite.java

📁 JEECMS是JavaEE版网站管理系统(Java Enterprise Edition Content Manage System)的简称。 基于java技术开发
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
package com.jeecms.core.entity.base;

import java.io.Serializable;


/**
 * This is an object that contains data related to the CORE_WEBSITE table.
 * Do not modify this class because it will be overwritten if the configuration file
 * related to this class is modified.
 *
 * @hibernate.class
 *  table="CORE_WEBSITE"
 */

public abstract class BaseWebsite  implements Serializable {

	public static String REF = "Website";
	public static String PROP_RGT = "rgt";
	public static String PROP_CREATE_TIME = "createTime";
	public static String PROP_USER_ID = "userId";
	public static String PROP_PHONE_CODE = "phoneCode";
	public static String PROP_PORT = "port";
	public static String PROP_CLOSE = "close";
	public static String PROP_CURRENT_SYSTEM = "currentSystem";
	public static String PROP_SUFFIX = "suffix";
	public static String PROP_CONTEXT_PATH = "contextPath";
	public static String PROP_CHARSET = "charset";
	public static String PROP_SUBJECT = "subject";
	public static String PROP_DOMAIN_ALIAS = "domainAlias";
	public static String PROP_NAME = "name";
	public static String PROP_CONTENT = "content";
	public static String PROP_USER_NAME = "userName";
	public static String PROP_MOBILE_CODE = "mobileCode";
	public static String PROP_ACCOUNT = "account";
	public static String PROP_FRONT_IPS = "frontIps";
	public static String PROP_DOMAIN = "domain";
	public static String PROP_USER_PWD = "userPwd";
	public static String PROP_HOSTNAME = "hostname";
	public static String PROP_OWNER_NAME = "ownerName";
	public static String PROP_RES_PATH = "resPath";
	public static String PROP_BASE_DOMAIN = "baseDomain";
	public static String PROP_COOKIE_KEY = "cookieKey";
	public static String PROP_ADMIN_IPS = "adminIps";
	public static String PROP_RES_DOMAIN = "resDomain";
	public static String PROP_CLOSE_REASON = "closeReason";
	public static String PROP_COPYRIGHT = "copyright";
	public static String PROP_RECORD_CODE = "recordCode";
	public static String PROP_EMAIL = "email";
	public static String PROP_OWNER_IDENTITY = "ownerIdentity";
	public static String PROP_SHORT_NAME = "shortName";
	public static String PROP_LFT = "lft";
	public static String PROP_RESERVED_WORDS = "reservedWords";
	public static String PROP_PARENT = "parent";
	public static String PROP_COMPANY = "company";
	public static String PROP_ID = "id";
	public static String PROP_NAME_MIN_LEN = "nameMinLen";


	// constructors
	public BaseWebsite () {
		initialize();
	}

	/**
	 * Constructor for primary key
	 */
	public BaseWebsite (java.lang.Long id) {
		this.setId(id);
		initialize();
	}

	/**
	 * Constructor for required fields
	 */
	public BaseWebsite (
		java.lang.Long id,
		java.lang.String domain,
		java.lang.String resPath,
		java.lang.Integer lft,
		java.lang.Integer rgt,
		java.lang.Boolean close) {

		this.setId(id);
		this.setDomain(domain);
		this.setResPath(resPath);
		this.setLft(lft);
		this.setRgt(rgt);
		this.setClose(close);
		initialize();
	}

	protected void initialize () {}



	private int hashCode = Integer.MIN_VALUE;

	// primary key
	private java.lang.Long id;

	// fields
	private java.lang.String domain;
	private java.lang.String resPath;
	private java.lang.Integer lft;
	private java.lang.Integer rgt;
	private java.lang.String resDomain;
	private java.lang.String baseDomain;
	private java.lang.String domainAlias;
	private java.lang.Integer port;
	private java.lang.String contextPath;
	private java.lang.String name;
	private java.lang.String shortName;
	private java.lang.String suffix;
	private java.lang.String currentSystem;
	private java.lang.String cookieKey;
	private java.lang.String ownerName;
	private java.lang.String ownerIdentity;
	private java.lang.String company;
	private java.lang.String copyright;
	private java.lang.String recordCode;
	private java.lang.String email;
	private java.lang.String phoneCode;
	private java.lang.String mobileCode;
	private java.util.Date createTime;
	private java.lang.String closeReason;
	private java.lang.Boolean close;

	// components
	 com.jeecms.core.entity.EmailSender m_emailSender;
	 com.jeecms.core.entity.Control m_control;

	// many to one
	private com.jeecms.core.entity.Website parent;

	// collections
	private java.util.Set<com.jeecms.core.entity.Website> child;
	private java.util.Map<java.lang.String, java.lang.String> solutions;



	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="native"
     *  column="WEBSITE_ID"
     */
	public java.lang.Long getId () {
		return id;
	}

	/**
	 * Set the unique identifier of this class
	 * @param id the new ID
	 */
	public void setId (java.lang.Long id) {
		this.id = id;
		this.hashCode = Integer.MIN_VALUE;
	}




	/**
	 * Return the value associated with the column: DOMAIN
	 */
	public java.lang.String getDomain () {
		return domain;
	}

	/**
	 * Set the value related to the column: DOMAIN
	 * @param domain the DOMAIN value
	 */
	public void setDomain (java.lang.String domain) {
		this.domain = domain;
	}



	/**
	 * Return the value associated with the column: RES_PATH
	 */
	public java.lang.String getResPath () {
		return resPath;
	}

	/**
	 * Set the value related to the column: RES_PATH
	 * @param resPath the RES_PATH value
	 */
	public void setResPath (java.lang.String resPath) {
		this.resPath = resPath;
	}



	/**
	 * Return the value associated with the column: LFT
	 */
	public java.lang.Integer getLft () {
		return lft;
	}

	/**
	 * Set the value related to the column: LFT
	 * @param lft the LFT value
	 */
	public void setLft (java.lang.Integer lft) {
		this.lft = lft;
	}



	/**
	 * Return the value associated with the column: RGT
	 */
	public java.lang.Integer getRgt () {
		return rgt;
	}

	/**
	 * Set the value related to the column: RGT
	 * @param rgt the RGT value
	 */
	public void setRgt (java.lang.Integer rgt) {
		this.rgt = rgt;
	}



	/**
	 * Return the value associated with the column: RES_DOMAIN
	 */
	public java.lang.String getResDomain () {
		return resDomain;
	}

	/**
	 * Set the value related to the column: RES_DOMAIN
	 * @param resDomain the RES_DOMAIN value
	 */
	public void setResDomain (java.lang.String resDomain) {
		this.resDomain = resDomain;
	}



	/**
	 * Return the value associated with the column: BASE_DOMAIN
	 */
	public java.lang.String getBaseDomain () {
		return baseDomain;
	}

	/**
	 * Set the value related to the column: BASE_DOMAIN
	 * @param baseDomain the BASE_DOMAIN value
	 */
	public void setBaseDomain (java.lang.String baseDomain) {
		this.baseDomain = baseDomain;
	}



	/**
	 * Return the value associated with the column: DOMAIN_ALIAS
	 */
	public java.lang.String getDomainAlias () {
		return domainAlias;
	}

	/**
	 * Set the value related to the column: DOMAIN_ALIAS
	 * @param domainAlias the DOMAIN_ALIAS value
	 */
	public void setDomainAlias (java.lang.String domainAlias) {
		this.domainAlias = domainAlias;
	}



	/**
	 * Return the value associated with the column: PORT
	 */
	public java.lang.Integer getPort () {
		return port;
	}

	/**
	 * Set the value related to the column: PORT
	 * @param port the PORT value
	 */
	public void setPort (java.lang.Integer port) {
		this.port = port;
	}



	/**
	 * Return the value associated with the column: CONTEXT_PATH
	 */
	public java.lang.String getContextPath () {
		return contextPath;
	}

	/**
	 * Set the value related to the column: CONTEXT_PATH
	 * @param contextPath the CONTEXT_PATH value
	 */
	public void setContextPath (java.lang.String contextPath) {
		this.contextPath = contextPath;
	}



	/**
	 * Return the value associated with the column: NAME
	 */
	public java.lang.String getName () {
		return name;
	}

	/**
	 * Set the value related to the column: NAME
	 * @param name the NAME value
	 */
	public void setName (java.lang.String name) {
		this.name = name;
	}



	/**
	 * Return the value associated with the column: SHORT_NAME
	 */
	public java.lang.String getShortName () {
		return shortName;
	}

	/**
	 * Set the value related to the column: SHORT_NAME
	 * @param shortName the SHORT_NAME value
	 */
	public void setShortName (java.lang.String shortName) {
		this.shortName = shortName;
	}


⌨️ 快捷键说明

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