|
|
@@ -403,7 +403,7 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="findTechProjectManageCount" resultType="java.lang.Integer" parameterType="String">
|
|
|
- select count(1)
|
|
|
+ select count(distinct(p.id))
|
|
|
FROM tech_project p
|
|
|
LEFT JOIN organization_identity i on i.uid = p.uid
|
|
|
LEFT JOIN tech_website w on p.department = w.id
|
|
|
@@ -426,9 +426,6 @@
|
|
|
<if test="unitName != null" >
|
|
|
and i.unit_name like CONCAT('%', #{unitName,jdbcType=VARCHAR}, '%')
|
|
|
</if>
|
|
|
- <if test="principal != null">
|
|
|
- group by p.id
|
|
|
- </if>
|
|
|
</select>
|
|
|
|
|
|
<select id="selectProjectDetail" resultType="com.goafanti.techproject.bo.TechProjectDetailBo" parameterType="java.lang.String">
|