提交代码

This commit is contained in:
高飞 2023-07-24 18:02:20 +08:00
parent 1e1b3994ba
commit 597a0cae3b
1 changed files with 42 additions and 96 deletions

View File

@ -44007,8 +44007,6 @@ namespace Model
private System.Nullable<System.DateTime> _UploadTime;
private string _DeleteTag;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -44049,8 +44047,6 @@ namespace Model
partial void OnAnalysisChanged();
partial void OnUploadTimeChanging(System.Nullable<System.DateTime> value);
partial void OnUploadTimeChanged();
partial void OnDeleteTagChanging(string value);
partial void OnDeleteTagChanged();
#endregion
public Bo_Sheng_Exam()
@ -44418,26 +44414,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeleteTag", DbType="NVarChar(50)")]
public string DeleteTag
{
get
{
return this._DeleteTag;
}
set
{
if ((this._DeleteTag != value))
{
this.OnDeleteTagChanging(value);
this.SendPropertyChanging();
this._DeleteTag = value;
this.SendPropertyChanged("DeleteTag");
this.OnDeleteTagChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@ -45855,8 +45831,6 @@ namespace Model
private string _TrainDescript;
private string _DeleteTag;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -45917,8 +45891,6 @@ namespace Model
partial void OnTrainContentChanged();
partial void OnTrainDescriptChanging(string value);
partial void OnTrainDescriptChanged();
partial void OnDeleteTagChanging(string value);
partial void OnDeleteTagChanged();
#endregion
public Bo_Sheng_PersonTrainRecord()
@ -46486,26 +46458,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeleteTag", DbType="NVarChar(50)")]
public string DeleteTag
{
get
{
return this._DeleteTag;
}
set
{
if ((this._DeleteTag != value))
{
this.OnDeleteTagChanging(value);
this.SendPropertyChanging();
this._DeleteTag = value;
this.SendPropertyChanged("DeleteTag");
this.OnDeleteTagChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@ -48233,8 +48185,6 @@ namespace Model
private string _OperUser;
private string _DeleteTag;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -48279,8 +48229,6 @@ namespace Model
partial void OnOperDateChanged();
partial void OnOperUserChanging(string value);
partial void OnOperUserChanged();
partial void OnDeleteTagChanging(string value);
partial void OnDeleteTagChanged();
#endregion
public Bo_Sheng_Unit()
@ -48688,26 +48636,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeleteTag", DbType="NVarChar(50)")]
public string DeleteTag
{
get
{
return this._DeleteTag;
}
set
{
if ((this._DeleteTag != value))
{
this.OnDeleteTagChanging(value);
this.SendPropertyChanging();
this._DeleteTag = value;
this.SendPropertyChanged("DeleteTag");
this.OnDeleteTagChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@ -89651,12 +89579,12 @@ namespace Model
private string _EquipmentOrMatail;
private string _Unit;
private string _Status;
private string _AuditMan;
private string _Unit;
private EntityRef<Base_CNProfessional> _Base_CNProfessional;
private EntityRef<Base_Project> _Base_Project;
@ -89707,12 +89635,12 @@ namespace Model
partial void OnAttributeChanged();
partial void OnEquipmentOrMatailChanging(string value);
partial void OnEquipmentOrMatailChanged();
partial void OnUnitChanging(string value);
partial void OnUnitChanged();
partial void OnStatusChanging(string value);
partial void OnStatusChanged();
partial void OnAuditManChanging(string value);
partial void OnAuditManChanged();
partial void OnUnitChanging(string value);
partial void OnUnitChanged();
#endregion
public Comprehensive_InspectionEquipment()
@ -90135,26 +90063,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Unit", DbType="NVarChar(50)")]
public string Unit
{
get
{
return this._Unit;
}
set
{
if ((this._Unit != value))
{
this.OnUnitChanging(value);
this.SendPropertyChanging();
this._Unit = value;
this.SendPropertyChanged("Unit");
this.OnUnitChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="NVarChar(2)")]
public string Status
{
@ -90195,6 +90103,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Unit", DbType="NVarChar(50)")]
public string Unit
{
get
{
return this._Unit;
}
set
{
if ((this._Unit != value))
{
this.OnUnitChanging(value);
this.SendPropertyChanging();
this._Unit = value;
this.SendPropertyChanged("Unit");
this.OnUnitChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Comprehensive_InspectionEquipment_Base_CNProfessional", Storage="_Base_CNProfessional", ThisKey="CNProfessionalId", OtherKey="CNProfessionalId", IsForeignKey=true)]
public Base_CNProfessional Base_CNProfessional
{
@ -365271,6 +365199,8 @@ namespace Model
private string _Requirements;
private System.Nullable<int> _Type;
public View_Hazard_HazardRegister()
{
}
@ -366122,6 +366052,22 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="Int")]
public System.Nullable<int> Type
{
get
{
return this._Type;
}
set
{
if ((this._Type != value))
{
this._Type = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_Batch_PointBatch")]