リビジョン 484
評価点処理追加
発注者マスタ:50音追加
工事日報:工事毎にキー等変更
SQLワイルドカードをフィールドドリスト作成に変更
SQLシングルコート・カンマのコントロールコードを持つ文字列をCONCAT関数により登録する様に変更
PersonExpensesCost.cs | ||
---|---|---|
30 | 30 |
/// <summary> |
31 | 31 |
/// 経費金額 |
32 | 32 |
/// </summary> |
33 |
private int[] m_CostValue = new int[CostDataOfPerson.DataNoStrArrary.Length];
|
|
33 |
private long[] m_CostValue = new long[CostDataOfPerson.DataNoStrArrary.Length];
|
|
34 | 34 |
#endregion |
35 | 35 |
|
36 | 36 |
#region コンストラクタ |
37 |
public PersonExpensesCost(int DepartmentCode, int PersonCode, DateTime StartDate, DateTime CompDate, int[] CostValue)
|
|
37 |
public PersonExpensesCost(int DepartmentCode, int PersonCode, DateTime StartDate, DateTime CompDate, long[] CostValue)
|
|
38 | 38 |
{ |
39 | 39 |
m_DepartmentCode = DepartmentCode; |
40 | 40 |
m_PersonCode = PersonCode; |
... | ... | |
80 | 80 |
/// <summary> |
81 | 81 |
/// 経費金額 |
82 | 82 |
/// </summary> |
83 |
public int[] CostValue
|
|
83 |
public long[] CostValue
|
|
84 | 84 |
{ |
85 | 85 |
get { return m_CostValue; } |
86 | 86 |
set { m_CostValue = value; } |
他の形式にエクスポート: Unified diff