|
@@ -44,7 +44,9 @@
|
|
a.total_fees AS "totalFees",
|
|
a.total_fees AS "totalFees",
|
|
a.start_date AS "startDate",
|
|
a.start_date AS "startDate",
|
|
a.ending_date AS "endingDate",
|
|
a.ending_date AS "endingDate",
|
|
- a.estimate_total_fees AS "estimateTotalFees"
|
|
|
|
|
|
+ a.estimate_total_fees AS "estimateTotalFees",
|
|
|
|
+ a.construction_unit as "constructionUnit",
|
|
|
|
+ a.construction_linkman as "constructionLinkman"
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<sql id="projectRecordsJoins">
|
|
<sql id="projectRecordsJoins">
|
|
@@ -394,7 +396,9 @@
|
|
project_type,
|
|
project_type,
|
|
start_date,
|
|
start_date,
|
|
ending_date,
|
|
ending_date,
|
|
- estimate_total_fees
|
|
|
|
|
|
+ estimate_total_fees,
|
|
|
|
+ construction_unit,
|
|
|
|
+ construction_linkman
|
|
) VALUES (
|
|
) VALUES (
|
|
#{id},
|
|
#{id},
|
|
#{createBy.id},
|
|
#{createBy.id},
|
|
@@ -436,7 +440,9 @@
|
|
#{projectType},
|
|
#{projectType},
|
|
#{startDate},
|
|
#{startDate},
|
|
#{endingDate},
|
|
#{endingDate},
|
|
- #{estimateTotalFees}
|
|
|
|
|
|
+ #{estimateTotalFees},
|
|
|
|
+ #{constructionUnit},
|
|
|
|
+ #{constructionLinkman}
|
|
)
|
|
)
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
@@ -477,7 +483,9 @@
|
|
total_fees = #{totalFees},
|
|
total_fees = #{totalFees},
|
|
start_date = #{startDate},
|
|
start_date = #{startDate},
|
|
ending_date = #{endingDate},
|
|
ending_date = #{endingDate},
|
|
- estimate_total_fees = #{estimateTotalFees}
|
|
|
|
|
|
+ estimate_total_fees = #{estimateTotalFees},
|
|
|
|
+ construction_unit = #{constructionUnit},
|
|
|
|
+ construction_linkman = #{constructionLinkman}
|
|
WHERE id = #{id}
|
|
WHERE id = #{id}
|
|
</update>
|
|
</update>
|
|
|
|
|