/*********************************************************************
*	All Rights reserved,Copyright (c) K-Opticom
**********************************************************************
*＜プログラム内容＞
*	システム名		：eo顧客基幹システム
*	モジュール名	：JTUejbTU0091DBABase
*	ソースファイル名：JTUejbTU0091DBABase.java
*	作成者			：FJ
*	日付			：2011年06月14日
*＜機能概要＞
*	電話帳申込内容データベースアクセス共通部品のスーパークラス
*＜修正履歴＞
*	バージョン	修正日		修正者		修正内容
*	v3.00.00	2011/06/14	FJ)楠神		新規作成
*
**********************************************************************/

package eo.ejb.common.db;

import eo.ejb.cbm.entity.TU0091ETMsg;

/**
 * <p>
 * 電話帳申込へのデータベースアクセスクラスです。<br>
 * </p>
 * @author FJ
 */
public class JTUejbTU0091DBABase extends JPCejbDBABase
{

	/**
	 * <p>
	 * 新しいJTUejbTU0091DBABaseを作成します。
	 * </p>
	 */
	public JTUejbTU0091DBABase()
	{
		super(TU0091ETMsg.class.getName());
	}

	/**
	 * <p>
	 * 世代を管理するカラム名を取得します。
	 * </p>
	 * @return 世代を管理するカラム名
	 */
	protected String getGenerationColumn()
	{
		return TU0091ETMsg.GENE_ADD_DTM;
	}

	/**
	 * <p>
	 * 無効状態を管理するカラム名を取得します。
	 * </p>
	 * @return 無効状態を管理するカラム名
	 */
	protected String getInvalidColumn()
	{
		return TU0091ETMsg.MK_FLG;
	}

	/**
	 * <p>
	 * 予約を管理するエンティティか判定します。
	 * </p>
	 * @return 予約を管理するエンティティの場合はtrue
	 */
	protected boolean isReserveMgr()
	{
		return false;
	}
	

	/**
	 * <p>
	 * 予約適用基準日となるカラム名を取得します。
	 * </p>
	 * @return 予約適用基準日となるカラム名
	 */
	protected String getCurrentColumn()
	{
		return null;
	}

	/**
	 * <p>
	 * 予約の状態を管理するエンティティか判定します。
	 * </p>
	 * @return 予約の状態を管理するエンティティの場合はtrue
	 */
	protected boolean isReserveStateMgr()
	{
		return false;
	}

	/**
	 * <p>
	 * 予約の状態を管理するカラム名を取得します。
	 * </p>
	 * @return 予約の状態を管理するカラム名
	 */
	protected String getReserveStateColumn()
	{
		return null;
	}

}
