视频上传列表增加 告警状态数据查询
This commit is contained in:
@ -276,6 +276,12 @@
|
|||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</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 ">
|
<if test="vo.evalAssessIds !=null ">
|
||||||
and a.id not in
|
and a.id not in
|
||||||
<foreach item="assessId" collection="vo.evalAssessIds" open="(" separator="," close=")">
|
<foreach item="assessId" collection="vo.evalAssessIds" open="(" separator="," close=")">
|
||||||
|
@ -132,7 +132,10 @@ public class BidElecEvalVideUploadVo extends BasePageRequest implements Serializ
|
|||||||
* 已上传
|
* 已上传
|
||||||
*/
|
*/
|
||||||
private List<String> uploadRoomIds;
|
private List<String> uploadRoomIds;
|
||||||
|
/**
|
||||||
|
* 告警状态
|
||||||
|
*/
|
||||||
|
private List<String> alStateIds;
|
||||||
/**
|
/**
|
||||||
* 项目负责人
|
* 项目负责人
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user