<?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.funtv.entity">
|
<class name="FunTVVideo" table="wk_funtv_video">
|
<id name="id" column="id">
|
<generator class="native"></generator>
|
</id>
|
|
<property name="vid" column="`vid`" type="string"></property>
|
<property name="playUrl" column="`play_url`" type="string"></property>
|
<property name="playMUrl" column="`play_mUrl`" type="string"></property>
|
<property name="time" column="`time`" type="integer"></property>
|
<property name="desc" column="`desc`" type="string"></property>
|
<property name="num" column="`num`" type="integer"></property>
|
<property name="order" column="`order`" type="integer"></property>
|
<property name="publishTime" column="`publish_time`" type="string"></property>
|
<property name="tag" column="`tag`" type="string"></property>
|
<property name="img" column="`img`" type="string"></property>
|
<property name="type" column="`type`" type="integer"></property>
|
<property name="cate" column="`cate`" type="string"></property>
|
<property name="subCate" column="`subcate`" type="string"></property>
|
<property name="updatetime" column="`updatetime`" type="string"></property>
|
</class>
|
|
</hibernate-mapping>
|