| | |
| | | <if test="evaluationState != null "> and evaluation_state = #{evaluationState}</if> |
| | | <if test="expertNum != null "> and expert_num = #{expertNum}</if> |
| | | </where> |
| | | order by create_time desc |
| | | </select> |
| | | |
| | | <select id="selectProjectManagementById" parameterType="Long" resultMap="ProjectManagementResult"> |
| | |
| | | <if test="projectCheckTime != null "> and a.project_check_time = #{projectCheckTime}</if> |
| | | <if test="projectName != null and projectName != ''"> and a.project_name like concat('%', #{projectName}, '%')</if> |
| | | <if test="evaluationState != null "> and a.evaluation_state = #{evaluationState}</if> |
| | | order by a.create_time desc |
| | | </select> |
| | | |
| | | <select id="getDataNum" parameterType="Long" resultType="Integer"> |