20230724与博晟接口新增是否删除标识、列表显示已删除标识不显示
This commit is contained in:
+96
-24
@@ -44007,6 +44007,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _UploadTime;
|
||||
|
||||
private string _DeleteTag;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -44047,6 +44049,8 @@ 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()
|
||||
@@ -44414,6 +44418,26 @@ 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;
|
||||
@@ -45831,6 +45855,8 @@ namespace Model
|
||||
|
||||
private string _TrainDescript;
|
||||
|
||||
private string _DeleteTag;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -45891,6 +45917,8 @@ 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()
|
||||
@@ -46458,6 +46486,26 @@ 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;
|
||||
@@ -48185,6 +48233,8 @@ namespace Model
|
||||
|
||||
private string _OperUser;
|
||||
|
||||
private string _DeleteTag;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -48229,6 +48279,8 @@ 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()
|
||||
@@ -48636,6 +48688,26 @@ 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;
|
||||
@@ -89579,12 +89651,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;
|
||||
@@ -89635,12 +89707,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()
|
||||
@@ -90063,6 +90135,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.ColumnAttribute(Storage="_Status", DbType="NVarChar(2)")]
|
||||
public string Status
|
||||
{
|
||||
@@ -90103,26 +90195,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.AssociationAttribute(Name="FK_Comprehensive_InspectionEquipment_Base_CNProfessional", Storage="_Base_CNProfessional", ThisKey="CNProfessionalId", OtherKey="CNProfessionalId", IsForeignKey=true)]
|
||||
public Base_CNProfessional Base_CNProfessional
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user