亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? basefunction.java

?? JAVA做的CMS源碼
?? JAVA
字號:
package com.jeecms.core.entity.base;

import java.io.Serializable;


/**
 * This is an object that contains data related to the core_function 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_function"
 */

public abstract class BaseFunction  implements Serializable {

	public static String REF = "Function";
	public static String PROP_MENU = "menu";
	public static String PROP_NAME = "name";
	public static String PROP_PARENT = "parent";
	public static String PROP_FUNCS = "funcs";
	public static String PROP_DESCRIPTION = "description";
	public static String PROP_URL = "url";
	public static String PROP_ID = "id";
	public static String PROP_PRIORITY = "priority";


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

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

	/**
	 * Constructor for required fields
	 */
	public BaseFunction (
		java.lang.Long id,
		java.lang.Integer priority,
		java.lang.Boolean menu) {

		this.setId(id);
		this.setPriority(priority);
		this.setMenu(menu);
		initialize();
	}

	protected void initialize () {}



	private int hashCode = Integer.MIN_VALUE;

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

	// fields
	private java.lang.String name;
	private java.lang.String url;
	private java.lang.String funcs;
	private java.lang.String description;
	private java.lang.Integer priority;
	private java.lang.Boolean menu;

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

	// collections
	private java.util.Set<com.jeecms.core.entity.Admin> admins;
	private java.util.Set<com.jeecms.core.entity.Role> roles;
	private java.util.Set<com.jeecms.core.entity.Function> child;



	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="native"
     *  column="FUNCTION_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: 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: URL
	 */
	public java.lang.String getUrl () {
		return url;
	}

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



	/**
	 * Return the value associated with the column: FUNCS
	 */
	public java.lang.String getFuncs () {
		return funcs;
	}

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



	/**
	 * Return the value associated with the column: DESCRIPTION
	 */
	public java.lang.String getDescription () {
		return description;
	}

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



	/**
	 * Return the value associated with the column: PRIORITY
	 */
	public java.lang.Integer getPriority () {
		return priority;
	}

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



	/**
	 * Return the value associated with the column: IS_MENU
	 */
	public java.lang.Boolean getMenu () {
		return menu;
	}

	/**
	 * Set the value related to the column: IS_MENU
	 * @param menu the IS_MENU value
	 */
	public void setMenu (java.lang.Boolean menu) {
		this.menu = menu;
	}



	/**
	 * Return the value associated with the column: PARENT_ID
	 */
	public com.jeecms.core.entity.Function getParent () {
		return parent;
	}

	/**
	 * Set the value related to the column: PARENT_ID
	 * @param parent the PARENT_ID value
	 */
	public void setParent (com.jeecms.core.entity.Function parent) {
		this.parent = parent;
	}



	/**
	 * Return the value associated with the column: admins
	 */
	public java.util.Set<com.jeecms.core.entity.Admin> getAdmins () {
		return admins;
	}

	/**
	 * Set the value related to the column: admins
	 * @param admins the admins value
	 */
	public void setAdmins (java.util.Set<com.jeecms.core.entity.Admin> admins) {
		this.admins = admins;
	}

	public void addToadmins (com.jeecms.core.entity.Admin admin) {
		if (null == getAdmins()) setAdmins(new java.util.TreeSet<com.jeecms.core.entity.Admin>());
		getAdmins().add(admin);
	}



	/**
	 * Return the value associated with the column: roles
	 */
	public java.util.Set<com.jeecms.core.entity.Role> getRoles () {
		return roles;
	}

	/**
	 * Set the value related to the column: roles
	 * @param roles the roles value
	 */
	public void setRoles (java.util.Set<com.jeecms.core.entity.Role> roles) {
		this.roles = roles;
	}

	public void addToroles (com.jeecms.core.entity.Role role) {
		if (null == getRoles()) setRoles(new java.util.TreeSet<com.jeecms.core.entity.Role>());
		getRoles().add(role);
	}



	/**
	 * Return the value associated with the column: child
	 */
	public java.util.Set<com.jeecms.core.entity.Function> getChild () {
		return child;
	}

	/**
	 * Set the value related to the column: child
	 * @param child the child value
	 */
	public void setChild (java.util.Set<com.jeecms.core.entity.Function> child) {
		this.child = child;
	}

	public void addTochild (com.jeecms.core.entity.Function function) {
		if (null == getChild()) setChild(new java.util.TreeSet<com.jeecms.core.entity.Function>());
		getChild().add(function);
	}




	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof com.jeecms.core.entity.Function)) return false;
		else {
			com.jeecms.core.entity.Function function = (com.jeecms.core.entity.Function) obj;
			if (null == this.getId() || null == function.getId()) return false;
			else return (this.getId().equals(function.getId()));
		}
	}

	public int hashCode () {
		if (Integer.MIN_VALUE == this.hashCode) {
			if (null == this.getId()) return super.hashCode();
			else {
				String hashStr = this.getClass().getName() + ":" + this.getId().hashCode();
				this.hashCode = hashStr.hashCode();
			}
		}
		return this.hashCode;
	}


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


}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产999精品久久久久久| 99视频超级精品| 成人涩涩免费视频| 51午夜精品国产| 国产精品欧美一区喷水| 蜜臀久久99精品久久久久宅男| 成人免费电影视频| 日韩手机在线导航| 亚洲一级电影视频| 91美女片黄在线观看91美女| 欧美成人在线直播| 午夜视频在线观看一区二区| 成人av高清在线| 欧美激情一区二区三区| 蜜桃精品视频在线| 欧美日韩大陆一区二区| 亚洲自拍偷拍麻豆| 日本精品一区二区三区高清| 国产精品天干天干在观线| 国产一区二区三区免费看 | 亚洲福利国产精品| 99re这里只有精品6| 中文字幕精品三区| 成人动漫在线一区| 国产精品久久久久毛片软件| 国产精品一级片在线观看| 欧美一级生活片| 麻豆国产欧美日韩综合精品二区| 欧美日韩黄视频| 日韩电影免费在线| 日韩欧美精品在线视频| 久久精品国产色蜜蜜麻豆| 欧美大片免费久久精品三p| 日韩高清欧美激情| 精品久久久久一区二区国产| 麻豆精品新av中文字幕| wwwwww.欧美系列| 国内国产精品久久| 国产精品免费视频观看| 成人免费福利片| 一区二区三区自拍| 欧美久久久久中文字幕| 久久精品国产精品青草| 欧美精品一区视频| av网站免费线看精品| 日本欧美一区二区三区乱码| 国产精品国产精品国产专区不蜜 | 欧美亚洲自拍偷拍| 国产精品国产a级| 成人精品gif动图一区| 国产精品三级视频| 在线看国产一区二区| 亚洲国产中文字幕| 精品av久久707| 99久久综合99久久综合网站| 一区二区三区日韩精品| 91精品国产日韩91久久久久久| 美国十次综合导航| 国产精品福利一区| 欧美一区二区三区日韩视频| 国产在线不卡视频| 色天使久久综合网天天| 国模无码大尺度一区二区三区| 99久久国产综合精品女不卡| www日韩大片| 蜜桃精品在线观看| 91在线国产观看| 一级中文字幕一区二区| 精品日韩欧美一区二区| 色综合久久久久综合体| 七七婷婷婷婷精品国产| 国产精品久久久久久久岛一牛影视 | 国产制服丝袜一区| 日韩免费高清视频| 精品一区二区三区在线播放 | 精品国产不卡一区二区三区| 视频在线观看一区二区三区| 欧美日韩中字一区| 日本aⅴ亚洲精品中文乱码| 欧美高清精品3d| 日韩国产欧美在线视频| 欧美成人精品二区三区99精品| 免费av网站大全久久| 欧美本精品男人aⅴ天堂| 久久精品国产亚洲a| 欧美激情综合网| 91在线你懂得| 亚洲国产综合人成综合网站| 制服丝袜在线91| 狠狠网亚洲精品| 国产精品情趣视频| 欧美少妇xxx| 美腿丝袜在线亚洲一区| 国产色综合一区| 91麻豆文化传媒在线观看| 一区二区三区在线视频免费观看| 欧美放荡的少妇| 国产不卡在线播放| 亚洲国产精品嫩草影院| 日韩女优毛片在线| 99久久er热在这里只有精品15| 一区二区三区中文在线| 日韩午夜在线观看视频| 成人小视频免费观看| 亚洲一区二区三区中文字幕 | 欧美日韩一区二区三区免费看 | 蜜臀av一区二区在线免费观看| 久久久久久久久伊人| www.在线欧美| 日本在线不卡视频| 中日韩av电影| 91精品视频网| 色婷婷精品久久二区二区蜜臀av| 日韩不卡免费视频| 亚洲天堂网中文字| 日韩欧美色综合| 日本精品免费观看高清观看| 另类小说综合欧美亚洲| 亚洲一区二区三区三| 国产欧美一区二区精品性色| 欧美系列一区二区| 91在线视频播放地址| 久久疯狂做爰流白浆xx| 亚洲1区2区3区4区| 亚洲四区在线观看| 久久久久久亚洲综合| 欧美区在线观看| 一本一道综合狠狠老| 成人午夜av影视| 国产在线视频一区二区| 日韩在线观看一区二区| 亚洲欧美另类小说视频| 国产精品无遮挡| 久久精品欧美日韩| 欧美电视剧在线看免费| 欧美日韩在线播放三区四区| 96av麻豆蜜桃一区二区| 国产精品白丝jk黑袜喷水| 蜜桃精品在线观看| 欧美96一区二区免费视频| 亚洲综合精品久久| 亚洲一区二三区| 亚洲一区二区三区四区五区中文| 成人欧美一区二区三区黑人麻豆| 久久久久久久久99精品| 精品乱码亚洲一区二区不卡| 日韩精品一区二区三区swag| 欧美一区中文字幕| 日韩免费看的电影| 日韩女优电影在线观看| 精品少妇一区二区三区视频免付费| 欧美三级欧美一级| 欧美肥大bbwbbw高潮| 51精品视频一区二区三区| 91精品婷婷国产综合久久竹菊| 欧美人与性动xxxx| 欧美日韩小视频| 制服丝袜亚洲精品中文字幕| 欧美精选午夜久久久乱码6080| 欧美日韩中文国产| 欧美不卡激情三级在线观看| 欧美电影免费提供在线观看| 精品国产乱码久久| 中文字幕欧美国产| 亚洲免费资源在线播放| 天天综合网 天天综合色| 日本不卡一二三| 国产麻豆精品theporn| 国产91在线|亚洲| 91色在线porny| 欧美一级高清片在线观看| 精品国产麻豆免费人成网站| 中文无字幕一区二区三区| ㊣最新国产の精品bt伙计久久| 亚洲女人****多毛耸耸8| 亚洲丰满少妇videoshd| 国内精品伊人久久久久av影院 | 精品在线视频一区| 粉嫩绯色av一区二区在线观看| 99亚偷拍自图区亚洲| 在线看日韩精品电影| 日韩午夜三级在线| 国产精品第13页| 蜜臂av日日欢夜夜爽一区| 不卡视频一二三| 91精品久久久久久久91蜜桃| 久久久精品国产免大香伊| 一区二区三区在线不卡| 毛片av一区二区三区| 99r精品视频| 久久综合色鬼综合色| 亚洲女与黑人做爰| 国产成人一级电影| 欧美疯狂做受xxxx富婆| 国产精品理伦片| 日韩精品一区二区在线观看| 久久久精品tv| 日韩成人精品在线| 亚洲女人小视频在线观看| 国产在线不卡一卡二卡三卡四卡|