51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
|
|
<hibernate-mapping auto-import="false">
|
|
<class name="com.nationalelectric.greenH5.po.GreenGrantAuth" table="green_grant_auth">
|
|
<comment>green_grant_auth</comment>
|
|
<!-- single primaryKey -->
|
|
<id name="id" type="string" length="128">
|
|
<column name="ID">
|
|
<comment>主键id</comment>
|
|
</column>
|
|
<generator class="uuid.hex"/>
|
|
</id>
|
|
|
|
<property name="openid" type="string" length="200" not-null="false">
|
|
<column name="OPENID">
|
|
<comment>微信openid</comment>
|
|
</column>
|
|
</property>
|
|
|
|
<property name="headportrait" type="string" length="200" not-null="false">
|
|
<column name="HEADPORTRAIT">
|
|
<comment>微信头像</comment>
|
|
</column>
|
|
</property>
|
|
|
|
<property name="username" type="string" length="50" not-null="false">
|
|
<column name="USERNAME">
|
|
<comment>用户名</comment>
|
|
</column>
|
|
</property>
|
|
|
|
<property name="telnumber" type="string" length="25" not-null="false">
|
|
<column name="TELNUMBER">
|
|
<comment>手机号码</comment>
|
|
</column>
|
|
</property>
|
|
|
|
<property name="idnumber" type="string" length="50" not-null="false">
|
|
<column name="IDNUMBER">
|
|
<comment>idnumber</comment>
|
|
</column>
|
|
</property>
|
|
|
|
<property name="createDate" type="timestamp" not-null="false">
|
|
<column name="CREATE_DATE">
|
|
<comment>create_date</comment>
|
|
</column>
|
|
</property>
|
|
|
|
</class>
|
|
</hibernate-mapping> |