| | |
| | | <if test="minfreqid != null and minfreqid != ''"> |
| | | AND t1.minfreqid = #{minfreqid} |
| | | </if> |
| | | <if test="pointNos != null"> |
| | | AND t1.point_no in |
| | | <foreach collection="pointNos" item="item" index="item" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | </where> |
| | | </select> |
| | | |
| | |
| | | <if test="minfreqid != null and minfreqid != ''"> |
| | | AND t1.minfreqid = #{minfreqid} |
| | | </if> |
| | | <if test="pointNos != null"> |
| | | AND t1.point_no in |
| | | <foreach collection="pointNos" item="item" index="item" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | </where> |
| | | </select> |
| | | <select id="getPointPage" parameterType="map" resultType="com.iailab.module.data.api.point.dto.ApiPointDTO"> |
| | | select point_no pointNo,point_name pointName from t_da_point |
| | | <where> |
| | | point_no in |
| | | <foreach item="value" collection="paramsMap.values" separator="," open="(" close=")"> |
| | | '${value}' |
| | | </foreach> |
| | | </where> |
| | | </select> |
| | | |