Author: ktlili
Date: Tue Sep  4 16:12:34 2007
New Revision: 114

URL: https://svndev.jahia.net/websvn/listing.php?sc=3D1&rev=3D114&repname=
=3Dtimereporting
Log:
- timesheet new features

Added:
    trunk/war/src/conf/java/hibernate/EmployeePrice.hbm.xml
    trunk/war/src/conf/java/hibernate/EmployeePriceCurrency.hbm.xml

Added: trunk/war/src/conf/java/hibernate/EmployeePrice.hbm.xml
URL: https://svndev.jahia.net/websvn/filedetails.php?path=3D/trunk/war/src/=
conf/java/hibernate/EmployeePrice.hbm.xml&rev=3D114&repname=3Dtimereporting
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/war/src/conf/java/hibernate/EmployeePrice.hbm.xml (added)
+++ trunk/war/src/conf/java/hibernate/EmployeePrice.hbm.xml Tue Sep  4 16:1=
2:34 2007
@@ -0,0 +1,16 @@
+<?xml version=3D"1.0" encoding=3D"UTF-8"?>
+<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 2.0=
//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd";>
+
+<hibernate-mapping default-access=3D"field" auto-import=3D"false">
+    <class name=3D"org.jahia.webapps.timereporting.EmployeePrice" table=3D=
"EMPLOYEE_PRICE" lazy=3D"false">
+        <id name=3D"id" column=3D"EMPLOYEE_PRICE_ID" type=3D"java.lang.Int=
eger">
+            <generator class=3D"increment"/>
+        </id>
+        <property name=3D"contextId" type=3D"java.lang.Integer">
+            <column name=3D"CONTEXT_ID" not-null=3D"true"/>
+        </property>
+        <property name=3D"label" type=3D"java.lang.String">
+            <column name=3D"LABEL" not-null=3D"true"/>
+        </property>
+    </class>
+</hibernate-mapping>
\ No newline at end of file

Added: trunk/war/src/conf/java/hibernate/EmployeePriceCurrency.hbm.xml
URL: https://svndev.jahia.net/websvn/filedetails.php?path=3D/trunk/war/src/=
conf/java/hibernate/EmployeePriceCurrency.hbm.xml&rev=3D114&repname=3Dtimer=
eporting
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/war/src/conf/java/hibernate/EmployeePriceCurrency.hbm.xml (added)
+++ trunk/war/src/conf/java/hibernate/EmployeePriceCurrency.hbm.xml Tue Sep=
  4 16:12:34 2007
@@ -0,0 +1,23 @@
+<?xml version=3D"1.0" encoding=3D"UTF-8"?>
+<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 2.0=
//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd";>
+
+<hibernate-mapping default-access=3D"field" auto-import=3D"false">
+    <class name=3D"org.jahia.webapps.timereporting.EmployeePriceCurrency" =
table=3D"EMPLOYEE_PRICE_CURRENCY" lazy=3D"false">
+        <id name=3D"id" column=3D"EMPLOYEE_PRICE_CURRENCY_ID" type=3D"java=
.lang.Integer">
+            <generator class=3D"increment"/>
+        </id>
+        <property name=3D"contextId" type=3D"java.lang.Integer">
+            <column name=3D"CONTEXT_ID"/>
+        </property>
+        <property name=3D"employeePriceId" type=3D"java.lang.Integer">
+            <column name=3D"EMPLOYEE_PRICE_ID" not-null=3D"true"/>
+        </property>
+        <property name=3D"currenyId" type=3D"java.lang.Integer">
+            <column name=3D"CURRENCY_ID" not-null=3D"true"/>
+        </property>
+        <property name=3D"value" type=3D"java.lang.Integer">
+            <column name=3D"VALUE" not-null=3D"true"/>
+        </property>
+    </class>
+</hibernate-mapping>
+

_______________________________________________
cvs_list mailing list
[email protected]
http://lists.jahia.org/cgi-bin/mailman/listinfo/cvs_list

Reply via email to