视频监控
This commit is contained in:
parent
c8b2c81cd9
commit
371362c0fd
|
|
@ -330,7 +330,7 @@ public class TodayTaskServiceImpl implements TodayTaskService {
|
||||||
List<String> teamLabels = mapper.getTeamLabels(vo.getTeamId());
|
List<String> teamLabels = mapper.getTeamLabels(vo.getTeamId());
|
||||||
List<String> teamLabelsNum = getTeamLabelsNum(teamLabels);
|
List<String> teamLabelsNum = getTeamLabelsNum(teamLabels);
|
||||||
vo.setTeamLabels(teamLabelsNum);
|
vo.setTeamLabels(teamLabelsNum);
|
||||||
getLatLon(vo);//经纬度实时
|
// getLatLon(vo);//经纬度实时
|
||||||
return vo;
|
return vo;
|
||||||
}
|
}
|
||||||
return new ClassMettingVo();
|
return new ClassMettingVo();
|
||||||
|
|
|
||||||
|
|
@ -18,10 +18,10 @@
|
||||||
LEFT JOIN jj_class_metting_info jcmi on jcmi.class_id=tcm.id
|
LEFT JOIN jj_class_metting_info jcmi on jcmi.class_id=tcm.id
|
||||||
left join jj_ball jb on jb.id=tcm.camera_id2
|
left join jj_ball jb on jb.id=tcm.camera_id2
|
||||||
LEFT JOIN t_device td ON jb.camera_no = td.t_code AND td.is_flag=0
|
LEFT JOIN t_device td ON jb.camera_no = td.t_code AND td.is_flag=0
|
||||||
WHERE tcm.current_constr_date = CURRENT_DATE
|
WHERE DATE_FORMAT(tcm.current_constr_date,'%Y-%m-%d') = '2024-12-08'
|
||||||
AND tcm.build_unit_code is not null and tcm.build_unit_code !=''
|
AND tcm.build_unit_code is not null and tcm.build_unit_code !=''
|
||||||
and tcm.delete_flag='0'
|
and tcm.delete_flag='0'
|
||||||
AND TO_DAYS(tcm.current_constr_date) = TO_DAYS(now())
|
# AND TO_DAYS(tcm.current_constr_date) = TO_DAYS(now())
|
||||||
<if test="orgId != null and orgId != ''">
|
<if test="orgId != null and orgId != ''">
|
||||||
AND tcm.build_unit_code=#{orgId}
|
AND tcm.build_unit_code=#{orgId}
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -35,6 +35,7 @@
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
ORDER BY td.state desc
|
ORDER BY td.state desc
|
||||||
|
LIMIT 10
|
||||||
</select>
|
</select>
|
||||||
<!--查询省外球机 -->
|
<!--查询省外球机 -->
|
||||||
<select id="getMenuListSWCity" resultType="com.sercurityControl.proteam.domain.DtreeEntity">
|
<select id="getMenuListSWCity" resultType="com.sercurityControl.proteam.domain.DtreeEntity">
|
||||||
|
|
@ -87,16 +88,17 @@
|
||||||
LEFT JOIN jj_class_metting_info jcmi on jcmi.class_id=tcm.id
|
LEFT JOIN jj_class_metting_info jcmi on jcmi.class_id=tcm.id
|
||||||
left join jj_ball jb on jb.id=tcm.camera_id2
|
left join jj_ball jb on jb.id=tcm.camera_id2
|
||||||
LEFT JOIN t_device td ON jb.camera_no = td.t_code AND td.is_flag=0
|
LEFT JOIN t_device td ON jb.camera_no = td.t_code AND td.is_flag=0
|
||||||
WHERE tcm.current_constr_date = CURRENT_DATE
|
WHERE DATE_FORMAT(tcm.current_constr_date,'%Y-%m-%d') = '2024-12-08'
|
||||||
AND tcm.build_unit_code is not null and tcm.build_unit_code !=''
|
AND tcm.build_unit_code is not null and tcm.build_unit_code !=''
|
||||||
and tcm.delete_flag='0'
|
and tcm.delete_flag='0'
|
||||||
AND TO_DAYS(tcm.current_constr_date) = TO_DAYS(now())
|
# AND TO_DAYS(tcm.current_constr_date) = TO_DAYS(now())
|
||||||
<if test="orgId != null and orgId != ''">
|
<if test="orgId != null and orgId != ''">
|
||||||
AND tcm.build_unit_code=#{orgId}
|
AND tcm.build_unit_code=#{orgId}
|
||||||
</if>
|
</if>
|
||||||
<if test="keyWord != null and keyWord != ''">
|
<if test="keyWord != null and keyWord != ''">
|
||||||
or tcm.bidding_section_name LIKE CONCAT('%',#{keyWord},'%') or jcmi.work_manage LIKE CONCAT('%',#{keyWord},'%')
|
or tcm.bidding_section_name LIKE CONCAT('%',#{keyWord},'%') or jcmi.work_manage LIKE CONCAT('%',#{keyWord},'%')
|
||||||
</if>
|
</if>
|
||||||
|
LIMIT 10
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 根据传入的参数查询下拉选择数据 -->
|
<!-- 根据传入的参数查询下拉选择数据 -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue