提交代码
This commit is contained in:
@@ -160060,6 +160060,8 @@ namespace Model
|
||||
|
||||
private string _LogMachineId;
|
||||
|
||||
private System.Nullable<bool> _IsInspectionBrigade;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
@@ -160672,6 +160674,8 @@ namespace Model
|
||||
partial void OnLogWorkPostIdChanged();
|
||||
partial void OnLogMachineIdChanging(string value);
|
||||
partial void OnLogMachineIdChanged();
|
||||
partial void OnIsInspectionBrigadeChanging(System.Nullable<bool> value);
|
||||
partial void OnIsInspectionBrigadeChanged();
|
||||
#endregion
|
||||
|
||||
public Person_Persons()
|
||||
@@ -162234,6 +162238,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsInspectionBrigade", DbType="Bit")]
|
||||
public System.Nullable<bool> IsInspectionBrigade
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsInspectionBrigade;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsInspectionBrigade != value))
|
||||
{
|
||||
this.OnIsInspectionBrigadeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsInspectionBrigade = value;
|
||||
this.SendPropertyChanged("IsInspectionBrigade");
|
||||
this.OnIsInspectionBrigadeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Person_Persons", Storage="_Accident_AccidentHandle", ThisKey="PersonId", OtherKey="CompileMan", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user