拉取代码
This commit is contained in:
parent
635374f205
commit
b917d217be
|
|
@ -181302,17 +181302,17 @@ namespace Model
|
|||
|
||||
private string _ContractTrackId;
|
||||
|
||||
private string _BCWS_Quantity;
|
||||
private System.Nullable<decimal> _BCWS_Quantity;
|
||||
|
||||
private string _BCWS_OutputValue;
|
||||
private System.Nullable<decimal> _BCWS_OutputValue;
|
||||
|
||||
private string _BCWS_Percentage;
|
||||
private System.Nullable<decimal> _BCWS_Percentage;
|
||||
|
||||
private string _ACWP_Quantity;
|
||||
private System.Nullable<decimal> _ACWP_Quantity;
|
||||
|
||||
private string _ACWP_OutputValue;
|
||||
private System.Nullable<decimal> _ACWP_OutputValue;
|
||||
|
||||
private string _ACWP_Percentage;
|
||||
private System.Nullable<decimal> _ACWP_Percentage;
|
||||
|
||||
private string _Date;
|
||||
|
||||
|
|
@ -181324,17 +181324,17 @@ namespace Model
|
|||
partial void OnContractTrackProgressIdChanged();
|
||||
partial void OnContractTrackIdChanging(string value);
|
||||
partial void OnContractTrackIdChanged();
|
||||
partial void OnBCWS_QuantityChanging(string value);
|
||||
partial void OnBCWS_QuantityChanging(System.Nullable<decimal> value);
|
||||
partial void OnBCWS_QuantityChanged();
|
||||
partial void OnBCWS_OutputValueChanging(string value);
|
||||
partial void OnBCWS_OutputValueChanging(System.Nullable<decimal> value);
|
||||
partial void OnBCWS_OutputValueChanged();
|
||||
partial void OnBCWS_PercentageChanging(string value);
|
||||
partial void OnBCWS_PercentageChanging(System.Nullable<decimal> value);
|
||||
partial void OnBCWS_PercentageChanged();
|
||||
partial void OnACWP_QuantityChanging(string value);
|
||||
partial void OnACWP_QuantityChanging(System.Nullable<decimal> value);
|
||||
partial void OnACWP_QuantityChanged();
|
||||
partial void OnACWP_OutputValueChanging(string value);
|
||||
partial void OnACWP_OutputValueChanging(System.Nullable<decimal> value);
|
||||
partial void OnACWP_OutputValueChanged();
|
||||
partial void OnACWP_PercentageChanging(string value);
|
||||
partial void OnACWP_PercentageChanging(System.Nullable<decimal> value);
|
||||
partial void OnACWP_PercentageChanged();
|
||||
partial void OnDateChanging(string value);
|
||||
partial void OnDateChanged();
|
||||
|
|
@ -181385,8 +181385,8 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCWS_Quantity", DbType="NVarChar(50)")]
|
||||
public string BCWS_Quantity
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCWS_Quantity", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> BCWS_Quantity
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -181405,8 +181405,8 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCWS_OutputValue", DbType="NVarChar(50)")]
|
||||
public string BCWS_OutputValue
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCWS_OutputValue", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> BCWS_OutputValue
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -181425,8 +181425,8 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCWS_Percentage", DbType="NVarChar(50)")]
|
||||
public string BCWS_Percentage
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BCWS_Percentage", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> BCWS_Percentage
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -181445,8 +181445,8 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ACWP_Quantity", DbType="NVarChar(50)")]
|
||||
public string ACWP_Quantity
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ACWP_Quantity", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> ACWP_Quantity
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -181465,8 +181465,8 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ACWP_OutputValue", DbType="NVarChar(50)")]
|
||||
public string ACWP_OutputValue
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ACWP_OutputValue", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> ACWP_OutputValue
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -181485,8 +181485,8 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ACWP_Percentage", DbType="NVarChar(50)")]
|
||||
public string ACWP_Percentage
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ACWP_Percentage", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> ACWP_Percentage
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue