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
<?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="LoginUser" table="wk_loginuser">
        <id name="id" column="id">
            <generator class="native"></generator>
        </id>
        <property name="name" type="string" column="`name`"></property>
        <property name="openid" type="string"></property>
        <property name="portrait" type="string"></property>
        <property name="device" type="string"></property>
        <property name="createtime" type="string"></property>
        <property name="detailsystem" type="string" column="detailsystemid"></property>
        <property name="pwd" type="string" column="`pwd`"></property>
        <property name="loginType" type="integer" column="logintype"></property>
 
        <property name="sex" type="string" column="`sex`"></property>
        <property name="birthday" type="string" column="`birthday`"></property>
        <property name="sign" type="string" column="`sign`"></property>
 
 
    </class>
</hibernate-mapping>