视频监控
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> teamLabelsNum = getTeamLabelsNum(teamLabels);
|
||||
vo.setTeamLabels(teamLabelsNum);
|
||||
getLatLon(vo);//经纬度实时
|
||||
// getLatLon(vo);//经纬度实时
|
||||
return vo;
|
||||
}
|
||||
return new ClassMettingVo();
|
||||
|
|
|
|||
|
|
@ -18,10 +18,10 @@
|
|||
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 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.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 != ''">
|
||||
AND tcm.build_unit_code=#{orgId}
|
||||
</if>
|
||||
|
|
@ -35,6 +35,7 @@
|
|||
)
|
||||
</if>
|
||||
ORDER BY td.state desc
|
||||
LIMIT 10
|
||||
</select>
|
||||
<!--查询省外球机 -->
|
||||
<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_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
|
||||
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.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 != ''">
|
||||
AND tcm.build_unit_code=#{orgId}
|
||||
</if>
|
||||
<if test="keyWord != null and keyWord != ''">
|
||||
or tcm.bidding_section_name LIKE CONCAT('%',#{keyWord},'%') or jcmi.work_manage LIKE CONCAT('%',#{keyWord},'%')
|
||||
</if>
|
||||
LIMIT 10
|
||||
</select>
|
||||
|
||||
<!-- 根据传入的参数查询下拉选择数据 -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue