| | |
| | | "LEFT JOIN parent_platform pp ON pp.serverGBId = pgs.platformId " + |
| | | "WHERE " + |
| | | "pgs.app =#{app} " + |
| | | "AND pgs.stream =#{stream} " + |
| | | "GROUP BY pp.serverGBId") |
| | | "AND pgs.stream =#{stream} ") |
| | | List<ParentPlatform> selectByAppAndStream(String app, String stream); |
| | | |
| | | @Select("SELECT pgs.*, gs.gbId FROM platform_gb_stream pgs " + |
| | |
| | | " left join platform_gb_stream pgs\n" + |
| | | " on gs.app = pgs.app and gs.stream = pgs.stream\n" + |
| | | "where pgs.platformId=#{platformId} and pgs.catalogId=#{catalogId}") |
| | | List<PlatformCatalog> queryChannelInParentPlatformAndCatalogForCatlog(String platformId, String catalogId); |
| | | List<PlatformCatalog> queryChannelInParentPlatformAndCatalogForCatalog(String platformId, String catalogId); |
| | | |
| | | @Delete("DELETE FROM platform_gb_stream WHERE catalogId=#{id}") |
| | | int delByCatalogId(String id); |
| | |
| | | "</script> ") |
| | | List<ParentPlatform> queryPlatFormListForGBWithGBId(String app, String stream, List<String> platforms); |
| | | |
| | | @Select("SELECT * FROM platform_gb_stream WHERE app=#{app} AND stream=#{stream} AND platformId=#{platformId}") |
| | | int delByAppAndStreamAndPlatform(String app, String streamId, String platformId); |
| | | @Delete("DELETE FROM platform_gb_stream WHERE app=#{app} AND stream=#{stream} AND platformId=#{platformId}") |
| | | int delByAppAndStreamAndPlatform(String app, String stream, String platformId); |
| | | } |