Files
BeWoPlaner/Data/Mappings/Timesheet2Mail.hbm.xml

22 lines
1.2 KiB
XML
Raw Permalink Normal View History

2019-07-12 17:36:37 +02:00
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="BeWo.Data.Entities.Timesheet2Mail, BeWo.Data" table="Timesheet2Mail">
<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="SystemEntryID" type="BS.Shared.SystemEntryID, BS.Shared" name="SystemEntryID" />
<property column="InsTs" type="DateTime" name="InsTs" />
<property column="InsUser" type="String" name="InsUser" length="256" />
<property column="UpdTs" type="DateTime" name="UpdTs" />
<property column="UdpUser" type="String" name="UdpUser" length="256" />
<property column="IsActive" type="BS.Shared.ActivationTypeId, BS.Shared" name="IsActive" />
<property name="EmployeeOid" />
<property name="CustomerOid" />
<property name="TimesheetOid" />
<many-to-one name="Mail" column="MailOid" class="BeWo.Data.Entities.Mail,BeWo.Data" cascade="none" />
</class>
</hibernate-mapping>