Commit db7a03dd authored by tangwei's avatar tangwei

修改现场bug

parent 62ffb1a2
...@@ -176,12 +176,15 @@ ...@@ -176,12 +176,15 @@
vid.name as name, vid.name as name,
vid.url, vid.url,
vid.code, vid.code,
vid.address,
vid.img,
vid.video_type as videoType, vid.video_type as videoType,
vid.preset_position as presetPosition, vid.preset_position as presetPosition,
vid.name vid.name
from wl_video_equipment_specific as ves from wl_video_equipment_specific as ves
left join wl_video as vid on ves.video_id = vid.id left join wl_video as vid on ves.video_id = vid.id
where equipment_specific_id = #{id} where equipment_specific_id = #{id}
ORDER BY vid.create_date DESC
</select> </select>
<select id="getVideoById" resultType="com.yeejoin.equipmanage.common.entity.vo.AlamVideoVO"> <select id="getVideoById" resultType="com.yeejoin.equipmanage.common.entity.vo.AlamVideoVO">
SELECT SELECT
......
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
'%Y-%m-%d' '%Y-%m-%d'
) = curdate() ) = curdate()
</if> </if>
<if test="isExecute!=null and isExecute!='' and isExecute = '3'">and a.is_OK != #{isExecute}</if> <if test="isExecute!=null and isExecute!='' and isExecute == '3'">and a.is_OK != #{isExecute}</if>
</trim> </trim>
</select> </select>
...@@ -324,7 +324,7 @@ ...@@ -324,7 +324,7 @@
'%Y-%m-%d' '%Y-%m-%d'
) = curdate() ) = curdate()
</if> </if>
<if test="isExecute!=null and isExecute!='' and isExecute = 3">and a.is_OK != #{isExecute}</if> <if test="isExecute!=null and isExecute!='' and isExecute == '3'">and a.is_OK != #{isExecute}</if>
</trim> </trim>
order by ${orderBy} order by ${orderBy}
<choose> <choose>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment