Merge branch 'master' of http://47.104.102.122:3000/panhf/CNCEC_SUBQHSE_WUHUAN
This commit is contained in:
@@ -56366,6 +56366,8 @@ namespace Model
|
||||
|
||||
private string _SaveHandleMan;
|
||||
|
||||
private string _CCManIds;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -56422,6 +56424,8 @@ namespace Model
|
||||
partial void OnProposeUnitIdChanged();
|
||||
partial void OnSaveHandleManChanging(string value);
|
||||
partial void OnSaveHandleManChanged();
|
||||
partial void OnCCManIdsChanging(string value);
|
||||
partial void OnCCManIdsChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckControl()
|
||||
@@ -56900,6 +56904,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CCManIds", DbType="NVarChar(2000)")]
|
||||
public string CCManIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CCManIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CCManIds != value))
|
||||
{
|
||||
this.OnCCManIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CCManIds = value;
|
||||
this.SendPropertyChanged("CCManIds");
|
||||
this.OnCCManIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckControl_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -220236,6 +220260,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _SortIndex;
|
||||
|
||||
private System.Nullable<bool> _IsOK;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -220270,6 +220296,8 @@ namespace Model
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnSortIndexChanging(System.Nullable<int> value);
|
||||
partial void OnSortIndexChanged();
|
||||
partial void OnIsOKChanging(System.Nullable<bool> value);
|
||||
partial void OnIsOKChanged();
|
||||
#endregion
|
||||
|
||||
public JDGL_MonthPlan()
|
||||
@@ -220532,6 +220560,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsOK", DbType="Bit")]
|
||||
public System.Nullable<bool> IsOK
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsOK;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsOK != value))
|
||||
{
|
||||
this.OnIsOKChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsOK = value;
|
||||
this.SendPropertyChanged("IsOK");
|
||||
this.OnIsOKChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_JDGL_MonthPlan_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user