2017-11-17 22:24:00 +01:00
|
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
|
|
|
|
|
|
|
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
|
|
|
|
|
<class name="BeWo.Data.Entities.Textbaustein,BeWo.Data" table="Textbaustein">
|
|
|
|
|
|
<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="InsTs" type="DateTime" name="InsTs" />
|
|
|
|
|
|
<property column="InsUser" type="String" name="InsUser" 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="UdpUser" type="String" name="UdpUser" length="256" />
|
|
|
|
|
|
<property column="Notice" type="String" name="Notice" length="1024" />
|
|
|
|
|
|
<property column="Text" type="String" name="Text" length="1024" />
|
|
|
|
|
|
<property column="Position" name="Position" type="Int32" />
|
|
|
|
|
|
<property column="Name" type="String" name="Name" length="1024" />
|
|
|
|
|
|
<property column="IsOnlyForEmployee" type="Boolean" name="IsOnlyForEmployee" />
|
2018-01-05 19:13:18 -04:00
|
|
|
|
<property column="IsParent" type="Boolean" name="IsParent" />
|
|
|
|
|
|
<property column="IsExpanded" type="Boolean" name="IsExpanded" />
|
2017-11-17 22:24:00 +01:00
|
|
|
|
|
2018-01-05 19:13:18 -04:00
|
|
|
|
<many-to-one name="ServiceCategory" column="ServiceCategoryOid" class="BeWo.Data.Entities.ServiceCategory, BeWo.Data" cascade="none" fetch="join" />
|
|
|
|
|
|
<many-to-one name="Employee" column="EmployeeOid" class="BeWo.Data.Entities.Employee, BeWo.Data" cascade="none" fetch="join" />
|
|
|
|
|
|
<many-to-one name="Parent" column="ParentOid" class="BeWo.Data.Entities.TextModule, BeWo.Data" cascade="none" fetch="join" />
|
2017-11-17 22:24:00 +01:00
|
|
|
|
</class>
|
|
|
|
|
|
</hibernate-mapping>
|