提交代码
This commit is contained in:
@@ -59583,6 +59583,14 @@ namespace Model
|
||||
|
||||
private string _CheckItemSetId;
|
||||
|
||||
private string _ResponsibleUnit;
|
||||
|
||||
private string _WorkAreaId;
|
||||
|
||||
private string _QuestionType;
|
||||
|
||||
private string _ResponsibleMan;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Technique_CheckItemSet> _Technique_CheckItemSet;
|
||||
@@ -59623,6 +59631,14 @@ namespace Model
|
||||
partial void OnPartInPersonNamesChanged();
|
||||
partial void OnCheckItemSetIdChanging(string value);
|
||||
partial void OnCheckItemSetIdChanged();
|
||||
partial void OnResponsibleUnitChanging(string value);
|
||||
partial void OnResponsibleUnitChanged();
|
||||
partial void OnWorkAreaIdChanging(string value);
|
||||
partial void OnWorkAreaIdChanged();
|
||||
partial void OnQuestionTypeChanging(string value);
|
||||
partial void OnQuestionTypeChanged();
|
||||
partial void OnResponsibleManChanging(string value);
|
||||
partial void OnResponsibleManChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckSpecial()
|
||||
@@ -59960,6 +59976,86 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibleUnit", DbType="NVarChar(50)")]
|
||||
public string ResponsibleUnit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ResponsibleUnit;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ResponsibleUnit != value))
|
||||
{
|
||||
this.OnResponsibleUnitChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ResponsibleUnit = value;
|
||||
this.SendPropertyChanged("ResponsibleUnit");
|
||||
this.OnResponsibleUnitChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(50)")]
|
||||
public string WorkAreaId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WorkAreaId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WorkAreaId != value))
|
||||
{
|
||||
this.OnWorkAreaIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WorkAreaId = value;
|
||||
this.SendPropertyChanged("WorkAreaId");
|
||||
this.OnWorkAreaIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QuestionType", DbType="NVarChar(50)")]
|
||||
public string QuestionType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._QuestionType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._QuestionType != value))
|
||||
{
|
||||
this.OnQuestionTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._QuestionType = value;
|
||||
this.SendPropertyChanged("QuestionType");
|
||||
this.OnQuestionTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibleMan", DbType="NVarChar(50)")]
|
||||
public string ResponsibleMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ResponsibleMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ResponsibleMan != value))
|
||||
{
|
||||
this.OnResponsibleManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ResponsibleMan = value;
|
||||
this.SendPropertyChanged("ResponsibleMan");
|
||||
this.OnResponsibleManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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
|
||||
{
|
||||
@@ -60099,6 +60195,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _Rectification_Date;
|
||||
|
||||
private string _CheckOpinions;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
|
||||
@@ -60151,6 +60249,8 @@ namespace Model
|
||||
partial void OnCheckItemSetContentChanged();
|
||||
partial void OnRectification_DateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnRectification_DateChanged();
|
||||
partial void OnCheckOpinionsChanging(string value);
|
||||
partial void OnCheckOpinionsChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckSpecialDetail()
|
||||
@@ -60608,6 +60708,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckOpinions", DbType="NVarChar(2000)")]
|
||||
public string CheckOpinions
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CheckOpinions;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CheckOpinions != value))
|
||||
{
|
||||
this.OnCheckOpinionsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CheckOpinions = value;
|
||||
this.SendPropertyChanged("CheckOpinions");
|
||||
this.OnCheckOpinionsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckSpecialDetail_Base_Unit", Storage="_Base_Unit", ThisKey="UnitId", OtherKey="UnitId", IsForeignKey=true)]
|
||||
public Base_Unit Base_Unit
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user