- Löschrechtprüfung an FaC angepasst. - Ziele und Maßnahmen sind alphabetisch absteigend sortiert wie im FaC. - Reports bei Klienten verbessert. - Bargeldtransaktionshistorie eingebaut.
196 lines
4.8 KiB
C#
196 lines
4.8 KiB
C#
using System;
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Bargeldtransaktionshistory : BeWoEntityBase
|
|
{
|
|
public Bargeldtransaktionshistory()
|
|
{
|
|
_Tid = TableID.Bargeldtransaktionshistory;
|
|
}
|
|
|
|
private long? _BargeldtransaktionOid;
|
|
private Zahlungstyp _Zahlungstyp;
|
|
private DateTime? _Zahlungsdatum;
|
|
private decimal? _Transaktionskassenbestand;
|
|
private decimal? _Betrag;
|
|
private string _Belegnummer;
|
|
private SignatureStateType _SignatureState;
|
|
private long? _SignatureOid;
|
|
private StatementType _ChangeType;
|
|
private DateTime? _BargeldtransaktionInsTs;
|
|
private long? _BargeldtransaktionVersion;
|
|
private string _BargeldtransaktionInsUser;
|
|
private string _BargeldtransaktionUdpUser;
|
|
|
|
public virtual long? BargeldtransaktionOid
|
|
{
|
|
get => _BargeldtransaktionOid;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_BargeldtransaktionOid, value))
|
|
{
|
|
_BargeldtransaktionOid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual Zahlungstyp Zahlungstyp
|
|
{
|
|
get => _Zahlungstyp;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_Zahlungstyp, value))
|
|
{
|
|
_Zahlungstyp = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual DateTime? Zahlungsdatum
|
|
{
|
|
get => _Zahlungsdatum;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_Zahlungsdatum, value))
|
|
{
|
|
_Zahlungsdatum = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal? Transaktionskassenbestand
|
|
{
|
|
get => _Transaktionskassenbestand;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_Transaktionskassenbestand, value))
|
|
{
|
|
_Transaktionskassenbestand = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual decimal? Betrag
|
|
{
|
|
get => _Betrag;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_Betrag, value))
|
|
{
|
|
_Betrag = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string Belegnummer
|
|
{
|
|
get => _Belegnummer;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_Belegnummer, value))
|
|
{
|
|
_Belegnummer = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual SignatureStateType SignatureState
|
|
{
|
|
get => _SignatureState;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_SignatureState, value))
|
|
{
|
|
_SignatureState = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual long? SignatureOid
|
|
{
|
|
get => _SignatureOid;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_SignatureOid, value))
|
|
{
|
|
_SignatureOid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual StatementType ChangeType
|
|
{
|
|
get => _ChangeType;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_ChangeType, value))
|
|
{
|
|
_ChangeType = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual DateTime? BargeldtransaktionInsTs
|
|
{
|
|
get => _BargeldtransaktionInsTs;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_BargeldtransaktionInsTs, value))
|
|
{
|
|
_BargeldtransaktionInsTs = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual long? BargeldtransaktionVersion
|
|
{
|
|
get => _BargeldtransaktionVersion;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_BargeldtransaktionVersion, value))
|
|
{
|
|
_BargeldtransaktionVersion = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string BargeldtransaktionInsUser
|
|
{
|
|
get => _BargeldtransaktionInsUser;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_BargeldtransaktionInsUser, value))
|
|
{
|
|
_BargeldtransaktionInsUser = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string BargeldtransaktionUdpUser
|
|
{
|
|
get => _BargeldtransaktionUdpUser;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_BargeldtransaktionUdpUser, value))
|
|
{
|
|
_BargeldtransaktionUdpUser = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |