视频上传列表增加 告警状态数据查询

This commit is contained in:
zhangqinbin
2024-03-29 11:36:58 +08:00
parent 60bffda81d
commit 534695fdde
2 changed files with 10 additions and 1 deletions

View File

@ -276,6 +276,12 @@
</foreach>
</if>
)
<if test="vo.alStateIds !=null and vo.alStateIds.size()>0 ">
and a.id in
<foreach item="alStateId" collection="vo.alStateIds" open="(" separator="," close=")">
#{alStateId}
</foreach>
</if>
<if test="vo.evalAssessIds !=null ">
and a.id not in
<foreach item="assessId" collection="vo.evalAssessIds" open="(" separator="," close=")">

View File

@ -132,7 +132,10 @@ public class BidElecEvalVideUploadVo extends BasePageRequest implements Serializ
* 已上传
*/
private List<String> uploadRoomIds;
/**
* 告警状态
*/
private List<String> alStateIds;
/**
* 项目负责人
*/