项目人员信息档案新增、导入补充:机构划分、组织单元、人员分类、员工子组、备注信息

This commit is contained in:
2025-08-08 17:54:10 +08:00
parent fd849d42e1
commit 8e4dec9037
212 changed files with 2489 additions and 617 deletions
+264
View File
@@ -343753,6 +343753,16 @@ namespace Model
private string _InstitutionalDivisionId;
private string _Remarks;
private string _EmployeeCategoryName;
private string _EmployeeSubgroupName;
private string _InstitutionalDivisionName;
private string _DepartName;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
private EntitySet<Accident_AccidentReportOtherItem> _Accident_AccidentReportOtherItem;
@@ -343951,6 +343961,16 @@ namespace Model
partial void OnEmployeeSubgroupIdChanged();
partial void OnInstitutionalDivisionIdChanging(string value);
partial void OnInstitutionalDivisionIdChanged();
partial void OnRemarksChanging(string value);
partial void OnRemarksChanged();
partial void OnEmployeeCategoryNameChanging(string value);
partial void OnEmployeeCategoryNameChanged();
partial void OnEmployeeSubgroupNameChanging(string value);
partial void OnEmployeeSubgroupNameChanged();
partial void OnInstitutionalDivisionNameChanging(string value);
partial void OnInstitutionalDivisionNameChanged();
partial void OnDepartNameChanging(string value);
partial void OnDepartNameChanged();
#endregion
public SitePerson_Person()
@@ -345379,6 +345399,106 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(500)")]
public string Remarks
{
get
{
return this._Remarks;
}
set
{
if ((this._Remarks != value))
{
this.OnRemarksChanging(value);
this.SendPropertyChanging();
this._Remarks = value;
this.SendPropertyChanged("Remarks");
this.OnRemarksChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EmployeeCategoryName", DbType="VarChar(50)")]
public string EmployeeCategoryName
{
get
{
return this._EmployeeCategoryName;
}
set
{
if ((this._EmployeeCategoryName != value))
{
this.OnEmployeeCategoryNameChanging(value);
this.SendPropertyChanging();
this._EmployeeCategoryName = value;
this.SendPropertyChanged("EmployeeCategoryName");
this.OnEmployeeCategoryNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EmployeeSubgroupName", DbType="VarChar(50)")]
public string EmployeeSubgroupName
{
get
{
return this._EmployeeSubgroupName;
}
set
{
if ((this._EmployeeSubgroupName != value))
{
this.OnEmployeeSubgroupNameChanging(value);
this.SendPropertyChanging();
this._EmployeeSubgroupName = value;
this.SendPropertyChanged("EmployeeSubgroupName");
this.OnEmployeeSubgroupNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstitutionalDivisionName", DbType="VarChar(50)")]
public string InstitutionalDivisionName
{
get
{
return this._InstitutionalDivisionName;
}
set
{
if ((this._InstitutionalDivisionName != value))
{
this.OnInstitutionalDivisionNameChanging(value);
this.SendPropertyChanging();
this._InstitutionalDivisionName = value;
this.SendPropertyChanged("InstitutionalDivisionName");
this.OnInstitutionalDivisionNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartName", DbType="VarChar(50)")]
public string DepartName
{
get
{
return this._DepartName;
}
set
{
if ((this._DepartName != value))
{
this.OnDepartNameChanging(value);
this.SendPropertyChanging();
this._DepartName = value;
this.SendPropertyChanged("DepartName");
this.OnDepartNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_SitePerson_Person", Storage="_Accident_AccidentPersonRecord", ThisKey="PersonId", OtherKey="PersonId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
{
@@ -456208,10 +456328,20 @@ namespace Model
private string _PostTitleId;
private string _InstitutionalDivisionId;
private string _EmployeeCategoryId;
private string _EmployeeSubgroupId;
private string _DepartId;
private string _PhotoUrl;
private bool _IsUsed;
private string _Remarks;
private string _IsUsedName;
private bool _IsCardUsed;
@@ -456242,6 +456372,12 @@ namespace Model
private string _DepartName;
private string _EmployeeCategoryName;
private string _EmployeeSubgroupName;
private string _InstitutionalDivisionName;
private string _PostType;
private System.Nullable<bool> _IsHsse;
@@ -456630,6 +456766,70 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstitutionalDivisionId", DbType="VarChar(50)")]
public string InstitutionalDivisionId
{
get
{
return this._InstitutionalDivisionId;
}
set
{
if ((this._InstitutionalDivisionId != value))
{
this._InstitutionalDivisionId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EmployeeCategoryId", DbType="VarChar(50)")]
public string EmployeeCategoryId
{
get
{
return this._EmployeeCategoryId;
}
set
{
if ((this._EmployeeCategoryId != value))
{
this._EmployeeCategoryId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EmployeeSubgroupId", DbType="VarChar(50)")]
public string EmployeeSubgroupId
{
get
{
return this._EmployeeSubgroupId;
}
set
{
if ((this._EmployeeSubgroupId != value))
{
this._EmployeeSubgroupId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartId", DbType="NVarChar(50)")]
public string DepartId
{
get
{
return this._DepartId;
}
set
{
if ((this._DepartId != value))
{
this._DepartId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PhotoUrl", DbType="NVarChar(2000)")]
public string PhotoUrl
{
@@ -456662,6 +456862,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(500)")]
public string Remarks
{
get
{
return this._Remarks;
}
set
{
if ((this._Remarks != value))
{
this._Remarks = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUsedName", DbType="VarChar(2) NOT NULL", CanBeNull=false)]
public string IsUsedName
{
@@ -456902,6 +457118,54 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EmployeeCategoryName", DbType="NVarChar(100)")]
public string EmployeeCategoryName
{
get
{
return this._EmployeeCategoryName;
}
set
{
if ((this._EmployeeCategoryName != value))
{
this._EmployeeCategoryName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EmployeeSubgroupName", DbType="NVarChar(100)")]
public string EmployeeSubgroupName
{
get
{
return this._EmployeeSubgroupName;
}
set
{
if ((this._EmployeeSubgroupName != value))
{
this._EmployeeSubgroupName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstitutionalDivisionName", DbType="NVarChar(100)")]
public string InstitutionalDivisionName
{
get
{
return this._InstitutionalDivisionName;
}
set
{
if ((this._InstitutionalDivisionName != value))
{
this._InstitutionalDivisionName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PostType", DbType="NChar(1)")]
public string PostType
{