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

29 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="BeWo.Data.Entities.Customer2PersonHistory, BeWo.Data" table="Customer2PersonHistory">
<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="ChangeType" type="BS.Shared.StatementType, BS.Shared" name="ChangeType" />
<property column="Customer2PersonOid" type="Int64" name="Customer2PersonOid" />
<property column="Customer2PersonInsTs" type="DateTime" name="Customer2PersonInsTs" />
<property column="Customer2PersonInsUser" type="String" name="Customer2PersonInsUser" length="256" />
<property column="Customer2PersonUdpUser" type="String" name="Customer2PersonUdpUser" length="256" />
<property column="Customer2PersonVersion" type="Int64" name="Customer2PersonVersion" />
<property column="CustomerOid" type="Int64" name="CustomerOid" />
<many-to-one name="Person" column="PersonOid" class="BeWo.Data.Entities.Person,BeWo.Data" cascade="none" />
</class>
</hibernate-mapping>