Files
BeWoPlaner/Data/Mappings/Overtime.hbm.xml
2016-06-27 01:45:38 +02:00

21 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="BeWo.Data.Entities.Overtime, BeWo.Data" table="Overtime">
<id name="Oid" column="Oid" type="Int64" unsaved-value="null">
<generator class="identity" />
</id>
<version type="Int64" column="Version" name="Version" />
<property column="Tid" type="BS.Shared.TableID, BS.Shared" name="_Tid" access="field" />
<property column="Notice" type="String" name="Notice" length="1024" />
<property column="InsTs" type="DateTime" name="InsTs" />
<property column="InsUser" type="String" name="InsUser" length="256" />
<property column="UdpUser" type="String" name="UdpUser" length="256" />
<property column="IsActive" type="BS.Shared.ActivationTypeId, BS.Shared" name="IsActive" />
<property column="SystemEntryID" type="BS.Shared.SystemEntryID, BS.Shared" name="SystemEntryID" />
<property column="Datum" type="DateTime" name="Date" />
<property column="Betrag" type="Decimal" name="Betrag" />
<property column="EmployeeOid" type="Int64" name="EmployeeOid" update="false" insert="false" />
<many-to-one name="Auszahlungsart" column="AuszahlungsartOid" class="BeWo.Data.Entities.Auszahlungsart, BeWo.Data" cascade="none" />
</class>
</hibernate-mapping>