java/nekurak.net-ejb/src/conf/Kategorie.hbm.xml
author František Kučera <franta-hg@frantovo.cz>
Sat Jan 08 20:18:27 2011 +0100 (2011-01-08)
changeset 154 bf21a4abea9b
child 163 5f0d5e1305b3
permissions -rw-r--r--
Kategorie podniků (hospoda, bar, kavárna atd.)
- datový model (tabulky kategorie a podnik_kategorie)
- entity a mapování
- zobrazování formou štítků ve výpisu podniků
franta-hg@154
     1
<?xml version="1.0"?>
franta-hg@154
     2
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
franta-hg@154
     3
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
franta-hg@154
     4
<hibernate-mapping>
franta-hg@154
     5
	<class name="cz.frantovo.nekurak.dto.Kategorie" table="kategorie">
franta-hg@154
     6
		<id name="id" column="id" type="integer">
franta-hg@154
     7
			<generator class="sequence">
franta-hg@154
     8
				<param name="sequence">kategorie_seq</param>
franta-hg@154
     9
			</generator>
franta-hg@154
    10
		</id>
franta-hg@154
    11
		<property name="nazev" column="nazev"/>
franta-hg@154
    12
		<property name="popis" column="popis"/>
franta-hg@154
    13
	</class>
franta-hg@154
    14
</hibernate-mapping>