|
@ -121,6 +121,9 @@ |
|
|
AND d.use_state = #{status.useState} |
|
|
AND d.use_state = #{status.useState} |
|
|
</if> |
|
|
</if> |
|
|
</where> |
|
|
</where> |
|
|
|
|
|
<if test="status.orderByField != null and status.orderDirection != null"> |
|
|
|
|
|
ORDER BY ${status.orderByField} ${status.orderDirection} |
|
|
|
|
|
</if> |
|
|
</select> |
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -185,6 +188,9 @@ |
|
|
AND d.use_state = #{status.useState} |
|
|
AND d.use_state = #{status.useState} |
|
|
</if> |
|
|
</if> |
|
|
</where> |
|
|
</where> |
|
|
|
|
|
<if test="status.orderByField != null and status.orderDirection != null"> |
|
|
|
|
|
ORDER BY ${status.orderByField} ${status.orderDirection} |
|
|
|
|
|
</if> |
|
|
</select> |
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -222,6 +228,9 @@ |
|
|
d.device_type, |
|
|
d.device_type, |
|
|
DAY (s.time) |
|
|
DAY (s.time) |
|
|
</where> |
|
|
</where> |
|
|
|
|
|
<if test="status.orderByField != null and status.orderDirection != null"> |
|
|
|
|
|
ORDER BY ${status.orderByField} ${status.orderDirection} |
|
|
|
|
|
</if> |
|
|
</select> |
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -251,6 +260,9 @@ |
|
|
AND d.use_state = #{status.useState} |
|
|
AND d.use_state = #{status.useState} |
|
|
</if> |
|
|
</if> |
|
|
</where> |
|
|
</where> |
|
|
|
|
|
<if test="status.orderByField != null and status.orderDirection != null"> |
|
|
|
|
|
ORDER BY ${status.orderByField} ${status.orderDirection} |
|
|
|
|
|
</if> |
|
|
</select> |
|
|
</select> |
|
|
|
|
|
|
|
|
<select id="deviceStatusListById" parameterType="com.zc.business.domain.Status" resultMap="BaseResultMap"> |
|
|
<select id="deviceStatusListById" parameterType="com.zc.business.domain.Status" resultMap="BaseResultMap"> |
|
@ -264,6 +276,9 @@ |
|
|
AND s.device_id = #{status.deviceId} |
|
|
AND s.device_id = #{status.deviceId} |
|
|
</if> |
|
|
</if> |
|
|
</where> |
|
|
</where> |
|
|
|
|
|
<if test="status.orderByField != null and status.orderDirection != null"> |
|
|
|
|
|
ORDER BY ${status.orderByField} ${status.orderDirection} |
|
|
|
|
|
</if> |
|
|
</select> |
|
|
</select> |
|
|
|
|
|
|
|
|
</mapper> |
|
|
</mapper> |
|
|