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.
27 lines
1.1 KiB
27 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
|
|
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
|
|
<!--
|
|
Mapping file autogenerated by MyEclipse Persistence Tools
|
|
-->
|
|
<hibernate-mapping>
|
|
<class name="ProjectMain.TInput" table="t_input" catalog="jpa_inst">
|
|
<id name="id" type="java.lang.Integer">
|
|
<column name="id" />
|
|
<generator class="native" />
|
|
</id>
|
|
<many-to-one name="TUser" class="ProjectMain.TUser" fetch="select">
|
|
<column name="operator" length="10" not-null="true" />
|
|
</many-to-one>
|
|
<property name="quantity" type="java.lang.Integer">
|
|
<column name="quantity" not-null="true" />
|
|
</property>
|
|
<property name="time" type="java.util.Date">
|
|
<column name="time" length="19" not-null="true" />
|
|
</property>
|
|
<property name="productId" type="java.lang.String">
|
|
<column name="product_id" length="10" not-null="true" />
|
|
</property>
|
|
</class>
|
|
</hibernate-mapping>
|