1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
JEE_Project/build/web/WEB-INF/classes/DAO/Customer.hbm.xml
2022-06-27 21:14:35 +02:00

45 lines
1.8 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<!-- Generated 8 avr. 2022 15:30:29 by Hibernate Tools 4.3.1 -->
<hibernate-mapping>
<class name="DAO.Customer" table="CUSTOMER" schema="APP">
<id name="customerId" type="int">
<column name="CUSTOMER_ID" />
<generator class="assigned"></generator>
</id>
<property name="discountCode" type="char">
<column name="DISCOUNT_CODE" length="1" not-null="true" />
</property>
<property name="zip" type="string">
<column name="ZIP" length="10" not-null="true" />
</property>
<property name="name" type="string">
<column name="NAME" length="30" />
</property>
<property name="addressline1" type="string">
<column name="ADDRESSLINE1" length="30" />
</property>
<property name="addressline2" type="string">
<column name="ADDRESSLINE2" length="30" />
</property>
<property name="city" type="string">
<column name="CITY" length="25" />
</property>
<property name="state" type="string">
<column name="STATE" length="2" />
</property>
<property name="phone" type="string">
<column name="PHONE" length="12" />
</property>
<property name="fax" type="string">
<column name="FAX" length="12" />
</property>
<property name="email" type="string">
<column name="EMAIL" length="40" />
</property>
<property name="creditLimit" type="java.lang.Integer">
<column name="CREDIT_LIMIT" />
</property>
</class>
</hibernate-mapping>