<?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="FunTVAlbum" table="wk_funtv_album">
|
<id name="id" column="id">
|
<generator class="native"></generator>
|
</id>
|
<property name="aid" column="`aid`" type="string"></property>
|
<property name="title" column="`title`" type="string"></property>
|
<property name="videoType" column="`video_type`" type="string"></property>
|
<property name="vpicture" column="`vpicture`" type="string"></property>
|
<property name="hpicture" column="`hpicture`" type="string"></property>
|
<property name="publishTime" column="`publish_time`" type="string"></property>
|
<property name="dir" column="`dir`" type="string"></property>
|
<property name="actor" column="`actor`" type="string"></property>
|
<property name="area" column="`area`" type="string"></property>
|
<property name="desc" column="`desc`" type="string"></property>
|
<property name="latest" column="`latest`" type="integer"></property>
|
<property name="all" column="`all`" type="integer"></property>
|
</class>
|
|
</hibernate-mapping>
|