-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.hbm.xml
More file actions
39 lines (38 loc) · 1.18 KB
/
user.hbm.xml
File metadata and controls
39 lines (38 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.food.Foods" table="foods">
<id name="sno" type="int" column="sno">
<generator class="increment" />
</id>
<property name="productID">
<column name="productID" />
</property>
<property name="userID">
<column name="userID" />
</property>
<property name="profileName">
<column name="profileName" />
</property>
<property name="helpfulness">
<column name="helpfulness" />
</property>
<property name="reviewscore">
<column name="reviewscore" />
</property>
<property name="time">
<column name="time" />
</property>
<property name="summary">
<column name="summary" />
</property>
<property name="text">
<column name="text" />
</property>
<property name="score">
<column name="score" />
</property>
</class>
</hibernate-mapping>