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

📄 basecontrol.java

📁 JEECMS是JavaEE版网站管理系统(Java Enterprise Edition Content Manage System)的简称。 基于java技术开发
💻 JAVA
字号:
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 BaseControl  implements Serializable {

	public static String REF = "Control";
	public static String PROP_FRONT_IPS = "frontIps";
	public static String PROP_RESERVED_WORDS = "reservedWords";
	public static String PROP_NAME_MIN_LEN = "nameMinLen";
	public static String PROP_ADMIN_IPS = "adminIps";


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

	protected void initialize () {}



	// fields
	private java.lang.String frontIps;
	private java.lang.String adminIps;
	private java.lang.String reservedWords;
	private java.lang.Integer nameMinLen;






	/**
	 * Return the value associated with the column: CONTROL_FRONT_IPS
	 */
	public java.lang.String getFrontIps () {
		return frontIps;
	}

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



	/**
	 * Return the value associated with the column: CONTROL_ADMIN_IPS
	 */
	public java.lang.String getAdminIps () {
		return adminIps;
	}

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



	/**
	 * Return the value associated with the column: CONTROL_RESERVED
	 */
	public java.lang.String getReservedWords () {
		return reservedWords;
	}

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



	/**
	 * Return the value associated with the column: CONTROL_NAME_MINLEN
	 */
	public java.lang.Integer getNameMinLen () {
		return nameMinLen;
	}

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







	public String toString () {
		return super.toString();
	}


}

⌨️ 快捷键说明

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