28 lines
646 B
C#
28 lines
646 B
C#
using System;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.Core;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class OvertimeHistory : BeWoEntityBase
|
|
{
|
|
|
|
public OvertimeHistory()
|
|
{
|
|
this._Tid = TableID.OvertimeHistory;
|
|
}
|
|
|
|
public virtual StatementType ChangeType { get; set; }
|
|
|
|
public virtual long OvertimeOid { get; set; }
|
|
|
|
public virtual long? OvertimeEmployeeOid { get; set; }
|
|
|
|
public virtual DateTime? OvertimeDatum { get; set; }
|
|
|
|
public virtual decimal? OvertimeBetrag { get; set; }
|
|
|
|
public virtual long? OvertimeAuszahlungsartOid { get; set; }
|
|
}
|
|
} |