admin
2021-02-06 e2c6372f29ae0a93d9f672ffad4613581ba3e201
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-mapping PUBLIC
          "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
          "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.newvideo.zhibo.entity">
    <class name="ZhiBoStatisticsDetail" table="wk_zhibo_statistics_detail">
        <id name="id" column="id">
            <generator class="native"></generator>
        </id>
        <property name="rid" type="string" column="`rid`"></property>
        <property name="type" type="integer" column="`type`"></property>
        <property name="count" type="integer" column="`count`"></property>
        <property name="hour" type="string" column="`hour`"></property>
    </class>
 
</hibernate-mapping>