提交代码
This commit is contained in:
+49
-25
@@ -121441,12 +121441,12 @@ namespace Model
|
||||
|
||||
private string _MeetingCode;
|
||||
|
||||
private string _States;
|
||||
|
||||
private string _CompileMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
private string _States;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
|
||||
@@ -121483,12 +121483,12 @@ namespace Model
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnMeetingCodeChanging(string value);
|
||||
partial void OnMeetingCodeChanged();
|
||||
partial void OnStatesChanging(string value);
|
||||
partial void OnStatesChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnStatesChanging(string value);
|
||||
partial void OnStatesChanged();
|
||||
#endregion
|
||||
|
||||
public Driver_Meeting()
|
||||
@@ -121767,26 +121767,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Char(1)")]
|
||||
public string States
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._States;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._States != value))
|
||||
{
|
||||
this.OnStatesChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._States = value;
|
||||
this.SendPropertyChanged("States");
|
||||
this.OnStatesChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
||||
public string CompileMan
|
||||
{
|
||||
@@ -121827,6 +121807,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Char(1)")]
|
||||
public string States
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._States;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._States != value))
|
||||
{
|
||||
this.OnStatesChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._States = value;
|
||||
this.SendPropertyChanged("States");
|
||||
this.OnStatesChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Driver_Meeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -306122,6 +306122,8 @@ namespace Model
|
||||
|
||||
private string _WorkPackId;
|
||||
|
||||
private string _LevelName;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private System.Nullable<int> _States;
|
||||
@@ -306148,6 +306150,8 @@ namespace Model
|
||||
partial void OnScheduleIdChanged();
|
||||
partial void OnWorkPackIdChanging(string value);
|
||||
partial void OnWorkPackIdChanged();
|
||||
partial void OnLevelNameChanging(string value);
|
||||
partial void OnLevelNameChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnStatesChanging(System.Nullable<int> value);
|
||||
@@ -306193,7 +306197,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackId", DbType="VarChar(50) NOT NULL", CanBeNull=false)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackId", DbType="VarChar(50)")]
|
||||
public string WorkPackId
|
||||
{
|
||||
get
|
||||
@@ -306213,6 +306217,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LevelName", DbType="VarChar(50)")]
|
||||
public string LevelName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._LevelName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._LevelName != value))
|
||||
{
|
||||
this.OnLevelNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._LevelName = value;
|
||||
this.SendPropertyChanged("LevelName");
|
||||
this.OnLevelNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="VarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user