<?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>
|