提交代码
This commit is contained in:
@@ -7719,6 +7719,10 @@ namespace Model
|
|||||||
|
|
||||||
private string _IsAttempt;
|
private string _IsAttempt;
|
||||||
|
|
||||||
|
private string _WorkPackageId;
|
||||||
|
|
||||||
|
private string _WorkPackageName;
|
||||||
|
|
||||||
private EntityRef<Base_AccidentType> _Base_AccidentType;
|
private EntityRef<Base_AccidentType> _Base_AccidentType;
|
||||||
|
|
||||||
private EntityRef<Base_Project> _Base_Project;
|
private EntityRef<Base_Project> _Base_Project;
|
||||||
@@ -7767,6 +7771,10 @@ namespace Model
|
|||||||
partial void OnStatesChanged();
|
partial void OnStatesChanged();
|
||||||
partial void OnIsAttemptChanging(string value);
|
partial void OnIsAttemptChanging(string value);
|
||||||
partial void OnIsAttemptChanged();
|
partial void OnIsAttemptChanged();
|
||||||
|
partial void OnWorkPackageIdChanging(string value);
|
||||||
|
partial void OnWorkPackageIdChanged();
|
||||||
|
partial void OnWorkPackageNameChanging(string value);
|
||||||
|
partial void OnWorkPackageNameChanged();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public Accident_AccidentPersonRecord()
|
public Accident_AccidentPersonRecord()
|
||||||
@@ -8139,6 +8147,46 @@ namespace Model
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageId", DbType="NVarChar(2000)")]
|
||||||
|
public string WorkPackageId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._WorkPackageId;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._WorkPackageId != value))
|
||||||
|
{
|
||||||
|
this.OnWorkPackageIdChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._WorkPackageId = value;
|
||||||
|
this.SendPropertyChanged("WorkPackageId");
|
||||||
|
this.OnWorkPackageIdChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageName", DbType="NVarChar(2000)")]
|
||||||
|
public string WorkPackageName
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._WorkPackageName;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._WorkPackageName != value))
|
||||||
|
{
|
||||||
|
this.OnWorkPackageNameChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._WorkPackageName = value;
|
||||||
|
this.SendPropertyChanged("WorkPackageName");
|
||||||
|
this.OnWorkPackageNameChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_Base_AccidentType", Storage="_Base_AccidentType", ThisKey="AccidentTypeId", OtherKey="AccidentTypeId", IsForeignKey=true)]
|
[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
|
public Base_AccidentType Base_AccidentType
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user