admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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.domain">
    <class name="VideoIntersectionVideo" table="wk_video_intersection_video">
        <id name="id" column="id">
            <generator class="native"></generator>
        </id>
        <property name="createtime" type="string"></property>
        <many-to-one name="intersection" column="intersectionid"
            class="VideoIntersection"></many-to-one>
        <many-to-one name="video" column="videoid" class="VideoInfo"></many-to-one>
 
    </class>
</hibernate-mapping>