47 lines
1.4 KiB
XML
Executable File
47 lines
1.4 KiB
XML
Executable File
<?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.fund.UserProfitReport" table="T_USER_PROFIT_REPORT">
|
|
<id name="id" type="java.lang.String">
|
|
<column name="UUID" />
|
|
<generator class="uuid.hex" />
|
|
</id>
|
|
<property name="partyId" type="java.lang.String">
|
|
<column name="PARTY_ID" />
|
|
</property>
|
|
<property name="cny" type="double">
|
|
<column name="CNY" />
|
|
</property>
|
|
<property name="all" type="double">
|
|
<column name="RALL" />
|
|
</property>
|
|
<property name="fund" type="double">
|
|
<column name="FUND" />
|
|
</property>
|
|
|
|
<property name="coin" type="double">
|
|
<column name="COIN" />
|
|
</property>
|
|
<property name="dollar" type="double">
|
|
<column name="DOLLAR" />
|
|
</property>
|
|
<property name="fund_cny" type="double">
|
|
<column name="FUND_CNY" />
|
|
</property>
|
|
<property name="fund_dollar" type="double">
|
|
<column name="FUND_DOLLAR" />
|
|
</property>
|
|
<property name="coin_cny" type="double">
|
|
<column name="COIN_CNY" />
|
|
</property>
|
|
<property name="coin_dollar" type="double">
|
|
<column name="COIN_DOLLAR" />
|
|
</property>
|
|
<property name="createTime" type="timestamp">
|
|
<column name="CREATE_TIME" />
|
|
</property>
|
|
|
|
</class>
|
|
</hibernate-mapping>
|