hz-zhhq-app-service/greenH5modul/.svn/pristine/e1/e1d015d8713057f35a66224b378...

78 lines
2.4 KiB
Plaintext
Raw Normal View History

2025-01-21 13:12:35 +08:00
<?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.GreenParkInfo"
table="green_park_info">
<comment>green_park_info</comment>
<!-- single primaryKey -->
<id name="id" type="java.lang.Long">
<column name="ID" length="19" />
<generator class="org.hibernate.id.enhanced.TableGenerator">
<param name="table_name">green_seq</param>
<param name="segment_column_name">table_name</param>
<param name="value_column_name">max_id</param>
<param name="segment_value">GREEN_PARK_INFO</param>
<param name="initial_value">100000</param>
</generator>
</id>
<property name="carownerId" type="string" length="20"
not-null="false">
<column name="CAROWNER_ID">
<comment>carowner_id</comment>
</column>
</property>
<property name="carownerName" type="string" length="10"
not-null="false">
<column name="CAROWNER_NAME">
<comment>carowner_name</comment>
</column>
</property>
<property name="entryTime" type="string" length="50"
not-null="false">
<column name="ENTRY_TIME">
<comment>entry_time</comment>
</column>
</property>
<property name="leaveTimeSet" type="string" length="50"
not-null="false">
<column name="LEAVE_TIME_SET">
<comment>leave_time_set</comment>
</column>
</property>
<property name="leaveTimeApply" type="string" length="50"
not-null="false">
<column name="LEAVE_TIME_APPLY">
<comment>leave_time_apply</comment>
</column>
</property>
<property name="leaveTime" type="string" length="50"
not-null="false">
<column name="LEAVE_TIME">
<comment>leave_time</comment>
</column>
</property>
<property name="carNum" type="string" length="10" not-null="false">
<column name="CAR_NUM">
<comment>car_num</comment>
</column>
</property>
<property name="gmtCreated" type="java.util.Date" lazy="true">
<column name="GMT_CREATED" scale="0" not-null="false" />
</property>
<property name="gmtModified" type="java.util.Date" lazy="true">
<column name="GMT_MODIFIED" scale="0" not-null="false" />
</property>
<property name="reason" type="string" length="200" not-null="false">
<column name="reason">
<comment>REASON</comment>
</column>
</property>
</class>
</hibernate-mapping>