Commit e20667d9 by wukaiqiang

预付款及结余新增销售数量字段,项目新增省市区及坐标字段

parent c410ceee
......@@ -101,6 +101,43 @@
</ref>
<description></description>
</field>
<field title='项目坐标'>
<name>projectCoordinate</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='省'>
<name>province</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='市'>
<name>city</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='区'>
<name>district</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='用砂单位'>
<name>useSandComany</name>
<type>string</type>
......
......@@ -95,6 +95,43 @@
</ref>
<description></description>
</field>
<field title='项目坐标'>
<name>projectCoordinate</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='省'>
<name>province</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='市'>
<name>city</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='区'>
<name>district</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='用砂单位'>
<name>useSandComany</name>
<type>string</type>
......
......@@ -69,6 +69,18 @@
<property name="remark" type="nstring" not-null="false">
<column name="remark" length="3000"></column>
</property>
<property name="projectCoordinate" type="nstring" not-null="false">
<column name="project_coordinate" length="255"></column>
</property>
<property name="province" type="nstring" not-null="false">
<column name="province" length="100"></column>
</property>
<property name="city" type="nstring" not-null="false">
<column name="city" length="100"></column>
</property>
<property name="district" type="nstring" not-null="false">
<column name="district" length="100"></column>
</property>
<bag name="ProjectFiledDinasDetails" lazy="true" fetch="select" inverse="true">
<key column="master_id" not-null="true" />
<one-to-many entity-name="com.xyst.dinas.project.datamodel.ProjectFiledAssociatedProjectFiledDinasDetail" />
......
......@@ -50,5 +50,8 @@
<property name="marginRefund" type="big_decimal" not-null="false">
<column name="margin_refund" precision="12" scale="4"/>
</property>
<property name="dealAmount" type="big_decimal" not-null="false">
<column name="deal_amount" precision="12" scale="4"/>
</property>
</class>
</hibernate-mapping>
\ No newline at end of file
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