2023/10/31
This commit is contained in:
+48
-24
@@ -59742,6 +59742,8 @@ namespace Model
|
||||
|
||||
private string _CheckItemSetId;
|
||||
|
||||
private string _ReceiveMan;
|
||||
|
||||
private string _ResponsibleUnit;
|
||||
|
||||
private string _WorkAreaId;
|
||||
@@ -59750,8 +59752,6 @@ namespace Model
|
||||
|
||||
private string _ResponsibleMan;
|
||||
|
||||
private string _ReceiveMan;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Technique_CheckItemSet> _Technique_CheckItemSet;
|
||||
@@ -59792,6 +59792,8 @@ namespace Model
|
||||
partial void OnPartInPersonNamesChanged();
|
||||
partial void OnCheckItemSetIdChanging(string value);
|
||||
partial void OnCheckItemSetIdChanged();
|
||||
partial void OnReceiveManChanging(string value);
|
||||
partial void OnReceiveManChanged();
|
||||
partial void OnResponsibleUnitChanging(string value);
|
||||
partial void OnResponsibleUnitChanged();
|
||||
partial void OnWorkAreaIdChanging(string value);
|
||||
@@ -59800,8 +59802,6 @@ namespace Model
|
||||
partial void OnQuestionTypeChanged();
|
||||
partial void OnResponsibleManChanging(string value);
|
||||
partial void OnResponsibleManChanged();
|
||||
partial void OnReceiveManChanging(string value);
|
||||
partial void OnReceiveManChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckSpecial()
|
||||
@@ -60139,6 +60139,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReceiveMan", DbType="NVarChar(2000)")]
|
||||
public string ReceiveMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReceiveMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReceiveMan != value))
|
||||
{
|
||||
this.OnReceiveManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReceiveMan = value;
|
||||
this.SendPropertyChanged("ReceiveMan");
|
||||
this.OnReceiveManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibleUnit", DbType="NVarChar(50)")]
|
||||
public string ResponsibleUnit
|
||||
{
|
||||
@@ -60219,26 +60239,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReceiveMan", DbType="NVarChar(2000)")]
|
||||
public string ReceiveMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReceiveMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReceiveMan != value))
|
||||
{
|
||||
this.OnReceiveManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReceiveMan = value;
|
||||
this.SendPropertyChanged("ReceiveMan");
|
||||
this.OnReceiveManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckSpecial_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -317910,6 +317910,8 @@ namespace Model
|
||||
|
||||
private string _SpecialSchemeTypeId;
|
||||
|
||||
private string _Content;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_SolutionTempleteType> _Base_SolutionTempleteType;
|
||||
@@ -317952,6 +317954,8 @@ namespace Model
|
||||
partial void OnEditionChanged();
|
||||
partial void OnSpecialSchemeTypeIdChanging(string value);
|
||||
partial void OnSpecialSchemeTypeIdChanged();
|
||||
partial void OnContentChanging(string value);
|
||||
partial void OnContentChanged();
|
||||
#endregion
|
||||
|
||||
public Solution_CQMSConstructSolution()
|
||||
@@ -318260,6 +318264,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Content", DbType="NVarChar(2000)")]
|
||||
public string Content
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Content;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Content != value))
|
||||
{
|
||||
this.OnContentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Content = value;
|
||||
this.SendPropertyChanged("Content");
|
||||
this.OnContentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Solution_CQMSConstructSolution_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user