| | |
| | | FROM |
| | | mdc_mttr_info |
| | | <where> |
| | | <if test="MdcMttrInfoVo.equipmentId != null and MdcMttrInfoVo.equipmentId != ''"> |
| | | AND equipment_id = #{ MdcMttrInfoVo.equipmentId } |
| | | <if test="mdcMttrInfoVo.equipmentId != null and mdcMttrInfoVo.equipmentId != ''"> |
| | | AND equipment_id = #{ mdcMttrInfoVo.equipmentId } |
| | | </if> |
| | | <if test="MdcMttrInfoVo.startTime != null and MdcMttrInfoVo.startTime != ''"> |
| | | AND the_date >= #{ MdcMttrInfoVo.startTime } |
| | | <if test="mdcMttrInfoVo.startTime != null and mdcMttrInfoVo.startTime != ''"> |
| | | AND the_date >= #{ mdcMttrInfoVo.startTime } |
| | | </if> |
| | | <if test="MdcMttrInfoVo.endTime != null and MdcMttrInfoVo.endTime != ''"> |
| | | AND the_date <= #{MdcMttrInfoVo.endTime } |
| | | <if test="mdcMttrInfoVo.endTime != null and mdcMttrInfoVo.endTime != ''"> |
| | | AND the_date <= #{mdcMttrInfoVo.endTime } |
| | | </if> |
| | | <if test="MdcMttrInfoVo.equipmentIdList != null and MdcMttrInfoVo.equipmentIdList.size() > 0 "> |
| | | <if test="mdcMttrInfoVo.equipmentIdList != null and mdcMttrInfoVo.equipmentIdList.size() > 0 "> |
| | | AND equipment_id IN |
| | | <foreach collection="MdcMttrInfoVo.equipmentIdList" item="id" index="index" open="(" close=")" separator=","> |
| | | <foreach collection="mdcMttrInfoVo.equipmentIdList" item="id" index="index" open="(" close=")" separator=","> |
| | | #{ id } |
| | | </foreach> |
| | | </if> |