hz-zhhq-app-service/greenH5modul/.svn/pristine/50/508c5a1bd4c836a6cb2ef3fc423...

126 lines
4.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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.GreenWashCarInfo" table="green_wash_car_info">
<comment>green_wash_car_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_WASH_CAR_INFO</param>
<param name="initial_value">100000</param>
</generator>
</id>
<property name="userId" type="string" length="32" not-null="true">
<column name="USER_ID">
<comment>申请人id</comment>
</column>
</property>
<property name="userName" type="string" length="255" not-null="false">
<column name="USER_NAME">
<comment>申请人</comment>
</column>
</property>
<property name="applyDate" type="string" not-null="false">
<column name="APPLY_DATE">
<comment>预约时间(年月日)</comment>
</column>
</property>
<property name="applyTime" type="string" not-null="false">
<column name="APPLY_TIME">
<comment>预约时间段,例 8:30 - 09:00</comment>
</column>
</property>
<property name="applyTimeId" type="long" not-null="false">
<column name="APPLY_TIME_ID">
<comment>预约时间段idgreen_wash_car_times</comment>
</column>
</property>
<property name="deptId" type="long" not-null="false">
<column name="DEPT_ID">
<comment>预约人所在部门id</comment>
</column>
</property>
<property name="deptName" type="string" length="100" not-null="false">
<column name="DEPT_NAME">
<comment>预约人所在部门名称</comment>
</column>
</property>
<property name="concatUserName" type="string" length="20" not-null="false">
<column name="CONCAT_USER_NAME">
<comment>联系人姓名</comment>
</column>
</property>
<property name="concatPhone" type="string" length="11" not-null="false">
<column name="CONCAT_PHONE">
<comment>联系人手机号</comment>
</column>
</property>
<property name="createTime" type="java.util.Date" not-null="false">
<column name="CREATE_TIME">
<comment>添加时间</comment>
</column>
</property>
<property name="updUser" type="string" length="32" not-null="false">
<column name="UPD_USER">
<comment>修改人</comment>
</column>
</property>
<property name="updTime" type="java.util.Date" not-null="false">
<column name="UPD_TIME">
<comment>修改时间</comment>
</column>
</property>
<property name="delFlag" type="integer" not-null="false">
<column name="DEL_FLAG">
<comment>逻辑删除 0 未删除 1 已删除</comment>
</column>
</property>
<property name="applyPlace" type="string" length="40" not-null="false">
<column name="apply_place">
<comment>地点</comment>
</column>
</property>
<property name="licensePlate" type="string" length="32" not-null="false">
<column name="licenseplate">
<comment>车牌</comment>
</column>
</property>
<property name="startRemind" type="integer" not-null="false">
<column name="startremind">
<comment>开始提醒次数</comment>
</column>
</property>
<property name="endRemind" type="integer" not-null="false">
<column name="endremind">
<comment>结束提醒次数</comment>
</column>
</property>
<property name="moveCar" type="integer" not-null="false">
<column name="move_car">
<comment>结束提醒次数</comment>
</column>
</property>
<property name="intStatus" type="integer" not-null="false">
<column name="int_status">
<comment>预约状态 0预约成功 1已取消</comment>
</column>
</property>
</class>
</hibernate-mapping>