Commit b7cee3b2 by shiwenbo

退款管理增加申请人id字段

parent ee28bb94
......@@ -47,6 +47,9 @@
<attribute id='2e29930f-7250-4714-b41c-5bd3ffee2c4e' name='account' columnName='account' title='账号' type='string' default='' precision='' isArray='false'>
<annotation id='14f073bb-ea3a-4ab3-971c-223040cbe678' attributeId='59d25e8c-9537-4c27-8846-8c58eedc098f' name='length' value='100'></annotation>
</attribute>
<attribute id='2e29930f-7250-4714-b41c-5bd3ffee2c4e' name='applicantId' columnName='applicant_id' title='申请人id' type='string' default='' precision='' isArray='false'>
<annotation id='14f073bb-ea3a-4ab3-971c-223040cbe678' attributeId='59d25e8c-9537-4c27-8846-8c58eedc098f' name='length' value='100'></annotation>
</attribute>
<attribute id='2e29930f-7250-4714-b41c-5bd3ffee2c4e' name='applicant' columnName='applicant' title='申请人' type='string' default='' precision='' isArray='false'>
<annotation id='14f073bb-ea3a-4ab3-971c-223040cbe678' attributeId='59d25e8c-9537-4c27-8846-8c58eedc098f' name='length' value='100'></annotation>
</attribute>
......
......@@ -75,7 +75,15 @@
</ref>
<description></description>
</field>
<field title='申请人id'>
<name>applicantId</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='申请人'>
<name>applicant</name>
<type>string</type>
......
......@@ -300,6 +300,29 @@
<m:properties>
<m:property>
<m:key>name</m:key>
<m:value>applicant_id</m:value>
</m:property>
</m:properties>
</m:annotation>
</m:annotations>
<m:id>2e29930f-7250-4714-b41c-5bd3ffee2c4e</m:id>
<m:name>applicantId</m:name>
<m:title>申请人id</m:title>
<m:type>string</m:type>
<m:description></m:description>
<m:default></m:default>
</m:attribute>
<m:attribute>
<m:annotations>
<m:annotation>
<m:type>bcp.type.constraint.StringLength</m:type>
<m:value>100</m:value>
</m:annotation>
<m:annotation>
<m:type>javax.persistence.Column</m:type>
<m:properties>
<m:property>
<m:key>name</m:key>
<m:value>applicant</m:value>
</m:property>
</m:properties>
......
......@@ -87,6 +87,16 @@
<m:desc></m:desc>
</m:field>
<m:field>
<m:name>applicantId</m:name>
<m:title>申请人id</m:title>
<m:type>string</m:type>
<m:ref>
<m:name></m:name>
<m:type></m:type>
</m:ref>
<m:desc></m:desc>
</m:field>
<m:field>
<m:name>applicant</m:name>
<m:title>申请人</m:title>
<m:type>string</m:type>
......
......@@ -70,6 +70,16 @@
<m:desc></m:desc>
</m:field>
<m:field>
<m:name>applicantId</m:name>
<m:title>申请人id</m:title>
<m:type>string</m:type>
<m:ref>
<m:name></m:name>
<m:type></m:type>
</m:ref>
<m:desc></m:desc>
</m:field>
<m:field>
<m:name>applicant</m:name>
<m:title>申请人</m:title>
<m:type>string</m:type>
......
......@@ -76,6 +76,9 @@
<property name="refundReason" type="nstring" not-null="false">
<column name="refund_reason" length="300"></column>
</property>
<property name="applicantId" type="nstring" not-null="false">
<column name="applicant_id" length="100"></column>
</property>
<property name="applicant" type="nstring" not-null="false">
<column name="applicant" length="100"></column>
</property>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment