| | |
| | | |
| | | <select id="selectEvaluationList" parameterType="Evaluation" resultMap="EvaluationResult"> |
| | | <include refid="selectEvaluationVo"/> |
| | | <where> |
| | | <where> |
| | | and del_flag = 0 |
| | | <if test="score != null "> and score = #{score}</if> |
| | | <if test="content != null and content != ''"> and content = #{content}</if> |
| | | <if test="scoreType != null and scoreType != ''"> and score_type = #{scoreType}</if> |
| | | <if test="version != null "> and version = #{version}</if> |
| | | </where> |
| | | order by create_time desc |
| | | </select> |
| | | |
| | | <select id="selectEvaluationById" parameterType="Long" resultMap="EvaluationResult"> |