You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
509 B
13 lines
509 B
5 years ago
|
<?xml version='1.0' encoding='utf-8'?>
|
||
|
<!DOCTYPE hibernate-mapping PUBLIC
|
||
|
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
|
||
|
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
|
||
|
<hibernate-mapping>
|
||
|
|
||
|
<class name="table.OrderEntity" table="order" schema="xianshu">
|
||
|
<id name="orderId" column="orderId"/>
|
||
|
<property name="buyerId" column="BuyerID"/>
|
||
|
<property name="sellerId" column="sellerID"/>
|
||
|
<property name="bookId" column="bookID"/>
|
||
|
</class>
|
||
|
</hibernate-mapping>
|