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

📄 blogpk.java

📁 jsp网站开发四“酷”全书原码
💻 JAVA
字号:
/*
 * This source file was generated by FireStorm/DAO 3.0 (build 99)
 * on 26-十月-2005 at 09:50:56
 * 
 * If you purchase a full license for FireStorm/DAO you can customize this file header.
 * 
 * For more information please visit http://www.codefutures.com/products/firestorm
 */

package cn.wanfeng.myblog.dto;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;

/** 
 * This class represents the primary key of the Blog table.
 */
public class BlogPk implements Serializable
{
	private int blogID;

	/** 
	 * This attribute represents whether the primitive attribute blogID is null.
	 */
	private boolean blogIDNull;

	/** 
	 * Sets the value of blogID
	 */
	public void setBlogID(int blogID)
	{
		this.blogID = blogID;
	}

	/** 
	 * Gets the value of blogID
	 */
	public int getBlogID()
	{
		return blogID;
	}

	/**
	 * Method 'BlogPk'
	 * 
	 */
	public BlogPk()
	{
	}

	/**
	 * Method 'BlogPk'
	 * 
	 * @param blogID
	 */
	public BlogPk(final int blogID)
	{
		this.blogID = blogID;
	}

	/** 
	 * Sets the value of blogIDNull
	 */
	public void setBlogIDNull(boolean blogIDNull)
	{
		this.blogIDNull = blogIDNull;
	}

	/** 
	 * Gets the value of blogIDNull
	 */
	public boolean isBlogIDNull()
	{
		return blogIDNull;
	}

	/**
	 * Method 'equals'
	 * 
	 * @param _other
	 * @return boolean
	 */
	public boolean equals(Object _other)
	{
		if (_other == null) {
			return false;
		}
		
		if (_other == this) {
			return true;
		}
		
		if (!(_other instanceof BlogPk)) {
			return false;
		}
		
		final BlogPk _cast = (BlogPk) _other;
		if (blogID != _cast.blogID) {
			return false;
		}
		
		if (blogIDNull != _cast.blogIDNull) {
			return false;
		}
		
		return true;
	}

	/**
	 * Method 'hashCode'
	 * 
	 * @return int
	 */
	public int hashCode()
	{
		int _hashCode = 0;
		_hashCode = 29 * _hashCode + blogID;
		_hashCode = 29 * _hashCode + (blogIDNull ? 1 : 0);
		return _hashCode;
	}

	/**
	 * Method 'toString'
	 * 
	 * @return String
	 */
	public String toString()
	{
		StringBuffer ret = new StringBuffer();
		ret.append( "cn.wanfeng.myblog.dto.BlogPk: " );
		ret.append( "blogID='" + blogID + "'" );
		return ret.toString();
	}

}

⌨️ 快捷键说明

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