/** サーフェス定義マップを返却. */
@Override
protected Map<String, String> getSurfaces() {
// サーフェス定義
// 入力チェックエラー発生時のエラーメッセージラベルに使用します。
Map<String, String> result = new HashMap<String, String>();
result.put("companyCd", propertyHelper.getSurface(TutorialProp.S.COMPANY));
result.put("tutorialCd", propertyHelper.getSurface(TutorialProp.S.TUTORIAL_CD));
result.put("startDate", propertyHelper.getSurface(TutorialProp.S.START_DATE));
result.put("endDate", propertyHelper.getSurface(TutorialProp.S.END_DATE));
result.put("tutorialName", propertyHelper.getSurface(TutorialProp.S.TUTORIAL_NAME));
return result;
}