first commit
This commit is contained in:
39
comm/Hobi/build/classes/project/hobi/Realtime.hbm.xml
Executable file
39
comm/Hobi/build/classes/project/hobi/Realtime.hbm.xml
Executable file
@@ -0,0 +1,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="project.data.Realtime" table="T_REALTIME">
|
||||
<id name="id" type="java.lang.String">
|
||||
<column name="UUID" />
|
||||
<generator class="uuid.hex" />
|
||||
</id>
|
||||
<property name="symbol" type="java.lang.String">
|
||||
<column name="SYMBOL" />
|
||||
</property>
|
||||
<property name="ts" type="int">
|
||||
<column name="TS" />
|
||||
</property>
|
||||
<property name="name" type="java.lang.String">
|
||||
<column name="NAME" />
|
||||
</property>
|
||||
<property name="open" type="double">
|
||||
<column name="OPEN" />
|
||||
</property>
|
||||
<property name="high" type="double">
|
||||
<column name="HIGH" />
|
||||
</property>
|
||||
<property name="low" type="double">
|
||||
<column name="LOW" />
|
||||
</property>
|
||||
<property name="close" type="double">
|
||||
<column name="CLOSE" />
|
||||
</property>
|
||||
<property name="volume" type="double">
|
||||
<column name="VOLUME" />
|
||||
</property>
|
||||
<property name="amount" type="double">
|
||||
<column name="AMOUNT" />
|
||||
</property>
|
||||
|
||||
</class>
|
||||
</hibernate-mapping>
|
||||
Reference in New Issue
Block a user