h-you / trunk / src / ProcessManagement / ProcessManagement / DataModel / PersonSalaryMaster.cs @ 384
履歴 | 表示 | アノテート | ダウンロード (2.23 KB)
1 | 376 | bit | 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 PersonSalaryMaster |
||
12 | { |
||
13 | #region メンバ変数 |
||
14 | private int m_PersonCode = 0; // 担当者コード |
||
15 | private DateTime m_StartDate = DateTime.MinValue; // 使用開始年月日付 |
||
16 | |||
17 | private double m_MonthlySalary = 0; // 月給金額 |
||
18 | private double m_YearSalary = 0; // 年棒金額 |
||
19 | |||
20 | private DateTime m_EntryDate = DateTime.Now; // 登録日付 |
||
21 | private DateTime m_UpdateDate = DateTime.Now; // 更新日付 |
||
22 | #endregion |
||
23 | |||
24 | #region コンストラクタ |
||
25 | #endregion |
||
26 | |||
27 | #region プロパティ |
||
28 | /// <summary> |
||
29 | /// 担当者コード |
||
30 | /// </summary> |
||
31 | public int PersonCode |
||
32 | { |
||
33 | set { m_PersonCode = value; } |
||
34 | get { return m_PersonCode; } |
||
35 | } |
||
36 | /// <summary> |
||
37 | /// 使用開始年月 |
||
38 | /// </summary> |
||
39 | public DateTime StartDate |
||
40 | { |
||
41 | set { m_StartDate = value; } |
||
42 | get { return m_StartDate; } |
||
43 | } |
||
44 | /// <summary> |
||
45 | /// 月給金額 |
||
46 | /// </summary> |
||
47 | public double MonthlySalary |
||
48 | { |
||
49 | get { return m_MonthlySalary; } |
||
50 | set { m_MonthlySalary = value; } |
||
51 | } |
||
52 | /// <summary> |
||
53 | /// 年棒金額 |
||
54 | /// </summary> |
||
55 | public double YearSalary |
||
56 | { |
||
57 | get { return m_YearSalary; } |
||
58 | set { m_YearSalary = value; } |
||
59 | } |
||
60 | /// <summary> |
||
61 | /// 登録日付 |
||
62 | /// </summary> |
||
63 | public DateTime EntryDate |
||
64 | { |
||
65 | set { m_EntryDate = value; } |
||
66 | get { return m_EntryDate; } |
||
67 | } |
||
68 | /// <summary> |
||
69 | /// <summary> |
||
70 | /// 更新日付 |
||
71 | /// </summary> |
||
72 | public DateTime UpdateDate |
||
73 | { |
||
74 | set { m_UpdateDate = value; } |
||
75 | get { return m_UpdateDate; } |
||
76 | } |
||
77 | #endregion |
||
78 | } |
||
79 | } |