<?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>
|