h-you / branches / src / ProcessManagement / ProcessManagement / DataModel / BudgetSumCode.cs @ 352
履歴 | 表示 | アノテート | ダウンロード (2.74 KB)
| 1 |
using System; |
|---|---|
| 2 |
using System.Collections.Generic; |
| 3 |
using System.Linq; |
| 4 |
using System.Text; |
| 5 |
|
| 6 |
namespace ProcessManagement.DataModel |
| 7 |
{
|
| 8 |
/// <summary> |
| 9 |
/// 積算予算書明細データ |
| 10 |
/// </summary> |
| 11 |
public class BudgetSumCode |
| 12 |
{
|
| 13 |
#region メンバ変数 |
| 14 |
|
| 15 |
private int m_BlockCode = 0; // ブロック番号 |
| 16 |
private int m_GroupCode = 0; // グループ番号 |
| 17 |
private int m_ComponentCode = 0; // 構成キー |
| 18 |
private int m_ItemCode = 0; // 工種キー |
| 19 |
private string m_ElementsName = string.Empty; // 要素名称 |
| 20 |
|
| 21 |
private DateTime m_EntryDate = DateTime.Now; // 登録日付 |
| 22 |
private DateTime m_UpdateDate = DateTime.Now; // 更新日付 |
| 23 |
#endregion |
| 24 |
|
| 25 |
#region 定数 |
| 26 |
public enum RepairFlgDef |
| 27 |
{
|
| 28 |
/// <summary> |
| 29 |
/// 新築 |
| 30 |
/// </summary> |
| 31 |
NewBuild = 0, |
| 32 |
/// <summary> |
| 33 |
/// 改築 |
| 34 |
/// </summary> |
| 35 |
Repair, |
| 36 |
} |
| 37 |
#endregion |
| 38 |
|
| 39 |
#region コンストラクタ |
| 40 |
#endregion |
| 41 |
|
| 42 |
#region プロパティ |
| 43 |
/// <summary> |
| 44 |
/// ブロック番号 |
| 45 |
/// </summary> |
| 46 |
public int BlockCode |
| 47 |
{
|
| 48 |
get { return m_BlockCode; }
|
| 49 |
set { m_BlockCode = value; }
|
| 50 |
} |
| 51 |
/// <summary> |
| 52 |
/// グループ番号 |
| 53 |
/// </summary> |
| 54 |
public int GroupCode |
| 55 |
{
|
| 56 |
get { return m_GroupCode; }
|
| 57 |
set { m_GroupCode = value; }
|
| 58 |
} |
| 59 |
/// <summary> |
| 60 |
/// 構成キー |
| 61 |
/// </summary> |
| 62 |
public int ComponentCode |
| 63 |
{
|
| 64 |
get { return m_ComponentCode; }
|
| 65 |
set { m_ComponentCode = value; }
|
| 66 |
} |
| 67 |
/// <summary> |
| 68 |
/// 工種キー |
| 69 |
/// </summary> |
| 70 |
public int ItemCode |
| 71 |
{
|
| 72 |
get { return m_ItemCode; }
|
| 73 |
set { m_ItemCode = value; }
|
| 74 |
} |
| 75 |
/// <summary> |
| 76 |
/// 要素名称 |
| 77 |
/// </summary> |
| 78 |
public string ElementsName |
| 79 |
{
|
| 80 |
get { return m_ElementsName; }
|
| 81 |
set { m_ElementsName = value; }
|
| 82 |
} |
| 83 |
|
| 84 |
/// <summary> |
| 85 |
/// 登録日付 |
| 86 |
/// </summary> |
| 87 |
public DateTime EntryDate |
| 88 |
{
|
| 89 |
set { m_EntryDate = value; }
|
| 90 |
get { return m_EntryDate; }
|
| 91 |
} |
| 92 |
/// <summary> |
| 93 |
/// 更新日付 |
| 94 |
/// </summary> |
| 95 |
public DateTime UpdateDate |
| 96 |
{
|
| 97 |
set { m_UpdateDate = value; }
|
| 98 |
get { return m_UpdateDate; }
|
| 99 |
} |
| 100 |
#endregion |
| 101 |
} |
| 102 |
} |