645 lines
10 KiB
C#
645 lines
10 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class EmployeeHistory : BeWoEntityBase
|
|
{
|
|
private StatementType _ChangeType;
|
|
|
|
private long? _Employee_Oid;
|
|
private long _Employee_PersonOid;
|
|
private long _Employee_ApplicationUserOid;
|
|
private TableID _Employee_Tid;
|
|
private string _Employee_PersonnelNumber;
|
|
private string _Employee_TaxNumber;
|
|
private string _Employee_TaxClass;
|
|
private string _Employee_ChildCount;
|
|
private string _Employee_HealthInsurance;
|
|
private string _Employee_InsuranceNumber;
|
|
private decimal _Employee_HourlyRate;
|
|
private DateTime _Employee_EntryDate;
|
|
private int _Employee_CancellationPeriod;
|
|
private int _Employee_ProbationPeriod;
|
|
private int _Employee_Sequence;
|
|
private ActivationTypeId _Employee_IsActive;
|
|
private string _Employee_Notice;
|
|
private DateTime? _Employee_InsTs;
|
|
private string _Employee_InsUser;
|
|
private long? _Employee_Version;
|
|
private string _Employee_UdpUser;
|
|
private SystemEntryID? _Employee_SystemEntryID;
|
|
private decimal _Employee_weeklyfls;
|
|
private decimal _Employee_weeklytotalhours;
|
|
private decimal _Employee_leavedays;
|
|
private bool? _Employee_IsQualified;
|
|
private string _Employee_Text1;
|
|
private string _Employee_Text2;
|
|
private string _Employee_Text3;
|
|
private string _Employee_Text4;
|
|
private string _Employee_Text5;
|
|
private string _Employee_Notice2;
|
|
private string _Employee_EmployeeColor;
|
|
private bool _Employee_Pflege;
|
|
private bool _Employee_Toilettengang;
|
|
private bool _Employee_Aggressiv;
|
|
private string _Employee_Schutzstufe;
|
|
private bool _Employee_Hygienebelehrung;
|
|
|
|
public EmployeeHistory()
|
|
{
|
|
_Tid = TableID.EmployeeHistory;
|
|
}
|
|
|
|
public virtual StatementType ChangeType
|
|
{
|
|
get
|
|
{
|
|
return _ChangeType;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_ChangeType, value))
|
|
{
|
|
_ChangeType = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual long? Employee_Oid
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Oid;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Oid, value))
|
|
{
|
|
_Employee_Oid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual long Employee_PersonOid
|
|
{
|
|
get
|
|
{
|
|
return _Employee_PersonOid;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_PersonOid, value))
|
|
{
|
|
_Employee_PersonOid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual long Employee_ApplicationUserOid
|
|
{
|
|
get
|
|
{
|
|
return _Employee_ApplicationUserOid;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_ApplicationUserOid, value))
|
|
{
|
|
_Employee_ApplicationUserOid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual TableID Employee_Tid
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Tid;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Tid, value))
|
|
{
|
|
_Employee_Tid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_PersonnelNumber
|
|
{
|
|
get
|
|
{
|
|
return _Employee_PersonnelNumber;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_PersonnelNumber, value))
|
|
{
|
|
_Employee_PersonnelNumber = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_TaxNumber
|
|
{
|
|
get
|
|
{
|
|
return _Employee_TaxNumber;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_TaxNumber, value))
|
|
{
|
|
_Employee_TaxNumber = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_TaxClass
|
|
{
|
|
get
|
|
{
|
|
return _Employee_TaxClass;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_TaxClass, value))
|
|
{
|
|
_Employee_TaxClass = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_ChildCount
|
|
{
|
|
get
|
|
{
|
|
return _Employee_ChildCount;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_ChildCount, value))
|
|
{
|
|
_Employee_ChildCount = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_HealthInsurance
|
|
{
|
|
get
|
|
{
|
|
return _Employee_HealthInsurance;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_HealthInsurance, value))
|
|
{
|
|
_Employee_HealthInsurance = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_InsuranceNumber
|
|
{
|
|
get
|
|
{
|
|
return _Employee_InsuranceNumber;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_InsuranceNumber, value))
|
|
{
|
|
_Employee_InsuranceNumber = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal Employee_HourlyRate
|
|
{
|
|
get
|
|
{
|
|
return _Employee_HourlyRate;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_HourlyRate, value))
|
|
{
|
|
_Employee_HourlyRate = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual DateTime Employee_EntryDate
|
|
{
|
|
get
|
|
{
|
|
return _Employee_EntryDate;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_EntryDate, value))
|
|
{
|
|
_Employee_EntryDate = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual int Employee_CancellationPeriod
|
|
{
|
|
get
|
|
{
|
|
return _Employee_CancellationPeriod;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_CancellationPeriod, value))
|
|
{
|
|
_Employee_CancellationPeriod = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual int Employee_ProbationPeriod
|
|
{
|
|
get
|
|
{
|
|
return _Employee_ProbationPeriod;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_ProbationPeriod, value))
|
|
{
|
|
_Employee_ProbationPeriod = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual int Employee_Sequence
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Sequence;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Sequence, value))
|
|
{
|
|
_Employee_Sequence = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual ActivationTypeId Employee_IsActive
|
|
{
|
|
get
|
|
{
|
|
return _Employee_IsActive;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_IsActive, value))
|
|
{
|
|
_Employee_IsActive = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Notice
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Notice;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Notice, value))
|
|
{
|
|
_Employee_Notice = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual DateTime? Employee_InsTs
|
|
{
|
|
get
|
|
{
|
|
return _Employee_InsTs;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_InsTs, value))
|
|
{
|
|
_Employee_InsTs = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_InsUser
|
|
{
|
|
get
|
|
{
|
|
return _Employee_InsUser;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_InsUser, value))
|
|
{
|
|
_Employee_InsUser = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual long? Employee_Version
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Version;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Version, value))
|
|
{
|
|
_Employee_Version = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_UdpUser
|
|
{
|
|
get
|
|
{
|
|
return _Employee_UdpUser;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_UdpUser, value))
|
|
{
|
|
_Employee_UdpUser = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual SystemEntryID? Employee_SystemEntryID
|
|
{
|
|
get
|
|
{
|
|
return _Employee_SystemEntryID;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_SystemEntryID, value))
|
|
{
|
|
_Employee_SystemEntryID = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal Employee_weeklyfls
|
|
{
|
|
get
|
|
{
|
|
return _Employee_weeklyfls;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_weeklyfls, value))
|
|
{
|
|
_Employee_weeklyfls = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal Employee_weeklytotalhours
|
|
{
|
|
get
|
|
{
|
|
return _Employee_weeklytotalhours;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_weeklytotalhours, value))
|
|
{
|
|
_Employee_weeklytotalhours = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal Employee_leavedays
|
|
{
|
|
get
|
|
{
|
|
return _Employee_leavedays;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_leavedays, value))
|
|
{
|
|
_Employee_leavedays = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool? Employee_IsQualified
|
|
{
|
|
get
|
|
{
|
|
return _Employee_IsQualified;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_IsQualified, value))
|
|
{
|
|
_Employee_IsQualified = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Text1
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Text1;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Text1, value))
|
|
{
|
|
_Employee_Text1 = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Text2
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Text2;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Text2, value))
|
|
{
|
|
_Employee_Text2 = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Text3
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Text3;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Text3, value))
|
|
{
|
|
_Employee_Text3 = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Text4
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Text4;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Text4, value))
|
|
{
|
|
_Employee_Text4 = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Text5
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Text5;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Text5, value))
|
|
{
|
|
_Employee_Text5 = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Notice2
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Notice2;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Notice2, value))
|
|
{
|
|
_Employee_Notice2 = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_EmployeeColor
|
|
{
|
|
get
|
|
{
|
|
return _Employee_EmployeeColor;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_EmployeeColor, value))
|
|
{
|
|
_Employee_EmployeeColor = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool Employee_Pflege
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Pflege;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Pflege, value))
|
|
{
|
|
_Employee_Pflege = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool Employee_Toilettengang
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Toilettengang;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Toilettengang, value))
|
|
{
|
|
_Employee_Toilettengang = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool Employee_Aggressiv
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Aggressiv;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Aggressiv, value))
|
|
{
|
|
_Employee_Aggressiv = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Employee_Schutzstufe
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Schutzstufe;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Schutzstufe, value))
|
|
{
|
|
_Employee_Schutzstufe = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool Employee_Hygienebelehrung
|
|
{
|
|
get
|
|
{
|
|
return _Employee_Hygienebelehrung;
|
|
}
|
|
set
|
|
{
|
|
if (AreDifferent(_Employee_Hygienebelehrung, value))
|
|
{
|
|
_Employee_Hygienebelehrung = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|