admin
2021-02-06 e2c6372f29ae0a93d9f672ffad4613581ba3e201
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.domain">
    <class name="HomeNotice" lazy="false" table="wk_video_homenotice">
        <id name="id" column="Id">
            <generator class="native"></generator>
        </id>
        <property name="createtime" type="string"></property>
        <property name="content" type="string"></property>
        <property name="url" type="string"></property>
        <property name="beizhu" type="string"></property>
        <property name="show" type="string">
            <column name="`show`" default="1"></column>
        </property>
        <property name="starttime" type="string">
            <column name="`starttime`" default="1970-01-01 12:00"></column>
        </property>
        <property name="endtime" type="string">
            <column name="`endtime`" default="2100-01-01 12:00"></column>
        </property>
        <many-to-one name="system" column="system" lazy="false"></many-to-one>
 
    </class>
 
 
 
 
 
 
</hibernate-mapping>