20240227本部检查优化

This commit is contained in:
2024-02-27 13:31:39 +08:00
parent 2449c9fa32
commit c6559b1f30
17 changed files with 605 additions and 176 deletions
+24
View File
@@ -201635,6 +201635,8 @@ namespace Model
private string _SexName;
private string _DepartId;
private EntityRef<Base_Unit> _Base_Unit;
private EntityRef<Person_Persons> _Person_Persons;
@@ -201667,6 +201669,8 @@ namespace Model
partial void OnUnitIdChanged();
partial void OnSexNameChanging(string value);
partial void OnSexNameChanged();
partial void OnDepartIdChanging(string value);
partial void OnDepartIdChanged();
#endregion
public ProjectSupervision_CheckTeam()
@@ -201909,6 +201913,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartId", DbType="NVarChar(50)")]
public string DepartId
{
get
{
return this._DepartId;
}
set
{
if ((this._DepartId != value))
{
this.OnDepartIdChanging(value);
this.SendPropertyChanging();
this._DepartId = value;
this.SendPropertyChanged("DepartId");
this.OnDepartIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_ProjectSupervision_CheckTeam_Base_Unit", Storage="_Base_Unit", ThisKey="UnitId", OtherKey="UnitId", IsForeignKey=true)]
public Base_Unit Base_Unit
{