From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。

---
 HotelPms.SourceFactory/Template/BeanFileMode_ProtoEx.txt |   98 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 98 insertions(+), 0 deletions(-)

diff --git a/HotelPms.SourceFactory/Template/BeanFileMode_ProtoEx.txt b/HotelPms.SourceFactory/Template/BeanFileMode_ProtoEx.txt
new file mode 100644
index 0000000..cc70660
--- /dev/null
+++ b/HotelPms.SourceFactory/Template/BeanFileMode_ProtoEx.txt
@@ -0,0 +1,98 @@
+using System;
+using System.Collections.Concurrent;
+using System.Collections.Generic;
+using System.Data.SqlClient;
+using System.Text;
+using Pms.Share.Data;
+using Pms.Share.Util;
+@0@
+
+namespace @1@;
+
+/// ****************************** Description *******************************
+/// ���V�X�e������
+/// �@@2@
+/// ���T�v
+/// �@@3@
+/// ������
+/// �@@4@  �R�[�h�쐬�c�[��    �����쐬
+/// ****************************** Declarations ******************************
+[Serializable()]
+public partial class @5@ : RecordBase
+{
+    #region  �����������@Property�@����������
+
+    public static ConcurrentDictionary<string, int> PrimaryKey { get; } = new ConcurrentDictionary<string, int>();
+
+    #endregion
+
+    @18@()
+    {
+        if (PrimaryKey.Count == 0)
+        {
+@17@
+        }
+    }
+
+    #region  �����������@Function�@����������
+@8@
+
+    public override void CopyTo(object dest)
+    {
+        @5@ item = dest as @5@;
+@12@
+    }
+
+    public override void Clear()
+    {
+@13@
+    }
+
+    public @5@ DeepClone()
+    {
+        @5@ item = new @5@();
+@9@
+        return item;
+    }
+
+    public override bool ConvertDataRow(System.Data.DataRow row)
+    {
+@10@
+        return true;
+    }
+
+    public void ToDataRow(System.Data.DataRow row)
+    {
+@19@
+    }
+
+    public void ConvertReader(SqlDataReader row)
+    {
+@10@
+    }
+
+    public string AddSql()
+    {
+@11@
+    }
+
+    public string UpdateSql()
+    {
+@15@
+    }
+
+    public string ToText()
+    {
+        StringBuilder text = new StringBuilder();
+@14@
+        return text.ToString();
+    }
+
+    public object GetField(string name)
+    {
+@16@
+        else { return null; }
+    }
+
+    #endregion
+}

--
Gitblit v1.10.0