合并穿透
This commit is contained in:
+98
-2
@@ -10423,6 +10423,8 @@ namespace Model
|
||||
|
||||
private string _States;
|
||||
|
||||
private string _IsAttempt;
|
||||
|
||||
private EntityRef<Base_AccidentType> _Base_AccidentType;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -10469,6 +10471,8 @@ namespace Model
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnStatesChanging(string value);
|
||||
partial void OnStatesChanged();
|
||||
partial void OnIsAttemptChanging(string value);
|
||||
partial void OnIsAttemptChanged();
|
||||
#endregion
|
||||
|
||||
public Accident_AccidentPersonRecord()
|
||||
@@ -10821,6 +10825,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsAttempt", DbType="Char(1)")]
|
||||
public string IsAttempt
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsAttempt;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsAttempt != value))
|
||||
{
|
||||
this.OnIsAttemptChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsAttempt = value;
|
||||
this.SendPropertyChanged("IsAttempt");
|
||||
this.OnIsAttemptChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_Base_AccidentType", Storage="_Base_AccidentType", ThisKey="AccidentTypeId", OtherKey="AccidentTypeId", IsForeignKey=true)]
|
||||
public Base_AccidentType Base_AccidentType
|
||||
{
|
||||
@@ -24695,6 +24719,10 @@ namespace Model
|
||||
|
||||
private string _ProjectNum;
|
||||
|
||||
private System.Nullable<bool> _IsDelete;
|
||||
|
||||
private string _ProjectAttribute;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
@@ -25339,6 +25367,10 @@ namespace Model
|
||||
partial void OnMonitorIdChanged();
|
||||
partial void OnProjectNumChanging(string value);
|
||||
partial void OnProjectNumChanged();
|
||||
partial void OnIsDeleteChanging(System.Nullable<bool> value);
|
||||
partial void OnIsDeleteChanged();
|
||||
partial void OnProjectAttributeChanging(string value);
|
||||
partial void OnProjectAttributeChanged();
|
||||
#endregion
|
||||
|
||||
public Base_Project()
|
||||
@@ -26320,6 +26352,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="isDelete", Storage="_IsDelete", DbType="Bit")]
|
||||
public System.Nullable<bool> IsDelete
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsDelete;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsDelete != value))
|
||||
{
|
||||
this.OnIsDeleteChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsDelete = value;
|
||||
this.SendPropertyChanged("IsDelete");
|
||||
this.OnIsDeleteChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectAttribute", DbType="VarChar(50)")]
|
||||
public string ProjectAttribute
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectAttribute;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectAttribute != value))
|
||||
{
|
||||
this.OnProjectAttributeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectAttribute = value;
|
||||
this.SendPropertyChanged("ProjectAttribute");
|
||||
this.OnProjectAttributeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
@@ -148695,6 +148767,8 @@ namespace Model
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _HazardSelectedItemId;
|
||||
|
||||
private string _HazardId;
|
||||
|
||||
private string _HazardListTypeId;
|
||||
@@ -148739,6 +148813,8 @@ namespace Model
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnHazardSelectedItemIdChanging(string value);
|
||||
partial void OnHazardSelectedItemIdChanged();
|
||||
partial void OnHazardIdChanging(string value);
|
||||
partial void OnHazardIdChanged();
|
||||
partial void OnHazardListTypeIdChanging(string value);
|
||||
@@ -148786,7 +148862,27 @@ namespace Model
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardSelectedItemId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string HazardSelectedItemId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HazardSelectedItemId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HazardSelectedItemId != value))
|
||||
{
|
||||
this.OnHazardSelectedItemIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HazardSelectedItemId = value;
|
||||
this.SendPropertyChanged("HazardSelectedItemId");
|
||||
this.OnHazardSelectedItemIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardId", DbType="NVarChar(50)")]
|
||||
public string HazardId
|
||||
{
|
||||
get
|
||||
@@ -148826,7 +148922,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardListId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardListId", DbType="NVarChar(50)")]
|
||||
public string HazardListId
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user