/*******************************************************************************
*	 All Rights reserved,Copyright (c) K-Opticom 
********************************************************************************
*＜プログラム内容＞
*	システム名		：eo顧客基幹システム
*	モジュール名	：ECN0071B002CBSMsg1List
*	ソースファイル名：ECN0071B002CBSMsg1List.java
*	作成者			：EK911025
*	日付			：2015年07月15日
*＜機能概要＞
*	コンテンツクレカ課金分請求情報スキーマクラスです。
*＜修正履歴＞
*	バージョン	修正日		修正者		修正内容
*	ｖ1.00.00
*
********************************************************************************/

package eo.ejb.cbs.cbsmsg;

import com.fujitsu.futurity.model.base.CAANSchemaInfo;

public class ECN0071B002CBSMsg1List extends CAANSchemaInfo {

    /**
     * テンプレート項目の配列
     */
    private static final Object[][] CONTENTS = {
        {"cont_svc_nm", "String"},  // コンテンツサービス名
        {"cont_nm", "String"},  // コンテンツ名
        {"cont_campaign_nm", "String"},  // コンテンツキャンペーン名
        {"cont_tanka", "String"},  // コンテンツ単価
        {"chrg_stat_cd", "String"},  // 課金状態コード
        {"amnt", "String"},  // 金額
        {"tax_rt", "String"},  // 税率
        {"cont_buy_cnt", "String"},  // コンテンツ購入数量
        {"taxarea", "String"},  // 税区
        {"crecard_no", "String"},  // クレジットカード番号
        {"crecard_comp_nm", "String"},  // クレジットカード会社名
        {"teise_div", "String"},  // 訂正区分
        {"CRECARD_ID", "String"},  // クレジットカードID
        {"CONT_SVC_CD", "String"},  // コンテンツサービスコード
        {"CONT_CD", "String"},  // コンテンツコード
        {"CONT_KEI_NO", "String"},  // コンテンツ契約番号
        {"CONT_KEI_NO_SEQ", "String"},  // コンテンツ契約番号枝番
        {"n_050_telno", "String"},  // 050電話番号
        {"crecard_kssai_seiymd", "String"}  // クレカ決済請求年月日
    };

    /**
     * コンテンツサービス名
     */
    public static final String CONT_SVC_NM;

    /**
     * コンテンツ名
     */
    public static final String CONT_NM;

    /**
     * コンテンツキャンペーン名
     */
    public static final String CONT_CAMPAIGN_NM;

    /**
     * コンテンツ単価
     */
    public static final String CONT_TANKA;

    /**
     * 課金状態コード
     */
    public static final String CHRG_STAT_CD;

    /**
     * 金額
     */
    public static final String AMNT;

    /**
     * 税率
     */
    public static final String TAX_RT;

    /**
     * コンテンツ購入数量
     */
    public static final String CONT_BUY_CNT;

    /**
     * 税区
     */
    public static final String TAXAREA;

    /**
     * クレジットカード番号
     */
    public static final String CRECARD_NO;

    /**
     * クレジットカード会社名
     */
    public static final String CRECARD_COMP_NM;

    /**
     * 訂正区分
     */
    public static final String TEISE_DIV;

    /**
     * クレジットカードID
     */
    public static final String CRECARD_ID;

    /**
     * コンテンツサービスコード
     */
    public static final String CONT_SVC_CD;

    /**
     * コンテンツコード
     */
    public static final String CONT_CD;

    /**
     * コンテンツ契約番号
     */
    public static final String CONT_KEI_NO;

    /**
     * コンテンツ契約番号枝番
     */
    public static final String CONT_KEI_NO_SEQ;

    /**
     * 050電話番号
     */
    public static final String N_050_TELNO;

    /**
     * クレカ決済請求年月日
     */
    public static final String CRECARD_KSSAI_SEIYMD;

    /**
     * 静的初期化子です。
     * 項目名定数の値を設定します。
     */
    static {
        CONT_SVC_NM = "cont_svc_nm";
        CONT_NM = "cont_nm";
        CONT_CAMPAIGN_NM = "cont_campaign_nm";
        CONT_TANKA = "cont_tanka";
        CHRG_STAT_CD = "chrg_stat_cd";
        AMNT = "amnt";
        TAX_RT = "tax_rt";
        CONT_BUY_CNT = "cont_buy_cnt";
        TAXAREA = "taxarea";
        CRECARD_NO = "crecard_no";
        CRECARD_COMP_NM = "crecard_comp_nm";
        TEISE_DIV = "teise_div";
        CRECARD_ID = "CRECARD_ID";
        CONT_SVC_CD = "CONT_SVC_CD";
        CONT_CD = "CONT_CD";
        CONT_KEI_NO = "CONT_KEI_NO";
        CONT_KEI_NO_SEQ = "CONT_KEI_NO_SEQ";
        N_050_TELNO = "n_050_telno";
        CRECARD_KSSAI_SEIYMD = "crecard_kssai_seiymd";
    }

    /**
     * 項目の配列を取得します。
     * @return 項目の配列
     */
    public Object[][] getContents() {
        return CONTENTS;
    }

}
