|
@@ -367,34 +367,42 @@
|
|
|
|
|
|
<select id="findDisclosePage" resultType="com.jeeplus.modules.sg.managementcenter.activiti.entity.Construction">
|
|
<select id="findDisclosePage" resultType="com.jeeplus.modules.sg.managementcenter.activiti.entity.Construction">
|
|
select a.project_id,
|
|
select a.project_id,
|
|
- a.require_name,
|
|
|
|
- channel,
|
|
|
|
- b.requireName,
|
|
|
|
- b.capacity,
|
|
|
|
- b.sceneSize,
|
|
|
|
- b.capacitySize,
|
|
|
|
- b.hiddenDanger,
|
|
|
|
- b.influenceConstruction,
|
|
|
|
- b.projectRepetition,
|
|
|
|
- b.implemented,
|
|
|
|
- b.transformer,
|
|
|
|
- b.lineName,
|
|
|
|
- b.quantities,
|
|
|
|
- b.rodNumber,
|
|
|
|
- b.administrationType,
|
|
|
|
- b.precondition,
|
|
|
|
- b.placementMode,
|
|
|
|
- b.productionDate,
|
|
|
|
- b.IntegrateModule,
|
|
|
|
- b.needReplace,
|
|
|
|
- b.overallTransformation,
|
|
|
|
- b.explanationOfNecessity,
|
|
|
|
- b.inconsistentDescription,
|
|
|
|
- b.policyHandlingInstructions,
|
|
|
|
- b.otherProblem,
|
|
|
|
- b.implementedContent
|
|
|
|
- from xm_project_details a
|
|
|
|
|
|
+ a.require_name as `disclose.requireName`,
|
|
|
|
+ b.channel as `disclose.channel`,
|
|
|
|
+ b.capacity as `disclose.capacity`,
|
|
|
|
+ b.sceneSize as `disclose.sceneSize`,
|
|
|
|
+ b.capacitySize as `disclose.capacitySize`,
|
|
|
|
+ b.hiddenDanger as `disclose.hiddenDanger`,
|
|
|
|
+ b.influenceConstruction as `disclose.influenceConstruction`,
|
|
|
|
+ b.projectRepetition as `disclose.projectRepetition`,
|
|
|
|
+ b.implemented as `disclose.implemented`,
|
|
|
|
+ b.transformer as `disclose.transformer`,
|
|
|
|
+ b.lineName as `disclose.lineName`,
|
|
|
|
+ b.quantities as `disclose.quantities`,
|
|
|
|
+ b.rodNumber as `disclose.rodNumber`,
|
|
|
|
+ b.administrationType as `disclose.administrationType`,
|
|
|
|
+ b.precondition as `disclose.precondition`,
|
|
|
|
+ b.placementMode as `disclose.placementMode`,
|
|
|
|
+ b.productionDate as `disclose.productionDate`,
|
|
|
|
+ b.IntegrateModule as `disclose.IntegrateModule`,
|
|
|
|
+ b.needReplace as `disclose.needReplace`,
|
|
|
|
+ b.overallTransformation as `disclose.overallTransformation`,
|
|
|
|
+ b.explanationOfNecessity as `disclose.explanationOfNecessity`,
|
|
|
|
+ b.inconsistentDescription as `disclose.inconsistentDescription`,
|
|
|
|
+ b.policyHandlingInstructions as `disclose.policyHandlingInstructions`,
|
|
|
|
+ b.otherProblem as `disclose.otherProblem`,
|
|
|
|
+ b.implementedContent as `disclose.implementedContent`
|
|
|
|
+ from xm_project_details a
|
|
LEFT JOIN xm_disclose_conclusion b
|
|
LEFT JOIN xm_disclose_conclusion b
|
|
on a.require_name = b.requireName
|
|
on a.require_name = b.requireName
|
|
|
|
+ <where>
|
|
|
|
+ 1=1
|
|
|
|
+ <if test="projectId != null and projectId != ''">
|
|
|
|
+ and a.project_id = #{projectId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="disclose.requireName != null and disclose.requireName != ''">
|
|
|
|
+ and b.requireName = #{disclose.requireName}
|
|
|
|
+ </if>
|
|
|
|
+ </where>
|
|
</select>
|
|
</select>
|
|
</mapper>
|
|
</mapper>
|