|  |  | 
 |  |  |  | 
 |  |  | import com.genersoft.iot.vmp.gb28181.bean.GbStream; | 
 |  |  | import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem; | 
 |  |  | import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem; | 
 |  |  | import org.apache.ibatis.annotations.*; | 
 |  |  | import org.springframework.stereotype.Repository; | 
 |  |  |  | 
 |  |  | 
 |  |  |     @Select("SELECT * FROM gb_stream WHERE app=#{app} AND stream=#{stream}") | 
 |  |  |     StreamProxyItem selectOne(String app, String stream); | 
 |  |  |  | 
 |  |  |     @Select("SELECT * FROM gb_stream WHERE gbId=#{gbId}") | 
 |  |  |     List<GbStream> selectByGBId(String gbId); | 
 |  |  |  | 
 |  |  |     @Select("SELECT gs.*, pgs.platformId FROM gb_stream gs " + | 
 |  |  |             "LEFT JOIN platform_gb_stream pgs ON gs.app = pgs.app AND gs.stream = pgs.stream " + | 
 |  |  |             "WHERE gs.gbId = '${gbId}' AND pgs.platformId = '${platformId}'") | 
 |  |  |     GbStream queryStreamInPlatform(String platformId, String gbId); | 
 |  |  |     List<GbStream> queryStreamInPlatform(String platformId, String gbId); | 
 |  |  |  | 
 |  |  |     @Select("SELECT gs.*, pgs.platformId FROM gb_stream gs " + | 
 |  |  |             "LEFT JOIN platform_gb_stream pgs ON gs.app = pgs.app AND gs.stream = pgs.stream " + | 
 |  |  | 
 |  |  |  | 
 |  |  |     @Select("SELECT gs.*, pgs.platformId FROM gb_stream gs LEFT JOIN  platform_gb_stream pgs ON gs.app = pgs.app AND gs.stream = pgs.stream WHERE mediaServerId=#{mediaServerId} ") | 
 |  |  |     List<GbStream> selectAllByMediaServerId(String mediaServerId); | 
 |  |  |  | 
 |  |  |     @Update("UPDATE gb_stream " + | 
 |  |  |             "SET status=${status} " + | 
 |  |  |             "WHERE mediaServerId=#{mediaServerId} ") | 
 |  |  |     void updateStatusByMediaServerId(String mediaServerId, boolean status); | 
 |  |  |  | 
 |  |  |     @Select("SELECT * FROM gb_stream WHERE mediaServerId=#{mediaServerId}") | 
 |  |  |     void delByMediaServerId(String mediaServerId); | 
 |  |  |  | 
 |  |  |     @Delete("DELETE FROM gb_stream WHERE streamType=#{type} AND gbId=NULL AND mediaServerId=#{mediaServerId}") | 
 |  |  |     void deleteWithoutGBId(String type, String mediaServerId); | 
 |  |  |  | 
 |  |  |     @Delete("<script> "+ | 
 |  |  |             "DELETE FROM gb_stream where " + | 
 |  |  |             "<foreach collection='streamProxyItemList' item='item' separator='or'>" + | 
 |  |  |             "(app=#{item.app} and stream=#{item.stream}) " + | 
 |  |  |             "</foreach>" + | 
 |  |  |             "</script>") | 
 |  |  |     void batchDel(List<StreamProxyItem> streamProxyItemList); | 
 |  |  |  | 
 |  |  |     @Insert("<script> " + | 
 |  |  |             "insert into gb_stream " + | 
 |  |  |             "(app, stream, gbId, name, " + | 
 |  |  |             "longitude, latitude, streamType, mediaServerId, status)" + | 
 |  |  |             "values " + | 
 |  |  |             "<foreach collection='subList' index='index' item='item' separator=','> " + | 
 |  |  |             "('${item.app}', '${item.stream}', '${item.gbId}', '${item.name}', " + | 
 |  |  |             "'${item.longitude}', '${item.latitude}', '${item.streamType}', " + | 
 |  |  |             "'${item.mediaServerId}', ${item.status}) "+ | 
 |  |  |             "</foreach> " + | 
 |  |  |             "</script>") | 
 |  |  |     void batchAdd(List<StreamPushItem> subList); | 
 |  |  | } |