first commit

This commit is contained in:
Ray
2026-02-19 03:37:37 +08:00
commit ccfd8c79a4
2813 changed files with 453657 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<?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>