h-you / trunk / src / ProcessManagement / ProcessManagement / DataModel / ConstructionLedgerExcute.cs @ 376
履歴 | 表示 | アノテート | ダウンロード (2.79 KB)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace ProcessManagement.DataModel |
7 |
{ |
8 |
public class ConstructionLedgerExcute |
9 |
{ |
10 |
/// <summary> |
11 |
/// 工事予算書明細データ |
12 |
/// </summary> |
13 |
#region メンバ変数 |
14 |
|
15 |
private int m_ConstructionCode = 0; // 工事コード |
16 |
|
17 |
private int m_GroupCount = 0; // グループ番号 |
18 |
private int m_LineCount = 0; // 行番号 |
19 |
private int m_ColumnCount = 0; // 列番号 |
20 |
|
21 |
private double m_PaymentAmount = 0; // 支払金額 |
22 |
private DateTime m_TargetMonth = DateTime.MinValue; // 対象年月 |
23 |
|
24 |
private DateTime m_EntryDate = DateTime.Now; // 登録日付 |
25 |
private DateTime m_UpdateDate = DateTime.Now; // 更新日付 |
26 |
#endregion |
27 |
|
28 |
#region コンストラクタ |
29 |
#endregion |
30 |
|
31 |
#region プロパティ |
32 |
/// <summary> |
33 |
/// 工事コード |
34 |
/// </summary> |
35 |
public int ConstructionCode |
36 |
{ |
37 |
get { return m_ConstructionCode; } |
38 |
set { m_ConstructionCode = value; } |
39 |
} |
40 |
/// <summary> |
41 |
/// グループ番号 |
42 |
/// </summary> |
43 |
public int GroupCount |
44 |
{ |
45 |
get { return m_GroupCount; } |
46 |
set { m_GroupCount = value; } |
47 |
} |
48 |
/// <summary> |
49 |
/// 行番号 |
50 |
/// </summary> |
51 |
public int LineCount |
52 |
{ |
53 |
get { return m_LineCount; } |
54 |
set { m_LineCount = value; } |
55 |
} |
56 |
/// <summary> |
57 |
/// 列番号 |
58 |
/// </summary> |
59 |
public int ColumnCount |
60 |
{ |
61 |
get { return m_ColumnCount; } |
62 |
set { m_ColumnCount = value; } |
63 |
} |
64 |
/// <summary> |
65 |
/// 支払金額 |
66 |
/// </summary> |
67 |
public double PaymentAmount |
68 |
{ |
69 |
get { return m_PaymentAmount; } |
70 |
set { m_PaymentAmount = value; } |
71 |
} |
72 |
/// <summary> |
73 |
/// 対象年月 |
74 |
/// </summary> |
75 |
public DateTime TargetMonth |
76 |
{ |
77 |
get { return m_TargetMonth; } |
78 |
set { m_TargetMonth = value; } |
79 |
} |
80 |
|
81 |
/// <summary> |
82 |
/// 登録日付 |
83 |
/// </summary> |
84 |
public DateTime EntryDate |
85 |
{ |
86 |
set { m_EntryDate = value; } |
87 |
get { return m_EntryDate; } |
88 |
} |
89 |
/// <summary> |
90 |
/// 更新日付 |
91 |
/// </summary> |
92 |
public DateTime UpdateDate |
93 |
{ |
94 |
set { m_UpdateDate = value; } |
95 |
get { return m_UpdateDate; } |
96 |
} |
97 |
#endregion |
98 |
} |
99 |
} |