38 lines
2.8 KiB
XML
38 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
|
<class name="BeWo.Data.Entities.InvoiceItem,BeWo.Data" table="InvoiceItem">
|
|
<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="ItemPeriodStart" type="DateTime" name="ItemPeriodStart" />
|
|
<property column="ItemPeriodEnd" type="DateTime" name="ItemPeriodEnd" />
|
|
<property column="ItemDescription" type="String" name="ItemDescription" />
|
|
<property column="UnitCount" type="Decimal" name="UnitCount" />
|
|
<property column="UnitDescription" type="String" name="UnitDescription" />
|
|
<property column="AmountPerUnit" type="Decimal" name="AmountPerUnit" />
|
|
<property column="AmountTotal" type="Decimal" name="AmountTotal" />
|
|
<property column="GrossAmountTotal" type="Decimal" name="GrossAmountTotal" />
|
|
<property column="RateFactor" type="Decimal" name="RateFactor" />
|
|
<property column="ReceivedAmount" type="Decimal" name="ReceivedAmount" />
|
|
<property column="MaxApprovedAmount" type="Decimal" name="MaxApprovedAmount" />
|
|
<property column="MaxApprovedUnitCount" type="Decimal" name="MaxApprovedUnitCount" />
|
|
<property column="ApprovedPerUnit" type="Decimal" name="ApprovedPerUnit" />
|
|
<property column="ApprovalUnit" type="BS.Shared.AccountingIntervalType, BS.Shared" name="ApprovalUnit" />
|
|
<property name="SupportConceptApprovalPeriodOid" column="SupportConceptApprovalPeriodOid" type="Int64" />
|
|
<property name="AccountingInterval" type="BS.Shared.AccountingIntervalType, BS.Shared"/>
|
|
<many-to-one name="ServiceRecord" column="ServiceRecordOid" class="BeWo.Data.Entities.ServiceRecord, BeWo.Data" cascade="none" fetch="join" not-found="ignore" />
|
|
<!--<bag name="CostRatePeriodList" table="InvoiceItem2CostRatePeriod" generic="true" cascade="none">
|
|
<key column="InvoiceItemOid" />
|
|
<many-to-many column="CostRatePeriodOid" class="BeWo.Data.Entities.CostRatePeriod,BeWo.Data" />
|
|
</bag>-->
|
|
</class>
|
|
</hibernate-mapping> |