admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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.youku.entity">
    <class name="ProgramVideo" table="wk_youku_video">
        <id name="id" column="id" type="string">
        </id>
        <property name="stage" type="string"></property>
        <property name="seq" type="string"></property>
        <property name="title" type="string"></property>
        <property name="link" type="string"></property>
        <property name="thumbnail" type="string"></property>
        <property name="thumbnail_v2" type="string"></property>
        <property name="duration" type="string"></property>
        <property name="category" type="string"></property>
        <property name="view_count" type="string"></property>
        <property name="favorite_count" type="string"></property>
        <property name="up_count" type="string"></property>
        <property name="down_count" type="string"></property>
        <property name="published" type="string"></property>
        <property name="rc_title" type="string"></property>
        <property name="is_panorama" type="integer"></property>
        <property name="state" type="string"></property>
        <property name="bigThumbnail" type="string"></property>
        <property name="copyright_type" type="string"></property>
        <property name="public_type" type="string"></property>
        <property name="downloadStatus" type="string"></property>
        <property name="operationLimit" type="string"></property>
    </class>
 
</hibernate-mapping>