修改专项检查

This commit is contained in:
2023-09-05 14:45:18 +08:00
parent 02e9796323
commit f7e17a792a
13 changed files with 440 additions and 43 deletions
+126
View File
@@ -59949,6 +59949,12 @@ namespace Model
private string _HiddenHazardType;
private string _CheckItemSetId;
private string _CheckItemSetContent;
private System.Nullable<System.DateTime> _Rectification_Date;
private EntityRef<Base_Unit> _Base_Unit;
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
@@ -59995,6 +60001,12 @@ namespace Model
partial void OnSortIndexChanged();
partial void OnHiddenHazardTypeChanging(string value);
partial void OnHiddenHazardTypeChanged();
partial void OnCheckItemSetIdChanging(string value);
partial void OnCheckItemSetIdChanged();
partial void OnCheckItemSetContentChanging(string value);
partial void OnCheckItemSetContentChanged();
partial void OnRectification_DateChanging(System.Nullable<System.DateTime> value);
partial void OnRectification_DateChanged();
#endregion
public Check_CheckSpecialDetail()
@@ -60392,6 +60404,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckItemSetId", DbType="NVarChar(50)")]
public string CheckItemSetId
{
get
{
return this._CheckItemSetId;
}
set
{
if ((this._CheckItemSetId != value))
{
this.OnCheckItemSetIdChanging(value);
this.SendPropertyChanging();
this._CheckItemSetId = value;
this.SendPropertyChanged("CheckItemSetId");
this.OnCheckItemSetIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckItemSetContent", DbType="NVarChar(3000)")]
public string CheckItemSetContent
{
get
{
return this._CheckItemSetContent;
}
set
{
if ((this._CheckItemSetContent != value))
{
this.OnCheckItemSetContentChanging(value);
this.SendPropertyChanging();
this._CheckItemSetContent = value;
this.SendPropertyChanged("CheckItemSetContent");
this.OnCheckItemSetContentChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Rectification_Date", DbType="DateTime")]
public System.Nullable<System.DateTime> Rectification_Date
{
get
{
return this._Rectification_Date;
}
set
{
if ((this._Rectification_Date != value))
{
this.OnRectification_DateChanging(value);
this.SendPropertyChanging();
this._Rectification_Date = value;
this.SendPropertyChanged("Rectification_Date");
this.OnRectification_DateChanged();
}
}
}
[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
{
@@ -360876,6 +360948,12 @@ namespace Model
private string _HiddenHazardTypeName;
private string _CheckItemSetId;
private string _CheckItemSetContent;
private System.Nullable<System.DateTime> _Rectification_Date;
public View_CheckSpecialDetail()
{
}
@@ -361231,6 +361309,54 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckItemSetId", DbType="NVarChar(50)")]
public string CheckItemSetId
{
get
{
return this._CheckItemSetId;
}
set
{
if ((this._CheckItemSetId != value))
{
this._CheckItemSetId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckItemSetContent", DbType="NVarChar(3000)")]
public string CheckItemSetContent
{
get
{
return this._CheckItemSetContent;
}
set
{
if ((this._CheckItemSetContent != value))
{
this._CheckItemSetContent = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Rectification_Date", DbType="DateTime")]
public System.Nullable<System.DateTime> Rectification_Date
{
get
{
return this._Rectification_Date;
}
set
{
if ((this._Rectification_Date != value))
{
this._Rectification_Date = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Comprehensive_InspectionEquipment")]