|
@@ -566,9 +566,9 @@
|
|
|
from simulation_automatic_subproject
|
|
|
where is_deleted = 0) temp
|
|
|
<if test="createUserId != null and createUserId != ''">
|
|
|
- where temp.create_user_id = '#{createUserId}'
|
|
|
+ where temp.create_user_id = #{createUserId}
|
|
|
</if>
|
|
|
- group by now_run_state
|
|
|
+ group by temp.now_run_state
|
|
|
</select>
|
|
|
<!--评测等级分布-->
|
|
|
<select id="selectEvaluationLevel" parameterType="java.util.Map" resultType="java.util.Map">
|
|
@@ -576,7 +576,7 @@
|
|
|
where
|
|
|
is_deleted = '0' and evaluation_level is not null
|
|
|
<if test="createUserId != null and createUserId != ''">
|
|
|
- and create_user_id=#{createUserId,jdbcType=VARCHAR}
|
|
|
+ and create_user_id = #{createUserId,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
group by evaluation_level
|
|
|
</select>
|