63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
|
|
<?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.GreenApplyDetail" table="green_apply_detail">
|
|||
|
|
<comment>green_apply_detail</comment>
|
|||
|
|
<!-- single primaryKey -->
|
|||
|
|
<id name="id" type="long">
|
|||
|
|
<column name="ID">
|
|||
|
|
<comment>id</comment>
|
|||
|
|
</column>
|
|||
|
|
<generator class="assigned"/>
|
|||
|
|
</id>
|
|||
|
|
|
|||
|
|
<property name="applyId" type="long" not-null="true">
|
|||
|
|
<column name="APPLY_ID">
|
|||
|
|
<comment>申请记录id</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="level" type="string" length="10" not-null="true">
|
|||
|
|
<column name="LEVEL">
|
|||
|
|
<comment>审批等级(序号)</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="verifyerId" type="string" length="32" not-null="true">
|
|||
|
|
<column name="VERIFYER_ID">
|
|||
|
|
<comment>审批人id</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="verifyerName" type="string" length="255" not-null="true">
|
|||
|
|
<column name="VERIFYER_NAME">
|
|||
|
|
<comment>审批人姓名</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="status" type="string" length="10" not-null="false">
|
|||
|
|
<column name="STATUS">
|
|||
|
|
<comment>当前审核状态:1 待审批、2 审批通过、3 审批未通过</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="verifyerTime" type="timestamp" not-null="false">
|
|||
|
|
<column name="VERIFYER_TIME">
|
|||
|
|
<comment>审批时间</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="verifyDesc" type="string" length="255" not-null="false">
|
|||
|
|
<column name="VERIFY_DESC">
|
|||
|
|
<comment>审批说明</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
<property name="delFlag" type="string" length="10" not-null="false">
|
|||
|
|
<column name="DEL_FLAG">
|
|||
|
|
<comment>逻辑删除 0 未删除 1 已删除</comment>
|
|||
|
|
</column>
|
|||
|
|
</property>
|
|||
|
|
|
|||
|
|
</class>
|
|||
|
|
</hibernate-mapping>
|