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

📄 abstractcontent.java

📁 利用STRUTS2+SPRING+HIBERNATE/IBATIS建立的基本开发框架
💻 JAVA
字号:
package com.sunwah.baseapp.content.model;

import java.util.Date;
import java.util.HashSet;
import java.util.Set;

/**
 * AbstractContent entity provides the base persistence definition of the
 * Content entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractContent implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = 1491525811585796714L;
	private String contentId;
	private String categoryId;
	private String contentTitle;
	private String contentText;
	private String isPublish;
	private String accessLevel;
	private Long ordering;
	private Date contentEffDate;
	private Date contentExpDate;
	private Long createUserId;
	private Date createDate;
	private Long modifyUserId;
	private Date modifyDate;
	private String remark;
	private Set accessories = new HashSet(0);

	// Constructors

	/** default constructor */
	public AbstractContent() {
	}

	/** minimal constructor */
	public AbstractContent(String categoryId, String contentTitle,
			String contentText, String isPublish, String accessLevel,
			Long ordering, Date contentEffDate, Date contentExpDate,
			Long createUserId, Date createDate, Long modifyUserId,
			Date modifyDate) {
		this.categoryId = categoryId;
		this.contentTitle = contentTitle;
		this.contentText = contentText;
		this.isPublish = isPublish;
		this.accessLevel = accessLevel;
		this.ordering = ordering;
		this.contentEffDate = contentEffDate;
		this.contentExpDate = contentExpDate;
		this.createUserId = createUserId;
		this.createDate = createDate;
		this.modifyUserId = modifyUserId;
		this.modifyDate = modifyDate;
	}

	/** full constructor */
	public AbstractContent(String categoryId, String contentTitle,
			String contentText, String isPublish, String accessLevel,
			Long ordering, Date contentEffDate, Date contentExpDate,
			Long createUserId, Date createDate, Long modifyUserId,
			Date modifyDate, String remark, Set accessories) {
		this.categoryId = categoryId;
		this.contentTitle = contentTitle;
		this.contentText = contentText;
		this.isPublish = isPublish;
		this.accessLevel = accessLevel;
		this.ordering = ordering;
		this.contentEffDate = contentEffDate;
		this.contentExpDate = contentExpDate;
		this.createUserId = createUserId;
		this.createDate = createDate;
		this.modifyUserId = modifyUserId;
		this.modifyDate = modifyDate;
		this.remark = remark;
		this.accessories = accessories;
	}

	// Property accessors

	public String getContentId() {
		return this.contentId;
	}

	public void setContentId(String contentId) {
		this.contentId = contentId;
	}

	public String getCategoryId() {
		return categoryId;
	}

	public void setCategoryId(String categoryId) {
		this.categoryId = categoryId;
	}

	public String getContentTitle() {
		return this.contentTitle;
	}

	public void setContentTitle(String contentTitle) {
		this.contentTitle = contentTitle;
	}

	public String getContentText() {
		return this.contentText;
	}

	public void setContentText(String contentText) {
		this.contentText = contentText;
	}

	public String getIsPublish() {
		return this.isPublish;
	}

	public void setIsPublish(String isPublish) {
		this.isPublish = isPublish;
	}

	public String getAccessLevel() {
		return this.accessLevel;
	}

	public void setAccessLevel(String accessLevel) {
		this.accessLevel = accessLevel;
	}

	public Long getOrdering() {
		return this.ordering;
	}

	public void setOrdering(Long ordering) {
		this.ordering = ordering;
	}

	public Date getContentEffDate() {
		return contentEffDate;
	}

	public void setContentEffDate(Date contentEffDate) {
		this.contentEffDate = contentEffDate;
	}

	public Date getContentExpDate() {
		return contentExpDate;
	}

	public void setContentExpDate(Date contentExpDate) {
		this.contentExpDate = contentExpDate;
	}

	public Long getCreateUserId() {
		return this.createUserId;
	}

	public void setCreateUserId(Long createUserId) {
		this.createUserId = createUserId;
	}

	public Date getCreateDate() {
		return this.createDate;
	}

	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}

	public Long getModifyUserId() {
		return this.modifyUserId;
	}

	public void setModifyUserId(Long modifyUserId) {
		this.modifyUserId = modifyUserId;
	}

	public Date getModifyDate() {
		return this.modifyDate;
	}

	public void setModifyDate(Date modifyDate) {
		this.modifyDate = modifyDate;
	}

	public String getRemark() {
		return this.remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}

	public Set getAccessories() {
		return this.accessories;
	}

	public void setAccessories(Set accessories) {
		this.accessories = accessories;
	}

}

⌨️ 快捷键说明

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