source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/hibernate/domaine/Fournit.hbm.xml

Last change on this file was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 1.2 KB
RevLine 
[68]1<?xml version="1.0"?>
2<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
3"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
4<!-- Generated 1 Juin 2007 15:03:29 by Hibernate Tools 3.2.0.beta7 -->
5<hibernate-mapping>
6    <class name="org.medias.eccad.persistance.hibernate.domaine.Fournit" table="fournit" schema="public">
7        <composite-id name="id" class="org.medias.eccad.persistance.hibernate.domaine.FournitId">
8            <key-property name="idProduit" type="int">
9                <column name="id_produit" />
10            </key-property>
11            <key-property name="idOrganisme" type="int">
12                <column name="id_organisme" />
13            </key-property>
14        </composite-id>
15        <many-to-one name="organisme" class="org.medias.eccad.persistance.hibernate.domaine.Organisme" update="false" insert="false" fetch="select">
16            <column name="id_organisme" not-null="true" />
17        </many-to-one>
18        <many-to-one name="produit" class="org.medias.eccad.persistance.hibernate.domaine.Produit" update="false" insert="false" fetch="select">
19            <column name="id_produit" not-null="true" />
20        </many-to-one>
21    </class>
22</hibernate-mapping>
Note: See TracBrowser for help on using the repository browser.