ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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
}