集团在建项目使用详情

This commit is contained in:
2026-05-26 14:56:00 +08:00
parent b17dafcbe9
commit 329ee99962
14 changed files with 1459 additions and 178 deletions
+120
View File
@@ -320596,6 +320596,16 @@ namespace Model
private System.DateTime _Create_date;
private string _HandleMan;
private string _HandleManName;
private string _HandleState;
private System.Nullable<System.DateTime> _HandleDate;
private string _ReasonType;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -320628,6 +320638,16 @@ namespace Model
partial void OnCreate_userChanged();
partial void OnCreate_dateChanging(System.DateTime value);
partial void OnCreate_dateChanged();
partial void OnHandleManChanging(string value);
partial void OnHandleManChanged();
partial void OnHandleManNameChanging(string value);
partial void OnHandleManNameChanged();
partial void OnHandleStateChanging(string value);
partial void OnHandleStateChanged();
partial void OnHandleDateChanging(System.Nullable<System.DateTime> value);
partial void OnHandleDateChanged();
partial void OnReasonTypeChanging(string value);
partial void OnReasonTypeChanged();
#endregion
public Project_MasterDataUsage()
@@ -320915,6 +320935,106 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleMan", DbType="NVarChar(50)")]
public string HandleMan
{
get
{
return this._HandleMan;
}
set
{
if ((this._HandleMan != value))
{
this.OnHandleManChanging(value);
this.SendPropertyChanging();
this._HandleMan = value;
this.SendPropertyChanged("HandleMan");
this.OnHandleManChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleManName", DbType="NVarChar(50)")]
public string HandleManName
{
get
{
return this._HandleManName;
}
set
{
if ((this._HandleManName != value))
{
this.OnHandleManNameChanging(value);
this.SendPropertyChanging();
this._HandleManName = value;
this.SendPropertyChanged("HandleManName");
this.OnHandleManNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleState", DbType="Char(1)")]
public string HandleState
{
get
{
return this._HandleState;
}
set
{
if ((this._HandleState != value))
{
this.OnHandleStateChanging(value);
this.SendPropertyChanging();
this._HandleState = value;
this.SendPropertyChanged("HandleState");
this.OnHandleStateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleDate", DbType="DateTime")]
public System.Nullable<System.DateTime> HandleDate
{
get
{
return this._HandleDate;
}
set
{
if ((this._HandleDate != value))
{
this.OnHandleDateChanging(value);
this.SendPropertyChanging();
this._HandleDate = value;
this.SendPropertyChanged("HandleDate");
this.OnHandleDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReasonType", DbType="NVarChar(50)")]
public string ReasonType
{
get
{
return this._ReasonType;
}
set
{
if ((this._ReasonType != value))
{
this.OnReasonTypeChanging(value);
this.SendPropertyChanging();
this._ReasonType = value;
this.SendPropertyChanged("ReasonType");
this.OnReasonTypeChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;