| | |
| | | <if test="query.otherStatus !=null"> |
| | | and ted.status = #{query.otherStatus} |
| | | </if> |
| | | <if test="query.roleType != null and (query.roleType == 3 or query.roleType == 4 or query.roleType == 5)"> |
| | | AND ted.status != 3 |
| | | </if> |
| | | <if test="query.dispatchIds != null and query.dispatchIds.size() > 0"> |
| | | and ted.id in |
| | | <foreach item="item" collection="query.dispatchIds" separator="," close=")" index="index" open="("> |
| | |
| | | <if test="query.experimentCode != null and query.experimentCode != ''"> |
| | | and ted.experiment_code like concat('%',#{query.experimentCode},'%') |
| | | </if> |
| | | <if test="query.experimentName != null and query.experimentName != ''"> |
| | | and ted.experiment_name like concat('%',#{query.experimentName},'%') |
| | | </if> |
| | | <if test="query.status !=null"> |
| | | and ted.status = #{query.status} |
| | | </if> |