| | |
| | | <if test="locationCode != null and locationCode != ''"> and location_code like concat('%', #{locationCode}, '%')</if> |
| | | <if test="paramCode != null and paramCode != ''"> and param_code like concat('%', #{paramCode}, '%')</if> |
| | | <if test="paramName != null and paramName != ''"> and param_name like concat('%', #{paramName}, '%')</if> |
| | | <if test="params.beginTime != null and params.beginTime != '' and params.endTime != null and params.endTime != ''"><!-- 开始时间检索 --> |
| | | and collect_time BETWEEN #{params.beginTime} and #{params.endTime} |
| | | </if> |
| | | </where> |
| | | </select> |
| | | |