first commit
This commit is contained in:
38
comm/Item/build/classes/project/item/Item.hbm.xml
Executable file
38
comm/Item/build/classes/project/item/Item.hbm.xml
Executable file
@@ -0,0 +1,38 @@
|
||||
<?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="project.item.Item" table="T_ITEM">
|
||||
<id name="id" type="java.lang.String">
|
||||
<column name="UUID" />
|
||||
<generator class="uuid.hex" />
|
||||
</id>
|
||||
<property name="name" type="java.lang.String">
|
||||
<column name="NAME" />
|
||||
</property>
|
||||
<property name="symbol" type="java.lang.String">
|
||||
<column name="SYMBOL" />
|
||||
</property>
|
||||
<property name="symbol_data" type="java.lang.String">
|
||||
<column name="SYMBOL_DATA" />
|
||||
</property>
|
||||
<property name="pips" type="double">
|
||||
<column name="PIPS" />
|
||||
</property>
|
||||
<property name="pips_amount" type="double">
|
||||
<column name="PIPS_AMOUNT" />
|
||||
</property>
|
||||
<property name="adjustment_value" type="double">
|
||||
<column name="ADJUSTMENT_VALUE" />
|
||||
</property>
|
||||
<property name="unit_amount" type="double">
|
||||
<column name="UNIT_AMOUNT" />
|
||||
</property>
|
||||
<property name="unit_fee" type="double">
|
||||
<column name="UNIT_FEE" />
|
||||
</property>
|
||||
<property name="market" type="java.lang.String">
|
||||
<column name="MARKET" />
|
||||
</property>
|
||||
</class>
|
||||
</hibernate-mapping>
|
||||
Reference in New Issue
Block a user