/*******************************************************************************
*	 All Rights reserved,Copyright (c) K-Opticom 
********************************************************************************
*＜プログラム内容＞
*	システム名		：eo顧客基幹システム
*	モジュール名	：EZM0011B012CBSMsg1List
*	ソースファイル名：EZM0011B012CBSMsg1List.java
*	作成者			：EK909396
*	日付			：2012年02月01日
*＜機能概要＞
*	権限コード一覧スキーマクラスです。
*＜修正履歴＞
*	バージョン	修正日		修正者		修正内容
*	ｖ1.00.00
*
********************************************************************************/

package eo.ejb.cbs.cbsmsg;

import com.fujitsu.futurity.model.base.CAANSchemaInfo;

public class EZM0011B012CBSMsg1List extends CAANSchemaInfo {

    /**
     * テンプレート項目の配列
     */
    private static final Object[][] CONTENTS = {
        {"user_nm", "String"},  // ユーザー名
        {"org_cd", "String"},  // 組織コード
        {"org_nm", "String"},  // 組織名
        {"position_cd", "String"},  // 立場コード
        {"position_nm", "String"},  // 立場名
        {"wkkbt_org_cd", "String"},  // 業務個別設定組織コード
        {"wkkbt_org_nm", "String"},  // 業務個別設定組織名
        {"wkorg_cd", "String"},  // 個別設定関連組織コード
        {"wkkbt_position_cd", "String"},  // 業務個別設定立場コード
        {"wkkbt_position_nm", "String"},  // 業務個別設定立場名
        {"kggrp_cd", "String"},  // 権限グループコード
        {"authority_grp_nm", "String"}  // 権限グループ名
    };

    /**
     * ユーザー名
     */
    public static final String USER_NM;

    /**
     * 組織コード
     */
    public static final String ORG_CD;

    /**
     * 組織名
     */
    public static final String ORG_NM;

    /**
     * 立場コード
     */
    public static final String POSITION_CD;

    /**
     * 立場名
     */
    public static final String POSITION_NM;

    /**
     * 業務個別設定組織コード
     */
    public static final String WKKBT_ORG_CD;

    /**
     * 業務個別設定組織名
     */
    public static final String WKKBT_ORG_NM;

    /**
     * 個別設定関連組織コード
     */
    public static final String WKORG_CD;

    /**
     * 業務個別設定立場コード
     */
    public static final String WKKBT_POSITION_CD;

    /**
     * 業務個別設定立場名
     */
    public static final String WKKBT_POSITION_NM;

    /**
     * 権限グループコード
     */
    public static final String KGGRP_CD;

    /**
     * 権限グループ名
     */
    public static final String AUTHORITY_GRP_NM;

    /**
     * 静的初期化子です。
     * 項目名定数の値を設定します。
     */
    static {
        USER_NM = "user_nm";
        ORG_CD = "org_cd";
        ORG_NM = "org_nm";
        POSITION_CD = "position_cd";
        POSITION_NM = "position_nm";
        WKKBT_ORG_CD = "wkkbt_org_cd";
        WKKBT_ORG_NM = "wkkbt_org_nm";
        WKORG_CD = "wkorg_cd";
        WKKBT_POSITION_CD = "wkkbt_position_cd";
        WKKBT_POSITION_NM = "wkkbt_position_nm";
        KGGRP_CD = "kggrp_cd";
        AUTHORITY_GRP_NM = "authority_grp_nm";
    }

    /**
     * 項目の配列を取得します。
     * @return 項目の配列
     */
    public Object[][] getContents() {
        return CONTENTS;
    }

}
