| | |
| | | <if test="dto.skName != null and dto.skName != ''"> |
| | | and info.sk_name like concat(concat('%',#{dto.skName}),'%') |
| | | </if> |
| | | <if test="dto.resCd != null and dto.resCd != '' "> |
| | | and info.sk_id like CONCAT(CONCAT('%', #{dto.resCd}), '%') |
| | | </if> |
| | | <if test="dto.engScal != null and dto.engScal != '' "> |
| | | and dria."eng_scal" like CONCAT(CONCAT('%', #{dto.engScal}), '%') |
| | | </if> |
| | | <if test="dto.status != null and dto.status != '' "> |
| | | and info.status = #{dto.status} |
| | | </if> |
| | | <if test="dto.isBegin != null and dto.isBegin == 1"> |
| | | and info.status in(1,2) |
| | | </if> |
| | | <if test="dto.isBegin != null and dto.isBegin == 2"> |
| | | and info.status = 0 |
| | | </if> |
| | | <if test="dto.projectIds != null and dto.projectIds.size > 0"> |
| | | and info.id in |
| | | <foreach collection="dto.projectIds" item="id" separator="," open="(" close=")"> |