diff --git a/.gitignore b/.gitignore index 78a752d..0764fe6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store +.pw-user-data node_modules/ dist/ npm-debug.log* diff --git a/backServer/capture.js b/backServer/capture.js new file mode 100644 index 0000000..d3bc295 --- /dev/null +++ b/backServer/capture.js @@ -0,0 +1,316 @@ +import { chromium } from 'playwright' +import { ensureDataFiles, readCache, writeCache, writeStatus } from './lib/cache.js' + +const PAGE_URL = 'https://www1.gdtv.cn/tvColumn/768' + +function parseEpisodeItem(rawItem) { + try { + const dataObj = typeof rawItem.data === 'string' ? JSON.parse(rawItem.data) : rawItem.data + const videoObj = + typeof dataObj.videoUrl === 'string' ? JSON.parse(dataObj.videoUrl) : dataObj.videoUrl + + return { + id: dataObj.id || rawItem.id, + title: dataObj.title || '', + coverUrl: dataObj.coverUrl || '', + releasedAt: dataObj.releasedAt || 0, + timeLength: dataObj.timeLength || 0, + videoUrl: videoObj?.hd || videoObj?.sd || '', + raw: dataObj + } + } catch (error) { + console.error('解析单条节目失败:', error) + return null + } +} + +function mergeCache(oldCache, responseUrl, data) { + const url = new URL(responseUrl) + const currentPage = Number(url.searchParams.get('currentPage') || 1) + const beginScore = Number(url.searchParams.get('beginScore') || 0) + + const parsedItems = (data.list || []) + .map(parseEpisodeItem) + .filter(Boolean) + + const itemMap = new Map((oldCache.items || []).map(item => [item.id, item])) + for (const item of parsedItems) { + itemMap.set(item.id, item) + } + + return { + ...oldCache, + updatedAt: new Date().toISOString(), + name: data.name || oldCache.name || '七十二家房客', + coverUrl: data.coverUrl || oldCache.coverUrl || '', + displayType: data.displayType ?? oldCache.displayType ?? 0, + beginScoreMap: { + ...(oldCache.beginScoreMap || {}), + [currentPage]: beginScore + }, + pages: { + ...(oldCache.pages || {}), + [currentPage]: { + currentPage, + beginScore, + count: parsedItems.length, + capturedAt: new Date().toISOString() + } + }, + items: Array.from(itemMap.values()).sort((a, b) => (b.releasedAt || 0) - (a.releasedAt || 0)) + } +} + +function log(...args) { + console.log('[capture]', ...args) +} + +async function sleep(ms) { + return new Promise((resolve) => setTimeout(resolve, ms)) +} + +async function getPageScrollInfo(page) { + return await page.evaluate(() => { + return { + scrollTop: window.scrollY || document.documentElement.scrollTop || document.body.scrollTop || 0, + scrollHeight: Math.max( + document.body.scrollHeight, + document.documentElement.scrollHeight + ), + innerHeight: window.innerHeight + } + }) +} + +async function scrollStep(page, distance = 700) { + await page.evaluate((step) => { + window.scrollBy(0, step) + }, distance) +} + +async function findLoadMoreButton(page) { + const selectors = [ + '.index__load-component___1Ht2U button', + 'button:has-text("点击加载更多")', + 'button:has-text("加载更多")', + '.ant-btn:has-text("点击加载更多")' + ] + + for (const selector of selectors) { + const locator = page.locator(selector).first() + const count = await page.locator(selector).count().catch(() => 0) + if (!count) continue + + const visible = await locator.isVisible().catch(() => false) + if (visible) { + return locator + } + } + + return null +} + +async function getDomItemCount(page) { + return await page.evaluate(() => { + const selectors = [ + '.index__item-component___1q1ob', + '.index__list-item', + '.ant-list-item', + 'li' + ] + + for (const selector of selectors) { + const count = document.querySelectorAll(selector).length + if (count > 0) return count + } + + return 0 + }).catch(() => 0) +} + +async function clickLoadMoreAndWait(page) { + const button = await findLoadMoreButton(page) + if (!button) return false + + const responsePromise = page.waitForResponse( + (response) => + response.url().includes('gdtv-api.gdtv.cn/api/tvColumn/v1/news') && + response.request().method() === 'GET' && + response.status() === 200, + { timeout: 15000 } + ).catch(() => null) + + await button.scrollIntoViewIfNeeded().catch(() => {}) + await sleep(800) + + await button.click({ timeout: 10000 }).catch(async () => { + await button.click({ force: true, timeout: 10000 }) + }) + + const response = await responsePromise + await sleep(1800) + + return !!response +} + +async function autoCollectByScrollAndClick(page, maxRounds = 120) { + let round = 0 + let noChangeRounds = 0 + let lastDomCount = await getDomItemCount(page) + let lastScrollTop = 0 + + while (round < maxRounds) { + round += 1 + + const button = await findLoadMoreButton(page) + + if (button) { + log(`第 ${round} 轮:发现“加载更多”按钮,准备点击`) + const clicked = await clickLoadMoreAndWait(page) + const currentDomCount = await getDomItemCount(page) + + if (clicked) { + log(`第 ${round} 轮:点击成功,当前列表数量 ${currentDomCount}`) + } else { + log(`第 ${round} 轮:点击后未捕获到新响应`) + } + + if (currentDomCount <= lastDomCount) { + noChangeRounds += 1 + } else { + noChangeRounds = 0 + lastDomCount = currentDomCount + } + + await sleep(1200) + continue + } + + await scrollStep(page, 700) + await sleep(1400) + + const { scrollTop, scrollHeight, innerHeight } = await getPageScrollInfo(page) + const currentDomCount = await getDomItemCount(page) + + log( + `第 ${round} 轮:继续下滑,scrollTop=${scrollTop},scrollHeight=${scrollHeight},items=${currentDomCount}` + ) + + if (currentDomCount <= lastDomCount && scrollTop === lastScrollTop) { + noChangeRounds += 1 + } else { + if (currentDomCount > lastDomCount) { + lastDomCount = currentDomCount + } + noChangeRounds = 0 + } + + lastScrollTop = scrollTop + + const nearBottom = scrollTop + innerHeight >= scrollHeight - 80 + + if (nearBottom) { + log(`第 ${round} 轮:已经接近页面底部`) + await sleep(1800) + + const retryButton = await findLoadMoreButton(page) + if (!retryButton) { + noChangeRounds += 1 + } + } + + if (noChangeRounds >= 6) { + log('连续多轮没有新内容,停止采集') + break + } + } + + log(`自动采集流程结束,共执行 ${round} 轮`) +} + +async function main() { + ensureDataFiles() + + writeStatus({ + running: true, + lastMessage: '正在启动浏览器采集', + updatedAt: new Date().toISOString() + }) + + const browser = await chromium.launchPersistentContext('./.pw-user-data', { + headless: false + }) + + const page = await browser.newPage() + + page.on('response', async (response) => { + const url = response.url() + + if (!url.includes('gdtv-api.gdtv.cn/api/tvColumn/v1/news')) return + if (response.status() !== 200) return + + try { + const data = await response.json() + const oldCache = readCache() + const nextCache = mergeCache(oldCache, url, data) + writeCache(nextCache) + + const currentPage = new URL(url).searchParams.get('currentPage') + const capturedPages = Object.keys(nextCache.pages || {}).length + const totalItems = nextCache.items?.length || 0 + + writeStatus({ + running: true, + lastMessage: `已采集第 ${currentPage} 页`, + updatedAt: new Date().toISOString(), + capturedPages, + totalItems + }) + + log(`采集成功: page=${currentPage} totalItems=${totalItems}`) + } catch (error) { + console.error('[capture] 解析响应失败:', error) + } + }) + + await page.goto(PAGE_URL, { waitUntil: 'domcontentloaded' }) + await page.waitForTimeout(5000) + + log('已打开页面:', PAGE_URL) + log('等待第一页接口加载...') + + await page.waitForResponse( + (response) => + response.url().includes('gdtv-api.gdtv.cn/api/tvColumn/v1/news') && + response.request().method() === 'GET' && + response.status() === 200, + { timeout: 15000 } + ).catch(() => null) + + await sleep(2500) + + writeStatus({ + running: true, + lastMessage: '开始自动下滑并检测加载更多按钮', + updatedAt: new Date().toISOString() + }) + + await autoCollectByScrollAndClick(page, 150) + + writeStatus({ + running: false, + lastMessage: '自动采集完成', + updatedAt: new Date().toISOString() + }) + + log('自动采集完成,数据已写入 data/qishier-cache.json') +} + +main().catch((error) => { + console.error('采集启动失败:', error) + writeStatus({ + running: false, + lastMessage: `采集启动失败: ${error.message}`, + updatedAt: new Date().toISOString() + }) +}) diff --git a/backServer/data/capture-status.json b/backServer/data/capture-status.json new file mode 100644 index 0000000..c2d4e30 --- /dev/null +++ b/backServer/data/capture-status.json @@ -0,0 +1,7 @@ +{ + "running": true, + "lastMessage": "已采集第 2 页", + "updatedAt": "2026-03-10T19:14:36.004Z", + "capturedPages": 26, + "totalItems": 1141 +} \ No newline at end of file diff --git a/backServer/data/qishier-cache.json b/backServer/data/qishier-cache.json new file mode 100644 index 0000000..3334774 --- /dev/null +++ b/backServer/data/qishier-cache.json @@ -0,0 +1,35565 @@ +{ + "updatedAt": "2026-03-10T19:14:35.996Z", + "name": "七十二家房客", + "coverUrl": "https://p2-grtn.itouchtv.cn/image/20191010/0.15048946623517580e4543e24e68e4824OSS1570677193.jpg", + "displayType": 0, + "pages": { + "1": { + "currentPage": 1, + "beginScore": 1669824000000, + "count": 40, + "capturedAt": "2026-03-10T19:13:55.281Z" + }, + "2": { + "currentPage": 2, + "beginScore": 1669824000000, + "count": 40, + "capturedAt": "2026-03-10T19:14:35.996Z" + }, + "3": { + "currentPage": 3, + "beginScore": 1701360000000, + "count": 0, + "capturedAt": "2026-03-10T19:13:21.335Z" + }, + "4": { + "currentPage": 4, + "beginScore": 1763561820000, + "count": 40, + "capturedAt": "2026-03-10T19:11:26.676Z" + }, + "5": { + "currentPage": 5, + "beginScore": 1762962000000, + "count": 40, + "capturedAt": "2026-03-10T19:11:29.024Z" + }, + "6": { + "currentPage": 6, + "beginScore": 1762352220000, + "count": 40, + "capturedAt": "2026-03-10T19:11:33.591Z" + }, + "7": { + "currentPage": 7, + "beginScore": 1761746220000, + "count": 40, + "capturedAt": "2026-03-10T19:11:36.420Z" + }, + "8": { + "currentPage": 8, + "beginScore": 1761056280000, + "count": 40, + "capturedAt": "2026-03-10T19:11:39.251Z" + }, + "9": { + "currentPage": 9, + "beginScore": 1740315600000, + "count": 40, + "capturedAt": "2026-03-10T19:11:41.578Z" + }, + "10": { + "currentPage": 10, + "beginScore": 1738414800000, + "count": 40, + "capturedAt": "2026-03-10T19:11:44.739Z" + }, + "11": { + "currentPage": 11, + "beginScore": 1736514000000, + "count": 40, + "capturedAt": "2026-03-10T19:11:47.585Z" + }, + "12": { + "currentPage": 12, + "beginScore": 1734526800000, + "count": 40, + "capturedAt": "2026-03-10T19:11:50.449Z" + }, + "13": { + "currentPage": 13, + "beginScore": 1732714295000, + "count": 40, + "capturedAt": "2026-03-10T19:11:52.794Z" + }, + "14": { + "currentPage": 14, + "beginScore": 1730986358000, + "count": 40, + "capturedAt": "2026-03-10T19:11:57.376Z" + }, + "15": { + "currentPage": 15, + "beginScore": 1729171974000, + "count": 40, + "capturedAt": "2026-03-10T19:12:00.272Z" + }, + "16": { + "currentPage": 16, + "beginScore": 1727442000000, + "count": 40, + "capturedAt": "2026-03-10T19:12:03.129Z" + }, + "17": { + "currentPage": 17, + "beginScore": 1725713999999, + "count": 40, + "capturedAt": "2026-03-10T19:12:05.452Z" + }, + "18": { + "currentPage": 18, + "beginScore": 1723899600000, + "count": 40, + "capturedAt": "2026-03-10T19:12:10.101Z" + }, + "19": { + "currentPage": 19, + "beginScore": 1721998800000, + "count": 40, + "capturedAt": "2026-03-10T19:12:12.989Z" + }, + "20": { + "currentPage": 20, + "beginScore": 1720186339000, + "count": 40, + "capturedAt": "2026-03-10T19:12:15.860Z" + }, + "21": { + "currentPage": 21, + "beginScore": 1718371929000, + "count": 40, + "capturedAt": "2026-03-10T19:12:18.172Z" + }, + "22": { + "currentPage": 22, + "beginScore": 1716641999999, + "count": 40, + "capturedAt": "2026-03-10T19:12:21.399Z" + }, + "23": { + "currentPage": 23, + "beginScore": 1714827600000, + "count": 40, + "capturedAt": "2026-03-10T19:12:24.238Z" + }, + "24": { + "currentPage": 24, + "beginScore": 1713099599999, + "count": 40, + "capturedAt": "2026-03-10T19:12:27.289Z" + }, + "25": { + "currentPage": 25, + "beginScore": 1711372007000, + "count": 40, + "capturedAt": "2026-03-10T19:12:29.500Z" + }, + "26": { + "currentPage": 26, + "beginScore": 1709559052000, + "count": 0, + "capturedAt": "2026-03-10T19:12:34.177Z" + } + }, + "beginScoreMap": { + "1": 1669824000000, + "2": 1669824000000, + "3": 1701360000000, + "4": 1763561820000, + "5": 1762962000000, + "6": 1762352220000, + "7": 1761746220000, + "8": 1761056280000, + "9": 1740315600000, + "10": 1738414800000, + "11": 1736514000000, + "12": 1734526800000, + "13": 1732714295000, + "14": 1730986358000, + "15": 1729171974000, + "16": 1727442000000, + "17": 1725713999999, + "18": 1723899600000, + "19": 1721998800000, + "20": 1720186339000, + "21": 1718371929000, + "22": 1716641999999, + "23": 1714827600000, + "24": 1713099599999, + "25": 1711372007000, + "26": 1709559052000 + }, + "items": [ + { + "id": "5abbc88ea530b5db6438a4e584e80281", + "title": "七十二家房客:疍家盘粉(上)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/679165294b806fc4ac81fc17994e3d52.jpg", + "releasedAt": 1771863480000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192283084.m3u8", + "raw": { + "id": "5abbc88ea530b5db6438a4e584e80281", + "title": "七十二家房客:疍家盘粉(上)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/679165294b806fc4ac81fc17994e3d52.jpg", + "contentType": 3, + "releasedAt": 1771863480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192283084.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "322b2856a22948d27637c11292cae81f", + "title": "七十二家房客:二五八遇险记(下)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/9d93bc4b040f63bfb58e452e18701b99.jpg", + "releasedAt": 1771862220000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192274092.m3u8", + "raw": { + "id": "322b2856a22948d27637c11292cae81f", + "title": "七十二家房客:二五八遇险记(下)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/9d93bc4b040f63bfb58e452e18701b99.jpg", + "contentType": 3, + "releasedAt": 1771862220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192274092.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "173f132bd10460b2bc87518a749da720", + "title": "七十二家房客:二五八遇险记(上)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/af20658e9ee1fc2426e5eb26fd27b3fa.jpg", + "releasedAt": 1771860960000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192240974.m3u8", + "raw": { + "id": "173f132bd10460b2bc87518a749da720", + "title": "七十二家房客:二五八遇险记(上)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/af20658e9ee1fc2426e5eb26fd27b3fa.jpg", + "contentType": 3, + "releasedAt": 1771860960000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192240974.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ae071bfb70913eafff08119e47e7d2bf", + "title": "七十二家房客:残疾的阿香(下)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/2850e51e6a4909b45cd6e6492d0fa31c.jpg", + "releasedAt": 1771859700000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192228993.m3u8", + "raw": { + "id": "ae071bfb70913eafff08119e47e7d2bf", + "title": "七十二家房客:残疾的阿香(下)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/2850e51e6a4909b45cd6e6492d0fa31c.jpg", + "contentType": 3, + "releasedAt": 1771859700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192228993.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6741c8888b69e273bc2fc9e402806bc3", + "title": "七十二家房客:残疾的阿香(上)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/f628992ecb2e497c43499ac1194a14aa.jpg", + "releasedAt": 1771858380000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192199043.m3u8", + "raw": { + "id": "6741c8888b69e273bc2fc9e402806bc3", + "title": "七十二家房客:残疾的阿香(上)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/f628992ecb2e497c43499ac1194a14aa.jpg", + "contentType": 3, + "releasedAt": 1771858380000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192199043.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fc2d7f23efac7c804113b0b5e651a0e1", + "title": "七十二家房客:乱世飘萍(下)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/3ffb96c45b375a82f81da4a7fcc30e16.jpg", + "releasedAt": 1771857120000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192187034.m3u8", + "raw": { + "id": "fc2d7f23efac7c804113b0b5e651a0e1", + "title": "七十二家房客:乱世飘萍(下)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/3ffb96c45b375a82f81da4a7fcc30e16.jpg", + "contentType": 3, + "releasedAt": 1771857120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192187034.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fd2f79033153dd6b9e35d9f549a2875c", + "title": "七十二家房客:乱世飘萍(上)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/0e80bd756f4d0102056aff562dae1db9.jpg", + "releasedAt": 1771855800000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192156995.m3u8", + "raw": { + "id": "fd2f79033153dd6b9e35d9f549a2875c", + "title": "七十二家房客:乱世飘萍(上)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/0e80bd756f4d0102056aff562dae1db9.jpg", + "contentType": 3, + "releasedAt": 1771855800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192156995.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "46373fb5eaf3ec143b1f1c71d347ed3d", + "title": "七十二家房客:打掩护(下)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/51388f66e6851aa9109dfdc7d683fe89.jpg", + "releasedAt": 1771854540000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192144981.m3u8", + "raw": { + "id": "46373fb5eaf3ec143b1f1c71d347ed3d", + "title": "七十二家房客:打掩护(下)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/51388f66e6851aa9109dfdc7d683fe89.jpg", + "contentType": 3, + "releasedAt": 1771854540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192144981.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6aa2c98312b92526dd5d725c8d08cc21", + "title": "七十二家房客:她来了(下)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/005d61b7b991d89fc176a2a0fd2df635.jpg", + "releasedAt": 1771853100000, + "timeLength": 1386, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192111957.m3u8", + "raw": { + "id": "6aa2c98312b92526dd5d725c8d08cc21", + "title": "七十二家房客:她来了(下)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/005d61b7b991d89fc176a2a0fd2df635.jpg", + "contentType": 3, + "releasedAt": 1771853100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192111957.m3u8\"}", + "timeLength": 1386, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ffa1e619d83eda52253b5ece8734ff13", + "title": "七十二家房客:她来了(上)20260223", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/96b6576501867170847372b111f3752f.jpg", + "releasedAt": 1771851540000, + "timeLength": 1359, + "videoUrl": "https://vod.gdtv.cn/m3u8/202603/177192102933.m3u8", + "raw": { + "id": "ffa1e619d83eda52253b5ece8734ff13", + "title": "七十二家房客:她来了(上)20260223", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/02/96b6576501867170847372b111f3752f.jpg", + "contentType": 3, + "releasedAt": 1771851540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202603/177192102933.m3u8\"}", + "timeLength": 1359, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "805f300979f10859b525b2917208d668", + "title": "2026-01-03 七十二家房客:爱情万岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/01/716c83304d268942740c4b210a0a8cc0.jpg", + "releasedAt": 1767368100000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202601/176743509593.m3u8", + "raw": { + "id": "805f300979f10859b525b2917208d668", + "title": "2026-01-03 七十二家房客:爱情万岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2026/01/716c83304d268942740c4b210a0a8cc0.jpg", + "contentType": 3, + "releasedAt": 1767368100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202601/176743509593.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b2b4f80b846360647d13e297c029be8d", + "title": "2025-12-27 七十二家房客:女儿当自强(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/df678bd7db7fb76a0e7143d1646d72f3.jpg", + "releasedAt": 1766842200000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202601/176689673336.m3u8", + "raw": { + "id": "b2b4f80b846360647d13e297c029be8d", + "title": "2025-12-27 七十二家房客:女儿当自强(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/df678bd7db7fb76a0e7143d1646d72f3.jpg", + "contentType": 3, + "releasedAt": 1766842200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202601/176689673336.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "52ec514985669f8f9af4cf4be5984de9", + "title": "2025-12-27 七十二家房客:女儿当自强(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/21bf2907c48470cd714e98cad24260d8.jpg", + "releasedAt": 1766840580000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202601/176689664311.m3u8", + "raw": { + "id": "52ec514985669f8f9af4cf4be5984de9", + "title": "2025-12-27 七十二家房客:女儿当自强(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/21bf2907c48470cd714e98cad24260d8.jpg", + "contentType": 3, + "releasedAt": 1766840580000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202601/176689664311.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2c0ca47ea0d333792dd2ee68073a5907", + "title": "2025-12-20 七十二家房客:巧对联", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9af4e4c7be143ea1bddc6622136c8995.jpg", + "releasedAt": 1766243880000, + "timeLength": 2510, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176624870167.m3u8", + "raw": { + "id": "2c0ca47ea0d333792dd2ee68073a5907", + "title": "2025-12-20 七十二家房客:巧对联", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9af4e4c7be143ea1bddc6622136c8995.jpg", + "contentType": 3, + "releasedAt": 1766243880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176624870167.m3u8\"}", + "timeLength": 2510, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5a508be5c99528a9726229f46eb569b3", + "title": "2025-12-20 七十二家房客:神探(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/d34c778ae68749141a02243049a87449.jpg", + "releasedAt": 1766237340000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176624594029.m3u8", + "raw": { + "id": "5a508be5c99528a9726229f46eb569b3", + "title": "2025-12-20 七十二家房客:神探(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/d34c778ae68749141a02243049a87449.jpg", + "contentType": 3, + "releasedAt": 1766237340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176624594029.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "927cb618960c1aaccf21dbffe610ae0d", + "title": "2025-12-20 七十二家房客:神探(三)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/12/d78c800ca9ba0411e1899f5c88b3c0d4.jpg", + "releasedAt": 1766235780000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176624564967.m3u8", + "raw": { + "id": "927cb618960c1aaccf21dbffe610ae0d", + "title": "2025-12-20 七十二家房客:神探(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/12/d78c800ca9ba0411e1899f5c88b3c0d4.jpg", + "contentType": 3, + "releasedAt": 1766235780000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176624564967.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "751c6a018625d83e0ce6e428a27681d0", + "title": "2025-12-19七十二家房客:神探(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9c5e17d3e56d705aa907977be6ad7ef9.jpg", + "releasedAt": 1766150880000, + "timeLength": 1292, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176620452391.m3u8", + "raw": { + "id": "751c6a018625d83e0ce6e428a27681d0", + "title": "2025-12-19七十二家房客:神探(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9c5e17d3e56d705aa907977be6ad7ef9.jpg", + "contentType": 3, + "releasedAt": 1766150880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176620452391.m3u8\"}", + "timeLength": 1292, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "81864659a005abd81391d7a526b1bfe5", + "title": "2025-12-19七十二家房客:神探(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a86ca376e449e81ee435e8e0da04f798.jpg", + "releasedAt": 1766149260000, + "timeLength": 1321, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176620410369.m3u8", + "raw": { + "id": "81864659a005abd81391d7a526b1bfe5", + "title": "2025-12-19七十二家房客:神探(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a86ca376e449e81ee435e8e0da04f798.jpg", + "contentType": 3, + "releasedAt": 1766149260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176620410369.m3u8\"}", + "timeLength": 1321, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7543eb8ca18cd307629d25a983b37bcc", + "title": "2025-12-18七十二家房客:下帅之旅(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e5a2af54402538709c0f2467d66203ec.jpg", + "releasedAt": 1766064540000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176613292219.m3u8", + "raw": { + "id": "7543eb8ca18cd307629d25a983b37bcc", + "title": "2025-12-18七十二家房客:下帅之旅(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e5a2af54402538709c0f2467d66203ec.jpg", + "contentType": 3, + "releasedAt": 1766064540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176613292219.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bcc6a88c0c904302b31db149b7181e92", + "title": "2025-12-18七十二家房客:下帅之旅(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/938144298ad144a0d8ebadf68b0b6b14.jpg", + "releasedAt": 1766062860000, + "timeLength": 1260, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176613199264.m3u8", + "raw": { + "id": "bcc6a88c0c904302b31db149b7181e92", + "title": "2025-12-18七十二家房客:下帅之旅(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/938144298ad144a0d8ebadf68b0b6b14.jpg", + "contentType": 3, + "releasedAt": 1766062860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176613199264.m3u8\"}", + "timeLength": 1260, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a0f1647c894d5834180d390e67c20c45", + "title": "2025-12-17七十二家房客:假戏真做(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/542341aa61c0d3e6a84cf3aaad43e65a.jpg", + "releasedAt": 1765978080000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176602728614.m3u8", + "raw": { + "id": "a0f1647c894d5834180d390e67c20c45", + "title": "2025-12-17七十二家房客:假戏真做(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/542341aa61c0d3e6a84cf3aaad43e65a.jpg", + "contentType": 3, + "releasedAt": 1765978080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176602728614.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "151e1e079d50bbdf80fa34ff1178abb9", + "title": "2025-12-17七十二家房客:假戏真做(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/807e0871ca71fd33ecad99321f30f9ef.jpg", + "releasedAt": 1765976460000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176602710880.m3u8", + "raw": { + "id": "151e1e079d50bbdf80fa34ff1178abb9", + "title": "2025-12-17七十二家房客:假戏真做(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/807e0871ca71fd33ecad99321f30f9ef.jpg", + "contentType": 3, + "releasedAt": 1765976460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176602710880.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aeeacc9b998d86861207f404d97f99bc", + "title": "2025-12-16七十二家房客:隐形炸弹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9f749d473ddbff4239dedd1b2146e013.jpg", + "releasedAt": 1765891740000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176595539912.m3u8", + "raw": { + "id": "aeeacc9b998d86861207f404d97f99bc", + "title": "2025-12-16七十二家房客:隐形炸弹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9f749d473ddbff4239dedd1b2146e013.jpg", + "contentType": 3, + "releasedAt": 1765891740000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176595539912.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "65f7ed147c4a8df809486ae9de05408f", + "title": "2025-12-16七十二家房客:隐形炸弹(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/12/2cb709dd07318e842a49e4a82d307a53.jpg", + "releasedAt": 1765890060000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176595518865.m3u8", + "raw": { + "id": "65f7ed147c4a8df809486ae9de05408f", + "title": "2025-12-16七十二家房客:隐形炸弹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/12/2cb709dd07318e842a49e4a82d307a53.jpg", + "contentType": 3, + "releasedAt": 1765890060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176595518865.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d0661f43224c33f6eea2469edd046db", + "title": "2025-12-15七十二家房客:海阔疍家强(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e7fdae3fa92846fe03a1ca998c600d1d.jpg", + "releasedAt": 1765805280000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176587116846.m3u8", + "raw": { + "id": "4d0661f43224c33f6eea2469edd046db", + "title": "2025-12-15七十二家房客:海阔疍家强(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e7fdae3fa92846fe03a1ca998c600d1d.jpg", + "contentType": 3, + "releasedAt": 1765805280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176587116846.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "01e789ae0ee753a3dd0d3cbfcef2d2b9", + "title": "2025-12-15七十二家房客:海阔疍家强(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a6614d5d321d521f976f73a11c49a0ed.jpg", + "releasedAt": 1765803660000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176587116463.m3u8", + "raw": { + "id": "01e789ae0ee753a3dd0d3cbfcef2d2b9", + "title": "2025-12-15七十二家房客:海阔疍家强(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a6614d5d321d521f976f73a11c49a0ed.jpg", + "contentType": 3, + "releasedAt": 1765803660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176587116463.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cb72e5af137f6368a84089644fb4936f", + "title": "2025-12-13 七十二家房客:学正骨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/ef19d483062315340120f44f6b05b434.jpg", + "releasedAt": 1765632600000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176568116423.m3u8", + "raw": { + "id": "cb72e5af137f6368a84089644fb4936f", + "title": "2025-12-13 七十二家房客:学正骨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/ef19d483062315340120f44f6b05b434.jpg", + "contentType": 3, + "releasedAt": 1765632600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176568116423.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ab0f2b9f072617257b5e345a268c9ff7", + "title": "2025-12-13 七十二家房客:学正骨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/0ec2aaf71dd527771d69239b4f776cf9.jpg", + "releasedAt": 1765630920000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176568074472.m3u8", + "raw": { + "id": "ab0f2b9f072617257b5e345a268c9ff7", + "title": "2025-12-13 七十二家房客:学正骨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/0ec2aaf71dd527771d69239b4f776cf9.jpg", + "contentType": 3, + "releasedAt": 1765630920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176568074472.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fe08733787b4214a609211c1b2adf050", + "title": "2025-12-12 七十二家房客:人证(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/466d20f6ae351e22acf7779a75bbfabc.jpg", + "releasedAt": 1765546140000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176562133130.m3u8", + "raw": { + "id": "fe08733787b4214a609211c1b2adf050", + "title": "2025-12-12 七十二家房客:人证(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/466d20f6ae351e22acf7779a75bbfabc.jpg", + "contentType": 3, + "releasedAt": 1765546140000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176562133130.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9b12c089c925fd885262dfe24a9001fb", + "title": "2025-12-12 七十二家房客:人证(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e9988f4436db70ee14d9fabfe6682649.jpg", + "releasedAt": 1765544520000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176562130258.m3u8", + "raw": { + "id": "9b12c089c925fd885262dfe24a9001fb", + "title": "2025-12-12 七十二家房客:人证(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e9988f4436db70ee14d9fabfe6682649.jpg", + "contentType": 3, + "releasedAt": 1765544520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176562130258.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "92bf6ab240b613922086f924c0117382", + "title": "2025-12-11 七十二家房客:我们的故事(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/4e194ad9518bc03420c295cc5b5c6261.jpg", + "releasedAt": 1765463880000, + "timeLength": 4959, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176552278186.m3u8", + "raw": { + "id": "92bf6ab240b613922086f924c0117382", + "title": "2025-12-11 七十二家房客:我们的故事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/4e194ad9518bc03420c295cc5b5c6261.jpg", + "contentType": 3, + "releasedAt": 1765463880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176552278186.m3u8\"}", + "timeLength": 4959, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d68af1d28eb11794e557d80c10d5512", + "title": "2025-12-11 七十二家房客:武林高手金师傅(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/0018702772819d4c2a3bfe2f3e0c1056.jpg", + "releasedAt": 1765461300000, + "timeLength": 2534, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176552160139.m3u8", + "raw": { + "id": "4d68af1d28eb11794e557d80c10d5512", + "title": "2025-12-11 七十二家房客:武林高手金师傅(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/0018702772819d4c2a3bfe2f3e0c1056.jpg", + "contentType": 3, + "releasedAt": 1765461300000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176552160139.m3u8\"}", + "timeLength": 2534, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5481c3fcb917d43144e2d3b2ac994d71", + "title": "2025-12-11 七十二家房客:正路偏门(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/33c6fde68802e3bd971534682086c6cb.jpg", + "releasedAt": 1765459740000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176552064259.m3u8", + "raw": { + "id": "5481c3fcb917d43144e2d3b2ac994d71", + "title": "2025-12-11 七十二家房客:正路偏门(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/33c6fde68802e3bd971534682086c6cb.jpg", + "contentType": 3, + "releasedAt": 1765459740000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176552064259.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c584b0eb0f31296b252b2850ac38e0ec", + "title": "2025-12-11 七十二家房客:正路偏门(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8dba450a0b1ff92e1334e7410731f3e9.jpg", + "releasedAt": 1765458120000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176552049168.m3u8", + "raw": { + "id": "c584b0eb0f31296b252b2850ac38e0ec", + "title": "2025-12-11 七十二家房客:正路偏门(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8dba450a0b1ff92e1334e7410731f3e9.jpg", + "contentType": 3, + "releasedAt": 1765458120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176552049168.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b06ab337d65a27dd05446869a67d1d78", + "title": "2025-12-10七十二家房客:撒谎的代价(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/2f3032570a46ec46977dde74b59dc19d.jpg", + "releasedAt": 1765373340000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176543888398.m3u8", + "raw": { + "id": "b06ab337d65a27dd05446869a67d1d78", + "title": "2025-12-10七十二家房客:撒谎的代价(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/2f3032570a46ec46977dde74b59dc19d.jpg", + "contentType": 3, + "releasedAt": 1765373340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176543888398.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a375e5fdd80ed3822d19565f65d3de12", + "title": "2025-12-10七十二家房客:撒谎的代价(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/288a7e66a8af5b27423cf3b5f249c496.jpg", + "releasedAt": 1765371720000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176543831294.m3u8", + "raw": { + "id": "a375e5fdd80ed3822d19565f65d3de12", + "title": "2025-12-10七十二家房客:撒谎的代价(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/288a7e66a8af5b27423cf3b5f249c496.jpg", + "contentType": 3, + "releasedAt": 1765371720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176543831294.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "19b71b6a154ad2a668b143998621b917", + "title": "2025-12-09七十二家房客:做头发(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/7c89b4f9cbd6efcea06c7a58574fc2fd.jpg", + "releasedAt": 1765286940000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176535078053.m3u8", + "raw": { + "id": "19b71b6a154ad2a668b143998621b917", + "title": "2025-12-09七十二家房客:做头发(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/7c89b4f9cbd6efcea06c7a58574fc2fd.jpg", + "contentType": 3, + "releasedAt": 1765286940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176535078053.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c6eaed0779b89e413f7098b4d0649f5c", + "title": "2025-12-09七十二家房客:做头发(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a80c6dde707b2575bfdc0e45293516f7.jpg", + "releasedAt": 1765285320000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176535072044.m3u8", + "raw": { + "id": "c6eaed0779b89e413f7098b4d0649f5c", + "title": "2025-12-09七十二家房客:做头发(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a80c6dde707b2575bfdc0e45293516f7.jpg", + "contentType": 3, + "releasedAt": 1765285320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176535072044.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3ca25a97bbebf4804e859c98ec7d86c0", + "title": "2025-12-08 七十二家房客:中降头", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/c496b2d2128a0bf4f1297a96f10cf2c3.jpg", + "releasedAt": 1765203480000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176526732898.m3u8", + "raw": { + "id": "3ca25a97bbebf4804e859c98ec7d86c0", + "title": "2025-12-08 七十二家房客:中降头", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/c496b2d2128a0bf4f1297a96f10cf2c3.jpg", + "contentType": 3, + "releasedAt": 1765203480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176526732898.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3c8b33acfd60c9f5c5d0475d7b2d6e7f", + "title": "2025-12-08 七十二家房客:英雄二五八", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/0bd7224a3ab35b6c621049b33c33ff91.jpg", + "releasedAt": 1765202160000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176526693713.m3u8", + "raw": { + "id": "3c8b33acfd60c9f5c5d0475d7b2d6e7f", + "title": "2025-12-08 七十二家房客:英雄二五八", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/0bd7224a3ab35b6c621049b33c33ff91.jpg", + "contentType": 3, + "releasedAt": 1765202160000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176526693713.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cecdd307179fb69689ddafe9a1d4c7c7", + "title": "2025-12-08 七十二家房客:饿马必吃回头草(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/1ae820b92ecce917a800945af5959192.jpg", + "releasedAt": 1765200540000, + "timeLength": 1322, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176526666893.m3u8", + "raw": { + "id": "cecdd307179fb69689ddafe9a1d4c7c7", + "title": "2025-12-08 七十二家房客:饿马必吃回头草(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/1ae820b92ecce917a800945af5959192.jpg", + "contentType": 3, + "releasedAt": 1765200540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176526666893.m3u8\"}", + "timeLength": 1322, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bffc4d4c7d51923f740ca3a297b5ce9a", + "title": "2025-12-08 七十二家房客:饿马必吃回头草(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/c82aa4bb75fc0727d5ee0ef67dbba9bb.jpg", + "releasedAt": 1765198920000, + "timeLength": 1327, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176526456620.m3u8", + "raw": { + "id": "bffc4d4c7d51923f740ca3a297b5ce9a", + "title": "2025-12-08 七十二家房客:饿马必吃回头草(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/c82aa4bb75fc0727d5ee0ef67dbba9bb.jpg", + "contentType": 3, + "releasedAt": 1765198920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176526456620.m3u8\"}", + "timeLength": 1327, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d0a6a501a53a0365fb4769fc514bfb0d", + "title": "2025-12-07 七十二家房客:计中计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/b4a1c568b30558657a31fdbc225f7c2f.jpg", + "releasedAt": 1765120920000, + "timeLength": 2499, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176517703548.m3u8", + "raw": { + "id": "d0a6a501a53a0365fb4769fc514bfb0d", + "title": "2025-12-07 七十二家房客:计中计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/b4a1c568b30558657a31fdbc225f7c2f.jpg", + "contentType": 3, + "releasedAt": 1765120920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176517703548.m3u8\"}", + "timeLength": 2499, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "96f26f79640c8a20fa1cb8b226f6b96a", + "title": "2025-12-07 七十二家房客:偷东西的有钱人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e62e48b3da45de861f9744c13d7fdc45.jpg", + "releasedAt": 1765114200000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176517505574.m3u8", + "raw": { + "id": "96f26f79640c8a20fa1cb8b226f6b96a", + "title": "2025-12-07 七十二家房客:偷东西的有钱人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e62e48b3da45de861f9744c13d7fdc45.jpg", + "contentType": 3, + "releasedAt": 1765114200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176517505574.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "47ca25443e8782e2ae1bcbc3d0cc040d", + "title": "2025-12-07 七十二家房客:偷东西的有钱人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8e3b3d40b10fec6154194cda25a81aef.jpg", + "releasedAt": 1765112520000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176517493590.m3u8", + "raw": { + "id": "47ca25443e8782e2ae1bcbc3d0cc040d", + "title": "2025-12-07 七十二家房客:偷东西的有钱人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8e3b3d40b10fec6154194cda25a81aef.jpg", + "contentType": 3, + "releasedAt": 1765112520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176517493590.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9d783766546d7cd92381dc71aa1600fc", + "title": "2025-12-06七十二家房客:他来自上海(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/48c25a0dc3c081cd7203b414bd594ba4.jpg", + "releasedAt": 1765027800000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176507749753.m3u8", + "raw": { + "id": "9d783766546d7cd92381dc71aa1600fc", + "title": "2025-12-06七十二家房客:他来自上海(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/48c25a0dc3c081cd7203b414bd594ba4.jpg", + "contentType": 3, + "releasedAt": 1765027800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176507749753.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "16dac0fcad7815fa111ad711f24be3bc", + "title": "2025-12-06七十二家房客:他来自上海(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/ef12d5ebd61ca5c2ad3250d7bc9f1f31.jpg", + "releasedAt": 1765026120000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176507746713.m3u8", + "raw": { + "id": "16dac0fcad7815fa111ad711f24be3bc", + "title": "2025-12-06七十二家房客:他来自上海(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/ef12d5ebd61ca5c2ad3250d7bc9f1f31.jpg", + "contentType": 3, + "releasedAt": 1765026120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176507746713.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e9ad2b5527a8d644e5b29721aa327a0f", + "title": "2025-12-04 七十二家房客:乌龙醉猫", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a1699ba01a33f9ada5e0bc51e676445f.jpg", + "releasedAt": 1764857760000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176490641977.m3u8", + "raw": { + "id": "e9ad2b5527a8d644e5b29721aa327a0f", + "title": "2025-12-04 七十二家房客:乌龙醉猫", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a1699ba01a33f9ada5e0bc51e676445f.jpg", + "contentType": 3, + "releasedAt": 1764857760000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176490641977.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6685bc09f1cc04205101ba041638316f", + "title": "2025-12-04 七十二家房客:夺命合照", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e46ba5798c499b455ad14d90348fd6a2.jpg", + "releasedAt": 1764856500000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176490638361.m3u8", + "raw": { + "id": "6685bc09f1cc04205101ba041638316f", + "title": "2025-12-04 七十二家房客:夺命合照", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e46ba5798c499b455ad14d90348fd6a2.jpg", + "contentType": 3, + "releasedAt": 1764856500000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176490638361.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2a12c136448970083c0f1aaba829f4c2", + "title": "2025-12-04 七十二家房客:拳师(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a582d16f73e4ca38537ffd2beabfd0ff.jpg", + "releasedAt": 1764854880000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176490590283.m3u8", + "raw": { + "id": "2a12c136448970083c0f1aaba829f4c2", + "title": "2025-12-04 七十二家房客:拳师(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a582d16f73e4ca38537ffd2beabfd0ff.jpg", + "contentType": 3, + "releasedAt": 1764854880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176490590283.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "336be7b721bdf94b9dec1eb82d325278", + "title": "2025-12-04 七十二家房客:拳师(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e2927600e63900afedc3f3af3c3f7601.jpg", + "releasedAt": 1764853260000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176490584288.m3u8", + "raw": { + "id": "336be7b721bdf94b9dec1eb82d325278", + "title": "2025-12-04 七十二家房客:拳师(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e2927600e63900afedc3f3af3c3f7601.jpg", + "contentType": 3, + "releasedAt": 1764853260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176490584288.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5d9319acc5c36de08b5f74dae0d9224d", + "title": "2025-12-03 七十二家房客:契爷驾到", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a219dc065464a4ae0d5626af7e0c4fd3.jpg", + "releasedAt": 1764776520000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482241892.m3u8", + "raw": { + "id": "5d9319acc5c36de08b5f74dae0d9224d", + "title": "2025-12-03 七十二家房客:契爷驾到", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a219dc065464a4ae0d5626af7e0c4fd3.jpg", + "contentType": 3, + "releasedAt": 1764776520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482241892.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d295d3202e960f65626d366cff7fa9a9", + "title": "2025-12-03 七十二家房客:太子炳的“烟局”", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9949d29b66465fd5721cb2abe2970317.jpg", + "releasedAt": 1764775260000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482194785.m3u8", + "raw": { + "id": "d295d3202e960f65626d366cff7fa9a9", + "title": "2025-12-03 七十二家房客:太子炳的“烟局”", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9949d29b66465fd5721cb2abe2970317.jpg", + "contentType": 3, + "releasedAt": 1764775260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482194785.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5aa0fa57fc76b88942cecfe8c3c72a60", + "title": "2025-12-03 七十二家房客:全家福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/b122bc9b6a5ae9c4f33db1d82bddc82b.jpg", + "releasedAt": 1764772680000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482187857.m3u8", + "raw": { + "id": "5aa0fa57fc76b88942cecfe8c3c72a60", + "title": "2025-12-03 七十二家房客:全家福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/b122bc9b6a5ae9c4f33db1d82bddc82b.jpg", + "contentType": 3, + "releasedAt": 1764772680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482187857.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d98e915a630f24cf5d7cbe1018389f7d", + "title": "2025-12-03 七十二家房客:太平谍中谍(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/baee7becc59894f63b55f37b2b744a80.jpg", + "releasedAt": 1764771420000, + "timeLength": 1240, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482139767.m3u8", + "raw": { + "id": "d98e915a630f24cf5d7cbe1018389f7d", + "title": "2025-12-03 七十二家房客:太平谍中谍(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/baee7becc59894f63b55f37b2b744a80.jpg", + "contentType": 3, + "releasedAt": 1764771420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482139767.m3u8\"}", + "timeLength": 1240, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3a6032af89a9e8fd168c30dee38669b1", + "title": "2025-12-03 七十二家房客:太平谍中谍(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a01f6eecc5a25a9ae7a22aca2fe28e95.jpg", + "releasedAt": 1764770160000, + "timeLength": 1238, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482133855.m3u8", + "raw": { + "id": "3a6032af89a9e8fd168c30dee38669b1", + "title": "2025-12-03 七十二家房客:太平谍中谍(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a01f6eecc5a25a9ae7a22aca2fe28e95.jpg", + "contentType": 3, + "releasedAt": 1764770160000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482133855.m3u8\"}", + "timeLength": 1238, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9333ae72aacb8019ddce53b07e080fc6", + "title": "2025-12-03 七十二家房客:一场孕事(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e5e82d31210d2faa01918393ff04cd24.jpg", + "releasedAt": 1764768540000, + "timeLength": 1264, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482091858.m3u8", + "raw": { + "id": "9333ae72aacb8019ddce53b07e080fc6", + "title": "2025-12-03 七十二家房客:一场孕事(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/e5e82d31210d2faa01918393ff04cd24.jpg", + "contentType": 3, + "releasedAt": 1764768540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482091858.m3u8\"}", + "timeLength": 1264, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e5cd05515ee5f827ff88d9fe5bf0fac2", + "title": "2025-12-03 七十二家房客:一场孕事(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9dba9b95eb4ee4893029886376c56d29.jpg", + "releasedAt": 1764766860000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176482079752.m3u8", + "raw": { + "id": "e5cd05515ee5f827ff88d9fe5bf0fac2", + "title": "2025-12-03 七十二家房客:一场孕事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/9dba9b95eb4ee4893029886376c56d29.jpg", + "contentType": 3, + "releasedAt": 1764766860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176482079752.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d897423629a313b7e2d044287e81f52b", + "title": "2025-12-02 七十二家房客:冷面赌王(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/310fe2046e7457980f20d2f33d799920.jpg", + "releasedAt": 1764690060000, + "timeLength": 1236, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176475038695.m3u8", + "raw": { + "id": "d897423629a313b7e2d044287e81f52b", + "title": "2025-12-02 七十二家房客:冷面赌王(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/310fe2046e7457980f20d2f33d799920.jpg", + "contentType": 3, + "releasedAt": 1764690060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176475038695.m3u8\"}", + "timeLength": 1236, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d384cc41713201b7dcf0a7c849a65ab1", + "title": "2025-12-02 七十二家房客:夜唱惊魂(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a1a5a3fe2788a2ef76b0068c27d54c5d.jpg", + "releasedAt": 1764688800000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176474996543.m3u8", + "raw": { + "id": "d384cc41713201b7dcf0a7c849a65ab1", + "title": "2025-12-02 七十二家房客:夜唱惊魂(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a1a5a3fe2788a2ef76b0068c27d54c5d.jpg", + "contentType": 3, + "releasedAt": 1764688800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176474996543.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a7493b5677a09c4e369ab1589b61e19", + "title": "2025-12-02 七十二家房客:夜唱惊魂(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/4fe4bb4624789bfb2e846466232d8571.jpg", + "releasedAt": 1764686280000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176474981523.m3u8", + "raw": { + "id": "6a7493b5677a09c4e369ab1589b61e19", + "title": "2025-12-02 七十二家房客:夜唱惊魂(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/4fe4bb4624789bfb2e846466232d8571.jpg", + "contentType": 3, + "releasedAt": 1764686280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176474981523.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "df04f8578756dbfb78c22e0f508c56b1", + "title": "2025-12-02 七十二家房客:红颜祸水(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a5a27d0f5ec44c2fbddd76386afe1515.jpg", + "releasedAt": 1764684960000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176474942557.m3u8", + "raw": { + "id": "df04f8578756dbfb78c22e0f508c56b1", + "title": "2025-12-02 七十二家房客:红颜祸水(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/a5a27d0f5ec44c2fbddd76386afe1515.jpg", + "contentType": 3, + "releasedAt": 1764684960000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176474942557.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d4a6b07eab6a962984b0d0d17679ba62", + "title": "2025-12-02 七十二家房客:红颜祸水(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/bd14ea60a02eec3534e03c56f642552b.jpg", + "releasedAt": 1764683700000, + "timeLength": 1241, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176474930827.m3u8", + "raw": { + "id": "d4a6b07eab6a962984b0d0d17679ba62", + "title": "2025-12-02 七十二家房客:红颜祸水(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/bd14ea60a02eec3534e03c56f642552b.jpg", + "contentType": 3, + "releasedAt": 1764683700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176474930827.m3u8\"}", + "timeLength": 1241, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "83c3dd20f7b797c206134212b11d66c2", + "title": "2025-12-02 七十二家房客:伙计阿八(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/b9b72eeeea08651035db7814d44f2fee.jpg", + "releasedAt": 1764682200000, + "timeLength": 1304, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176474799211.m3u8", + "raw": { + "id": "83c3dd20f7b797c206134212b11d66c2", + "title": "2025-12-02 七十二家房客:伙计阿八(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/b9b72eeeea08651035db7814d44f2fee.jpg", + "contentType": 3, + "releasedAt": 1764682200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176474799211.m3u8\"}", + "timeLength": 1304, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fbc67effb97f92f97293d4ec182d7f5d", + "title": "2025-12-02 七十二家房客:伙计阿八(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/093fd8a2a05cdb4606cb497d1a54f332.jpg", + "releasedAt": 1764680400000, + "timeLength": 1433, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176474768538.m3u8", + "raw": { + "id": "fbc67effb97f92f97293d4ec182d7f5d", + "title": "2025-12-02 七十二家房客:伙计阿八(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/093fd8a2a05cdb4606cb497d1a54f332.jpg", + "contentType": 3, + "releasedAt": 1764680400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176474768538.m3u8\"}", + "timeLength": 1433, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ea7e0c9ae937bb1c2d14f33abfa2a6d0", + "title": "2025-12-01 七十二家房客:选夫(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8bc471b35512a5253b6cc00ddc4f560a.jpg", + "releasedAt": 1764595740000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176467954330.m3u8", + "raw": { + "id": "ea7e0c9ae937bb1c2d14f33abfa2a6d0", + "title": "2025-12-01 七十二家房客:选夫(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8bc471b35512a5253b6cc00ddc4f560a.jpg", + "contentType": 3, + "releasedAt": 1764595740000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176467954330.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5a2de2db49855734cbeebcc9b48d6522", + "title": "2025-12-01 七十二家房客:选夫(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8d742d9770f2335bc89515ceb2ddfb7b.jpg", + "releasedAt": 1764594060000, + "timeLength": 1320, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176467945369.m3u8", + "raw": { + "id": "5a2de2db49855734cbeebcc9b48d6522", + "title": "2025-12-01 七十二家房客:选夫(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/8d742d9770f2335bc89515ceb2ddfb7b.jpg", + "contentType": 3, + "releasedAt": 1764594060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176467945369.m3u8\"}", + "timeLength": 1320, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6788427552e6e02bc82e54f696f7b358", + "title": "2025-11-30 七十二家房客:武财神(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/507270d960b98220e318a378ae817f90.jpg", + "releasedAt": 1764517380000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176457283984.m3u8", + "raw": { + "id": "6788427552e6e02bc82e54f696f7b358", + "title": "2025-11-30 七十二家房客:武财神(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/507270d960b98220e318a378ae817f90.jpg", + "contentType": 3, + "releasedAt": 1764517380000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176457283984.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a708e267c3cfdad64ba13a79da1eafde", + "title": "2025-11-30 七十二家房客:武财神(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/f8e18f56886421a70ca2ef34d660c979.jpg", + "releasedAt": 1764516120000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176457239036.m3u8", + "raw": { + "id": "a708e267c3cfdad64ba13a79da1eafde", + "title": "2025-11-30 七十二家房客:武财神(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/f8e18f56886421a70ca2ef34d660c979.jpg", + "contentType": 3, + "releasedAt": 1764516120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176457239036.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "445fb5cb8da8b3fa6e4cc8e35aab917f", + "title": "2025-11-30 七十二家房客:玉中自有黄金屋(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/30e245121b6d9bd0ae5eafc8bef2c6c0.jpg", + "releasedAt": 1764509280000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176457130730.m3u8", + "raw": { + "id": "445fb5cb8da8b3fa6e4cc8e35aab917f", + "title": "2025-11-30 七十二家房客:玉中自有黄金屋(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/30e245121b6d9bd0ae5eafc8bef2c6c0.jpg", + "contentType": 3, + "releasedAt": 1764509280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176457130730.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5bf37736353b0b5974a6299f02790fc5", + "title": "2025-11-30 七十二家房客:玉中自有黄金屋(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/abd107ec940f493cfde1d6d2460caead.jpg", + "releasedAt": 1764507720000, + "timeLength": 1327, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176457124712.m3u8", + "raw": { + "id": "5bf37736353b0b5974a6299f02790fc5", + "title": "2025-11-30 七十二家房客:玉中自有黄金屋(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/abd107ec940f493cfde1d6d2460caead.jpg", + "contentType": 3, + "releasedAt": 1764507720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176457124712.m3u8\"}", + "timeLength": 1327, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd3e3638a0ed4891d0d3043d8674770b", + "title": "2025-11-29 七十二家房客:机关算尽", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/690bdaffc68df7a783812276108699d6.jpg", + "releasedAt": 1764430860000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176457229932.m3u8", + "raw": { + "id": "dd3e3638a0ed4891d0d3043d8674770b", + "title": "2025-11-29 七十二家房客:机关算尽", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/690bdaffc68df7a783812276108699d6.jpg", + "contentType": 3, + "releasedAt": 1764430860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176457229932.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "383eb1fd94b470c861ae8cf2326be251", + "title": "2025-11-29 七十二家房客:巧对联", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/17b4389671eb97fc7cb5ee6042d70d5a.jpg", + "releasedAt": 1764429600000, + "timeLength": 1260, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176457184861.m3u8", + "raw": { + "id": "383eb1fd94b470c861ae8cf2326be251", + "title": "2025-11-29 七十二家房客:巧对联", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/12/17b4389671eb97fc7cb5ee6042d70d5a.jpg", + "contentType": 3, + "releasedAt": 1764429600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176457184861.m3u8\"}", + "timeLength": 1260, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "14aabb5ae2353e6f87c047212de150b4", + "title": "2025-11-29 七十二家房客:无事生非(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/674042f4600eef129feab41fe14d4f3b.jpg", + "releasedAt": 1764422880000, + "timeLength": 1215, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176447173844.m3u8", + "raw": { + "id": "14aabb5ae2353e6f87c047212de150b4", + "title": "2025-11-29 七十二家房客:无事生非(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/674042f4600eef129feab41fe14d4f3b.jpg", + "contentType": 3, + "releasedAt": 1764422880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176447173844.m3u8\"}", + "timeLength": 1215, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7016330b4af3f44243c1cdd9d6c52c6b", + "title": "2025-11-29 七十二家房客:无事生非(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a0588e8097c1144a79e40153bcd265d1.jpg", + "releasedAt": 1764421320000, + "timeLength": 1215, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176447152724.m3u8", + "raw": { + "id": "7016330b4af3f44243c1cdd9d6c52c6b", + "title": "2025-11-29 七十二家房客:无事生非(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a0588e8097c1144a79e40153bcd265d1.jpg", + "contentType": 3, + "releasedAt": 1764421320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176447152724.m3u8\"}", + "timeLength": 1215, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f3896067845f2bfe7ddd030b10da8b45", + "title": "2025-11-29 七十二家房客:我本斯文", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c18b6e0069717a459b3d9799963c5a06.jpg", + "releasedAt": 1764410700000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176447227855.m3u8", + "raw": { + "id": "f3896067845f2bfe7ddd030b10da8b45", + "title": "2025-11-29 七十二家房客:我本斯文", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c18b6e0069717a459b3d9799963c5a06.jpg", + "contentType": 3, + "releasedAt": 1764410700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176447227855.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4de74039e3478326fbcb81de370a7cf9", + "title": "2025-11-28 七十二家房客:警察学堂", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9ac9e6ddba33206d72c7f31a3e358a49.jpg", + "releasedAt": 1764344460000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176438971337.m3u8", + "raw": { + "id": "4de74039e3478326fbcb81de370a7cf9", + "title": "2025-11-28 七十二家房客:警察学堂", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9ac9e6ddba33206d72c7f31a3e358a49.jpg", + "contentType": 3, + "releasedAt": 1764344460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176438971337.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cb5ad35240e29ff1e80113517731aab4", + "title": "2025-11-28 七十二家房客:八姑遗珠", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/135e7abd5a0504a5637446d864f7c8c0.jpg", + "releasedAt": 1764343200000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176438959417.m3u8", + "raw": { + "id": "cb5ad35240e29ff1e80113517731aab4", + "title": "2025-11-28 七十二家房客:八姑遗珠", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/135e7abd5a0504a5637446d864f7c8c0.jpg", + "contentType": 3, + "releasedAt": 1764343200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176438959417.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0c58430ed486b3489ee109ecbdb770c1", + "title": "2025-11-28 七十二家房客:洋大人", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/148090e56d702f53a3a751d3bc93f321.jpg", + "releasedAt": 1764339360000, + "timeLength": 1233, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176438917270.m3u8", + "raw": { + "id": "0c58430ed486b3489ee109ecbdb770c1", + "title": "2025-11-28 七十二家房客:洋大人", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/148090e56d702f53a3a751d3bc93f321.jpg", + "contentType": 3, + "releasedAt": 1764339360000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176438917270.m3u8\"}", + "timeLength": 1233, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b6c4051dea30d4b02e9d1d2e74d27c3f", + "title": "2025-11-28 七十二家房客:惊情一吻", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/392a7ac7ce0980e446fda96279a202f1.jpg", + "releasedAt": 1764338100000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176438905238.m3u8", + "raw": { + "id": "b6c4051dea30d4b02e9d1d2e74d27c3f", + "title": "2025-11-28 七十二家房客:惊情一吻", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/392a7ac7ce0980e446fda96279a202f1.jpg", + "contentType": 3, + "releasedAt": 1764338100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176438905238.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d786deb7d2161d7761c3e88b3d65abda", + "title": "2025-11-28 七十二家房客:女财神(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e664d67939ca0f8694eaa13d3df7fb5e.jpg", + "releasedAt": 1764336480000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176438866258.m3u8", + "raw": { + "id": "d786deb7d2161d7761c3e88b3d65abda", + "title": "2025-11-28 七十二家房客:女财神(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e664d67939ca0f8694eaa13d3df7fb5e.jpg", + "contentType": 3, + "releasedAt": 1764336480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176438866258.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1731d696dfc4043362a6834efb7ca483", + "title": "2025-11-28 七十二家房客:女财神(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6343fda0f11fbcd4fa4818447f02f677.jpg", + "releasedAt": 1764334920000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176438809322.m3u8", + "raw": { + "id": "1731d696dfc4043362a6834efb7ca483", + "title": "2025-11-28 七十二家房客:女财神(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6343fda0f11fbcd4fa4818447f02f677.jpg", + "contentType": 3, + "releasedAt": 1764334920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176438809322.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "db09b3ad94d1956fac5bca623b298970", + "title": "2025-11-27 七十二家房客:寻宝(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/7f301db4ba208dff62b8019f8aeedb96.jpg", + "releasedAt": 1764258060000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430280938.m3u8", + "raw": { + "id": "db09b3ad94d1956fac5bca623b298970", + "title": "2025-11-27 七十二家房客:寻宝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/7f301db4ba208dff62b8019f8aeedb96.jpg", + "contentType": 3, + "releasedAt": 1764258060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430280938.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2545b0dabf041154d4c45374644a8a41", + "title": "2025-11-27 七十二家房客:我的拍档(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d8c568c9d1ceef9255332c320828b4a6.jpg", + "releasedAt": 1764256800000, + "timeLength": 1238, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430247741.m3u8", + "raw": { + "id": "2545b0dabf041154d4c45374644a8a41", + "title": "2025-11-27 七十二家房客:我的拍档(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d8c568c9d1ceef9255332c320828b4a6.jpg", + "contentType": 3, + "releasedAt": 1764256800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430247741.m3u8\"}", + "timeLength": 1238, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "234284b9d3ffa37004242c5f3e1dc62c", + "title": "2025-11-27 七十二家房客:我的拍档(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6e5678096b0a49666cab2d8f489881e7.jpg", + "releasedAt": 1764255540000, + "timeLength": 1236, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430226737.m3u8", + "raw": { + "id": "234284b9d3ffa37004242c5f3e1dc62c", + "title": "2025-11-27 七十二家房客:我的拍档(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6e5678096b0a49666cab2d8f489881e7.jpg", + "contentType": 3, + "releasedAt": 1764255540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430226737.m3u8\"}", + "timeLength": 1236, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "73133fb90dbfcb00aa393d8a2a78d7aa", + "title": "2025-11-27 七十二家房客:心中有杆秤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d7e743435c47084f403375321ede69b6.jpg", + "releasedAt": 1764254280000, + "timeLength": 1260, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430193581.m3u8", + "raw": { + "id": "73133fb90dbfcb00aa393d8a2a78d7aa", + "title": "2025-11-27 七十二家房客:心中有杆秤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d7e743435c47084f403375321ede69b6.jpg", + "contentType": 3, + "releasedAt": 1764254280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430193581.m3u8\"}", + "timeLength": 1260, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4572a05c7c26defc0fb90fda90b834c9", + "title": "2025-11-27 七十二家房客:心中有杆秤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a12e94dd5d8431defb97f54cef26fe07.jpg", + "releasedAt": 1764253020000, + "timeLength": 1239, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430175556.m3u8", + "raw": { + "id": "4572a05c7c26defc0fb90fda90b834c9", + "title": "2025-11-27 七十二家房客:心中有杆秤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a12e94dd5d8431defb97f54cef26fe07.jpg", + "contentType": 3, + "releasedAt": 1764253020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430175556.m3u8\"}", + "timeLength": 1239, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3b5bb448e6d768ffc197d0c8f82e005f", + "title": "2025-11-27 七十二家房客:老虎当病猫", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/760d9b33c5dda1fe415a8a973f1a51ba.jpg", + "releasedAt": 1764251700000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430139492.m3u8", + "raw": { + "id": "3b5bb448e6d768ffc197d0c8f82e005f", + "title": "2025-11-27 七十二家房客:老虎当病猫", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/760d9b33c5dda1fe415a8a973f1a51ba.jpg", + "contentType": 3, + "releasedAt": 1764251700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430139492.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "605611542c7b85d1dcf0b4e2428b7c15", + "title": "2025-11-27 七十二家房客:合作(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/df71adb3d4599857e360c0f789b7451c.jpg", + "releasedAt": 1764250080000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430124432.m3u8", + "raw": { + "id": "605611542c7b85d1dcf0b4e2428b7c15", + "title": "2025-11-27 七十二家房客:合作(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/df71adb3d4599857e360c0f789b7451c.jpg", + "contentType": 3, + "releasedAt": 1764250080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430124432.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cf6616e5f8989fa445349cc9fafcb9e0", + "title": "2025-11-27 七十二家房客:合作(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/725701d7359e8737904b5b33b92fa09a.jpg", + "releasedAt": 1764248520000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176430073465.m3u8", + "raw": { + "id": "cf6616e5f8989fa445349cc9fafcb9e0", + "title": "2025-11-27 七十二家房客:合作(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/725701d7359e8737904b5b33b92fa09a.jpg", + "contentType": 3, + "releasedAt": 1764248520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176430073465.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c2cca7980e768c6f2411defca76eaca2", + "title": "2025-11-26七十二家房客:老虎当病猫", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8c54557bda8b18b2f081d7dd26b56684.jpg", + "releasedAt": 1764166620000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176421560233.m3u8", + "raw": { + "id": "c2cca7980e768c6f2411defca76eaca2", + "title": "2025-11-26七十二家房客:老虎当病猫", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8c54557bda8b18b2f081d7dd26b56684.jpg", + "contentType": 3, + "releasedAt": 1764166620000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176421560233.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "24fd15a647c84f2b6e39d05a5a67652e", + "title": "2025-11-26七十二家房客:情深说话未曾讲", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c56b188e7d1a727815aaf4e3bfb38e56.jpg", + "releasedAt": 1764165300000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176421551233.m3u8", + "raw": { + "id": "24fd15a647c84f2b6e39d05a5a67652e", + "title": "2025-11-26七十二家房客:情深说话未曾讲", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c56b188e7d1a727815aaf4e3bfb38e56.jpg", + "contentType": 3, + "releasedAt": 1764165300000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176421551233.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8e47a9b1ee0a535e2d8938a95175f212", + "title": "2025-11-26七十二家房客:义诊(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/26d98bccd6a660435ee06388e0b1ad7f.jpg", + "releasedAt": 1764163680000, + "timeLength": 1227, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176421494227.m3u8", + "raw": { + "id": "8e47a9b1ee0a535e2d8938a95175f212", + "title": "2025-11-26七十二家房客:义诊(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/26d98bccd6a660435ee06388e0b1ad7f.jpg", + "contentType": 3, + "releasedAt": 1764163680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176421494227.m3u8\"}", + "timeLength": 1227, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e8e8e667fac9e9e5ed45c14e3640181d", + "title": "2025-11-26七十二家房客:义诊(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/75564685f69bdd336dea24633bb16270.jpg", + "releasedAt": 1764162120000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176421506270.m3u8", + "raw": { + "id": "e8e8e667fac9e9e5ed45c14e3640181d", + "title": "2025-11-26七十二家房客:义诊(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/75564685f69bdd336dea24633bb16270.jpg", + "contentType": 3, + "releasedAt": 1764162120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176421506270.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e0c0275f7938baed3ee56a35a8eeed07", + "title": "2025-11-25 七十二家房客:最佳女友(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/51f25a6fcddd13128876d14f12d2ca11.jpg", + "releasedAt": 1764077280000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176412609821.m3u8", + "raw": { + "id": "e0c0275f7938baed3ee56a35a8eeed07", + "title": "2025-11-25 七十二家房客:最佳女友(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/51f25a6fcddd13128876d14f12d2ca11.jpg", + "contentType": 3, + "releasedAt": 1764077280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176412609821.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f8e7e4bf85ac01a384e7ecc05a8e425c", + "title": "2025-11-25 七十二家房客:最佳女友(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ced19cdb96dfb5e7b2280a99ec33ffc6.jpg", + "releasedAt": 1764075720000, + "timeLength": 1314, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176412546741.m3u8", + "raw": { + "id": "f8e7e4bf85ac01a384e7ecc05a8e425c", + "title": "2025-11-25 七十二家房客:最佳女友(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ced19cdb96dfb5e7b2280a99ec33ffc6.jpg", + "contentType": 3, + "releasedAt": 1764075720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176412546741.m3u8\"}", + "timeLength": 1314, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1cdea3a7a2052cc95c89aa4fe1fc2b85", + "title": "2025-11-24七十二家房客:过房儿子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/fb8df45c41b0f1eefe3057ffa27d6221.jpg", + "releasedAt": 1763998920000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405588334.m3u8", + "raw": { + "id": "1cdea3a7a2052cc95c89aa4fe1fc2b85", + "title": "2025-11-24七十二家房客:过房儿子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/fb8df45c41b0f1eefe3057ffa27d6221.jpg", + "contentType": 3, + "releasedAt": 1763998920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405588334.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0502d61282d7a18b08e5f01ef4ff4c67", + "title": "2025-11-24七十二家房客:黄梨梦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/96219674de054b8d9084aacd027f8b17.jpg", + "releasedAt": 1763997660000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405561236.m3u8", + "raw": { + "id": "0502d61282d7a18b08e5f01ef4ff4c67", + "title": "2025-11-24七十二家房客:黄梨梦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/96219674de054b8d9084aacd027f8b17.jpg", + "contentType": 3, + "releasedAt": 1763997660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405561236.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "30f6fd4ce0d1ca30b50a374b4baf6a96", + "title": "2025-11-24七十二家房客:黄梨梦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3618a02279549dcd23535db943d12f40.jpg", + "releasedAt": 1763996400000, + "timeLength": 1241, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405537259.m3u8", + "raw": { + "id": "30f6fd4ce0d1ca30b50a374b4baf6a96", + "title": "2025-11-24七十二家房客:黄梨梦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3618a02279549dcd23535db943d12f40.jpg", + "contentType": 3, + "releasedAt": 1763996400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405537259.m3u8\"}", + "timeLength": 1241, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "60a89c70094144cab8ca68988c05d91c", + "title": "2025-11-24七十二家房客:媒人福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b2d417bb4afa7ba3bc2f2ad75395eddd.jpg", + "releasedAt": 1763995140000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405483378.m3u8", + "raw": { + "id": "60a89c70094144cab8ca68988c05d91c", + "title": "2025-11-24七十二家房客:媒人福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b2d417bb4afa7ba3bc2f2ad75395eddd.jpg", + "contentType": 3, + "releasedAt": 1763995140000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405483378.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5bd92fc2a554fb795ce9f540302e5bbb", + "title": "2025-11-24七十二家房客:造反的马仔", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/874864ef894cc0e46e331e61b59aae3f.jpg", + "releasedAt": 1763993880000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405445176.m3u8", + "raw": { + "id": "5bd92fc2a554fb795ce9f540302e5bbb", + "title": "2025-11-24七十二家房客:造反的马仔", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/874864ef894cc0e46e331e61b59aae3f.jpg", + "contentType": 3, + "releasedAt": 1763993880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405445176.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2eaa55b7459e6696f27d448a6538e040", + "title": "2025-11-24七十二家房客:托孤(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/42e0470404b12296a958298bca1a0a14.jpg", + "releasedAt": 1763992560000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405393282.m3u8", + "raw": { + "id": "2eaa55b7459e6696f27d448a6538e040", + "title": "2025-11-24七十二家房客:托孤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/42e0470404b12296a958298bca1a0a14.jpg", + "contentType": 3, + "releasedAt": 1763992560000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405393282.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f70941728a79c07edf25e0e56b531c3a", + "title": "2025-11-24七十二家房客:食两边茶礼", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/85c92a67f0b1d94ea15d21646332b109.jpg", + "releasedAt": 1763990940000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405366285.m3u8", + "raw": { + "id": "f70941728a79c07edf25e0e56b531c3a", + "title": "2025-11-24七十二家房客:食两边茶礼", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/85c92a67f0b1d94ea15d21646332b109.jpg", + "contentType": 3, + "releasedAt": 1763990940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405366285.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d51267bc39c86cad1ed2923013b23421", + "title": "2025-11-24七十二家房客:因果缘", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/99d4a4a62f340e43253a9a576e8fd676.jpg", + "releasedAt": 1763989320000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176405336384.m3u8", + "raw": { + "id": "d51267bc39c86cad1ed2923013b23421", + "title": "2025-11-24七十二家房客:因果缘", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/99d4a4a62f340e43253a9a576e8fd676.jpg", + "contentType": 3, + "releasedAt": 1763989320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176405336384.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2df1194e06970325f734d34c4cc13e56", + "title": "2025-11-23 七十二家房客:卖身契(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/71ad49480b45d231d29181e11aa008ce.jpg", + "releasedAt": 1763904540000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176397083939.m3u8", + "raw": { + "id": "2df1194e06970325f734d34c4cc13e56", + "title": "2025-11-23 七十二家房客:卖身契(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/71ad49480b45d231d29181e11aa008ce.jpg", + "contentType": 3, + "releasedAt": 1763904540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176397083939.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "779d02b368428a47b7ede018953b6419", + "title": "2025-11-23 七十二家房客:卖身契(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/de12025b4358cbf4b79c770b7eede7ff.jpg", + "releasedAt": 1763902980000, + "timeLength": 1326, + "videoUrl": "https://vod.gdtv.cn/m3u8/202512/176397029932.m3u8", + "raw": { + "id": "779d02b368428a47b7ede018953b6419", + "title": "2025-11-23 七十二家房客:卖身契(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/de12025b4358cbf4b79c770b7eede7ff.jpg", + "contentType": 3, + "releasedAt": 1763902980000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202512/176397029932.m3u8\"}", + "timeLength": 1326, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a0354e4deb38aff5593431eaf68777cd", + "title": "2025-11-22 七十二家房客:疍家盘粉(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/013136ec51e64885b370ba9c18430945.jpg", + "releasedAt": 1763818140000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176388138643.m3u8", + "raw": { + "id": "a0354e4deb38aff5593431eaf68777cd", + "title": "2025-11-22 七十二家房客:疍家盘粉(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/013136ec51e64885b370ba9c18430945.jpg", + "contentType": 3, + "releasedAt": 1763818140000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176388138643.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1f2f257ba528bb5ca5b0767dfa2d589e", + "title": "2025-11-22 七十二家房客:疍家盘粉(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/98e35ffea669807a5c55a715e5a87eb5.jpg", + "releasedAt": 1763816580000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176388105681.m3u8", + "raw": { + "id": "1f2f257ba528bb5ca5b0767dfa2d589e", + "title": "2025-11-22 七十二家房客:疍家盘粉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/98e35ffea669807a5c55a715e5a87eb5.jpg", + "contentType": 3, + "releasedAt": 1763816580000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176388105681.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b500ee5fa8ce61ebc3647b221657ff1e", + "title": "2025-11-21 七十二家房客:生子疑团(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/dc8528c5cd5af4ce34eb9a319cbe0b54.jpg", + "releasedAt": 1763734620000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176378484259.m3u8", + "raw": { + "id": "b500ee5fa8ce61ebc3647b221657ff1e", + "title": "2025-11-21 七十二家房客:生子疑团(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/dc8528c5cd5af4ce34eb9a319cbe0b54.jpg", + "contentType": 3, + "releasedAt": 1763734620000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176378484259.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d6014e590c6fe25f50741a0b24b7d39e", + "title": "2025-11-21 七十二家房客:生子疑团(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/436512b8b1631d8ebe66a7cb5fe1381d.jpg", + "releasedAt": 1763733300000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176378463372.m3u8", + "raw": { + "id": "d6014e590c6fe25f50741a0b24b7d39e", + "title": "2025-11-21 七十二家房客:生子疑团(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/436512b8b1631d8ebe66a7cb5fe1381d.jpg", + "contentType": 3, + "releasedAt": 1763733300000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176378463372.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4121305143e8439abfedad933fc0fa09", + "title": "2025-11-21 七十二家房客:二五八遇险记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1520e0169d923145dbec9922031c13dc.jpg", + "releasedAt": 1763731680000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176378427139.m3u8", + "raw": { + "id": "4121305143e8439abfedad933fc0fa09", + "title": "2025-11-21 七十二家房客:二五八遇险记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1520e0169d923145dbec9922031c13dc.jpg", + "contentType": 3, + "releasedAt": 1763731680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176378427139.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56f08002244a8ac35f6ae59b51642b84", + "title": "2025-11-21 七十二家房客:二五八遇险记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5c9600e6a0ae7f3cb003d54cc1cd49da.jpg", + "releasedAt": 1763730120000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176378406160.m3u8", + "raw": { + "id": "56f08002244a8ac35f6ae59b51642b84", + "title": "2025-11-21 七十二家房客:二五八遇险记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5c9600e6a0ae7f3cb003d54cc1cd49da.jpg", + "contentType": 3, + "releasedAt": 1763730120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176378406160.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7d3be67f949d416e292f145063ab210a", + "title": "2025-11-20 七十二家房客:理解万岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b2a5f6021a35645454a401d2661a0475.jpg", + "releasedAt": 1763649420000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176369851154.m3u8", + "raw": { + "id": "7d3be67f949d416e292f145063ab210a", + "title": "2025-11-20 七十二家房客:理解万岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b2a5f6021a35645454a401d2661a0475.jpg", + "contentType": 3, + "releasedAt": 1763649420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176369851154.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a2db7d830c20caa09fd9643eb707a65c", + "title": "2025-11-20 七十二家房客:理解万岁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/801bd05891169a23c7d827b6e1b258f4.jpg", + "releasedAt": 1763648220000, + "timeLength": 1240, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176369833185.m3u8", + "raw": { + "id": "a2db7d830c20caa09fd9643eb707a65c", + "title": "2025-11-20 七十二家房客:理解万岁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/801bd05891169a23c7d827b6e1b258f4.jpg", + "contentType": 3, + "releasedAt": 1763648220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176369833185.m3u8\"}", + "timeLength": 1240, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a9034fb24a75ed55d6be649722fdbafe", + "title": "2025-11-20 七十二家房客:到嘴的鸭子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9f0d711290fdd7663378b9f375a87cbd.jpg", + "releasedAt": 1763646900000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176369797160.m3u8", + "raw": { + "id": "a9034fb24a75ed55d6be649722fdbafe", + "title": "2025-11-20 七十二家房客:到嘴的鸭子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9f0d711290fdd7663378b9f375a87cbd.jpg", + "contentType": 3, + "releasedAt": 1763646900000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176369797160.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "371ca1c711ecf42e1082ad8d30519ded", + "title": "2025-11-20 七十二家房客:残疾的阿香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/95fc569a48449d497eb21066cd1dbe1c.jpg", + "releasedAt": 1763645280000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176369782385.m3u8", + "raw": { + "id": "371ca1c711ecf42e1082ad8d30519ded", + "title": "2025-11-20 七十二家房客:残疾的阿香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/95fc569a48449d497eb21066cd1dbe1c.jpg", + "contentType": 3, + "releasedAt": 1763645280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176369782385.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3320e4bb0c95354da54b5d42e3069bda", + "title": "2025-11-20 七十二家房客:残疾的阿香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/24a193001c86172481ea63f4a304bdc4.jpg", + "releasedAt": 1763643720000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176369713151.m3u8", + "raw": { + "id": "3320e4bb0c95354da54b5d42e3069bda", + "title": "2025-11-20 七十二家房客:残疾的阿香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/24a193001c86172481ea63f4a304bdc4.jpg", + "contentType": 3, + "releasedAt": 1763643720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176369713151.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b28a0f850f2b715a07385d1bdd5cc116", + "title": "2025-11-19 七十二家房客:师出同门(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1bbfcf7d3b028264a45d2267bacdc8ce.jpg", + "releasedAt": 1763565600000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176361684485.m3u8", + "raw": { + "id": "b28a0f850f2b715a07385d1bdd5cc116", + "title": "2025-11-19 七十二家房客:师出同门(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1bbfcf7d3b028264a45d2267bacdc8ce.jpg", + "contentType": 3, + "releasedAt": 1763565600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176361684485.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "722827b7ffba9e56199e4b09b8c151e3", + "title": "2025-11-19 七十二家房客:师出同门(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ace75455e111470807edb3f27a6070e2.jpg", + "releasedAt": 1763563080000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176361675526.m3u8", + "raw": { + "id": "722827b7ffba9e56199e4b09b8c151e3", + "title": "2025-11-19 七十二家房客:师出同门(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ace75455e111470807edb3f27a6070e2.jpg", + "contentType": 3, + "releasedAt": 1763563080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176361675526.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "eb4086a5b432300ea37530a26367cf7b", + "title": "2025-11-19 七十二家房客:师出同门(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/16c1767ec7601c08f9b81701ef002d21.jpg", + "releasedAt": 1763561820000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176361630783.m3u8", + "raw": { + "id": "eb4086a5b432300ea37530a26367cf7b", + "title": "2025-11-19 七十二家房客:师出同门(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/16c1767ec7601c08f9b81701ef002d21.jpg", + "contentType": 3, + "releasedAt": 1763561820000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176361630783.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ca1a39cfaaf4c48031888e152dac0315", + "title": "2025-11-19 七十二家房客:师出同门(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ce8ff67e867cf08492b799aded455eb0.jpg", + "releasedAt": 1763560500000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176361624491.m3u8", + "raw": { + "id": "ca1a39cfaaf4c48031888e152dac0315", + "title": "2025-11-19 七十二家房客:师出同门(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ce8ff67e867cf08492b799aded455eb0.jpg", + "contentType": 3, + "releasedAt": 1763560500000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176361624491.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a0268e03eb22b7513ab721e6481a4cc9", + "title": "2025-11-19 七十二家房客:乱世飘萍(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/caf4b4a22258d7dfb981e1bff9eec7ca.jpg", + "releasedAt": 1763558880000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176361579293.m3u8", + "raw": { + "id": "a0268e03eb22b7513ab721e6481a4cc9", + "title": "2025-11-19 七十二家房客:乱世飘萍(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/caf4b4a22258d7dfb981e1bff9eec7ca.jpg", + "contentType": 3, + "releasedAt": 1763558880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176361579293.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "872c772b673c6be2fe92af1609afd406", + "title": "2025-11-19 七十二家房客:乱世飘萍(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/58cd60ccd5d6e39cabb2932c3945d645.jpg", + "releasedAt": 1763557320000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176361570326.m3u8", + "raw": { + "id": "872c772b673c6be2fe92af1609afd406", + "title": "2025-11-19 七十二家房客:乱世飘萍(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/58cd60ccd5d6e39cabb2932c3945d645.jpg", + "contentType": 3, + "releasedAt": 1763557320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176361570326.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b66e89fa829b4d9f56b23a4dc60de5b5", + "title": "2025-11-18 七十二家房客:师弟来了(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5f1504b8bb01875331a53da4a40486ad.jpg", + "releasedAt": 1763476680000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176353743689.m3u8", + "raw": { + "id": "b66e89fa829b4d9f56b23a4dc60de5b5", + "title": "2025-11-18 七十二家房客:师弟来了(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5f1504b8bb01875331a53da4a40486ad.jpg", + "contentType": 3, + "releasedAt": 1763476680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176353743689.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "471c55f4d05114a2dde6d7ae482090d1", + "title": "2025-11-18 七十二家房客:沽名钓誉(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6ccaeea4f6e6c709c08d59f13e00efdc.jpg", + "releasedAt": 1763475420000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176353722397.m3u8", + "raw": { + "id": "471c55f4d05114a2dde6d7ae482090d1", + "title": "2025-11-18 七十二家房客:沽名钓誉(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6ccaeea4f6e6c709c08d59f13e00efdc.jpg", + "contentType": 3, + "releasedAt": 1763475420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176353722397.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a5bd417faadb4bf853ea3d0ff371494", + "title": "2025-11-18 七十二家房客:沽名钓誉(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/730337d56137a0a090808e3da6589dc1.jpg", + "releasedAt": 1763474100000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176353686418.m3u8", + "raw": { + "id": "6a5bd417faadb4bf853ea3d0ff371494", + "title": "2025-11-18 七十二家房客:沽名钓誉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/730337d56137a0a090808e3da6589dc1.jpg", + "contentType": 3, + "releasedAt": 1763474100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176353686418.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bdfc78f9f9774f339fb810302632ecbf", + "title": "2025-11-18 七十二家房客:打掩护(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/24b1bdf78b406094baee813aad0e9782.jpg", + "releasedAt": 1763472480000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176353620417.m3u8", + "raw": { + "id": "bdfc78f9f9774f339fb810302632ecbf", + "title": "2025-11-18 七十二家房客:打掩护(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/24b1bdf78b406094baee813aad0e9782.jpg", + "contentType": 3, + "releasedAt": 1763472480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176353620417.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "69e858a9903f830b87fd419fb64bfa9b", + "title": "2025-11-18 七十二家房客:打掩护(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/57478bb7c06eae3e2215ca5f01d0c1cd.jpg", + "releasedAt": 1763470920000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176353671655.m3u8", + "raw": { + "id": "69e858a9903f830b87fd419fb64bfa9b", + "title": "2025-11-18 七十二家房客:打掩护(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/57478bb7c06eae3e2215ca5f01d0c1cd.jpg", + "contentType": 3, + "releasedAt": 1763470920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176353671655.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f474baa8252ea58132e0f2e47287735c", + "title": "2025-11-17 七十二家房客:八姑酸梅鹅", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f5f2b51147f1be62c481ea02cbca0231.jpg", + "releasedAt": 1763394060000, + "timeLength": 1252, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345512045.m3u8", + "raw": { + "id": "f474baa8252ea58132e0f2e47287735c", + "title": "2025-11-17 七十二家房客:八姑酸梅鹅", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f5f2b51147f1be62c481ea02cbca0231.jpg", + "contentType": 3, + "releasedAt": 1763394060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345512045.m3u8\"}", + "timeLength": 1252, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bde794a30ad12d71a585f79081f8ce11", + "title": "2025-11-17 七十二家房客:服旧如新", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/20d082e1635b489c9a44d80b537e3270.jpg", + "releasedAt": 1763392800000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345479090.m3u8", + "raw": { + "id": "bde794a30ad12d71a585f79081f8ce11", + "title": "2025-11-17 七十二家房客:服旧如新", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/20d082e1635b489c9a44d80b537e3270.jpg", + "contentType": 3, + "releasedAt": 1763392800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345479090.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d689f94dfcfc14ea41ae7b5b84a02a98", + "title": "2025-11-17 七十二家房客:情暖童心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/144eaec2cc9819d04ad642f5d719c5fe.jpg", + "releasedAt": 1763391540000, + "timeLength": 1252, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345458038.m3u8", + "raw": { + "id": "d689f94dfcfc14ea41ae7b5b84a02a98", + "title": "2025-11-17 七十二家房客:情暖童心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/144eaec2cc9819d04ad642f5d719c5fe.jpg", + "contentType": 3, + "releasedAt": 1763391540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345458038.m3u8\"}", + "timeLength": 1252, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ce4a6ca54566f40d4feadf1c51db9178", + "title": "2025-11-17 七十二家房客:情暖童心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/20a6f0a18e2f59daa552acb3a608177f.jpg", + "releasedAt": 1763390280000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345419110.m3u8", + "raw": { + "id": "ce4a6ca54566f40d4feadf1c51db9178", + "title": "2025-11-17 七十二家房客:情暖童心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/20a6f0a18e2f59daa552acb3a608177f.jpg", + "contentType": 3, + "releasedAt": 1763390280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345419110.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3c1e9cc0f823667647a202ad90939244", + "title": "2025-11-17 七十二家房客:失踪的阿香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/283da8bf94da6aa9ffe17d0452884e2b.jpg", + "releasedAt": 1763389020000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345401087.m3u8", + "raw": { + "id": "3c1e9cc0f823667647a202ad90939244", + "title": "2025-11-17 七十二家房客:失踪的阿香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/283da8bf94da6aa9ffe17d0452884e2b.jpg", + "contentType": 3, + "releasedAt": 1763389020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345401087.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5428c0d3544c3e3312d589fbb7a36a3f", + "title": "2025-11-17 七十二家房客:失踪的阿香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/123eaa5ad75a7154dde6fd229da405b1.jpg", + "releasedAt": 1763387700000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345362083.m3u8", + "raw": { + "id": "5428c0d3544c3e3312d589fbb7a36a3f", + "title": "2025-11-17 七十二家房客:失踪的阿香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/123eaa5ad75a7154dde6fd229da405b1.jpg", + "contentType": 3, + "releasedAt": 1763387700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345362083.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91b94f691468d1a57d5c8351d15f5adb", + "title": "2025-11-17 七十二家房客:牛三星(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d2fff9540769a282da21c2e75c684ba5.jpg", + "releasedAt": 1763386080000, + "timeLength": 1264, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345344280.m3u8", + "raw": { + "id": "91b94f691468d1a57d5c8351d15f5adb", + "title": "2025-11-17 七十二家房客:牛三星(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d2fff9540769a282da21c2e75c684ba5.jpg", + "contentType": 3, + "releasedAt": 1763386080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345344280.m3u8\"}", + "timeLength": 1264, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8eff65bf36e82cee08fc3d12db496954", + "title": "2025-11-17 七十二家房客:牛三星(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/bf28ca2ba144696b62f50a02f95f27a6.jpg", + "releasedAt": 1763384520000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176345305139.m3u8", + "raw": { + "id": "8eff65bf36e82cee08fc3d12db496954", + "title": "2025-11-17 七十二家房客:牛三星(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/bf28ca2ba144696b62f50a02f95f27a6.jpg", + "contentType": 3, + "releasedAt": 1763384520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176345305139.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1cb366e80f2d2bb2fa03f0be55c84f49", + "title": "2025-11-16 七十二家房客:返工啦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c1a98ae78a9028a1a1284762c2a98036.jpg", + "releasedAt": 1763307720000, + "timeLength": 1227, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176337496158.m3u8", + "raw": { + "id": "1cb366e80f2d2bb2fa03f0be55c84f49", + "title": "2025-11-16 七十二家房客:返工啦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c1a98ae78a9028a1a1284762c2a98036.jpg", + "contentType": 3, + "releasedAt": 1763307720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176337496158.m3u8\"}", + "timeLength": 1227, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "406f2998f4501fa28cccd88faa725b89", + "title": "2025-11-16 七十二家房客:返工啦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d83a3c5a64dc25057e8bf17a4f3eaa52.jpg", + "releasedAt": 1763306460000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176337484017.m3u8", + "raw": { + "id": "406f2998f4501fa28cccd88faa725b89", + "title": "2025-11-16 七十二家房客:返工啦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d83a3c5a64dc25057e8bf17a4f3eaa52.jpg", + "contentType": 3, + "releasedAt": 1763306460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176337484017.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "326d5d08ce96775a54d7701002ffb067", + "title": "2025-11-16 七十二家房客:扯猫尾(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a772f357bc805d6fad9e504799e26684.jpg", + "releasedAt": 1763299680000, + "timeLength": 1236, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176337433084.m3u8", + "raw": { + "id": "326d5d08ce96775a54d7701002ffb067", + "title": "2025-11-16 七十二家房客:扯猫尾(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a772f357bc805d6fad9e504799e26684.jpg", + "contentType": 3, + "releasedAt": 1763299680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176337433084.m3u8\"}", + "timeLength": 1236, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "84fbc193ccf94bd4bfa0b49c5dc6570f", + "title": "2025-11-16 七十二家房客:扯猫尾(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/340a7604caf7a311aeba850f616d6b77.jpg", + "releasedAt": 1763298120000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176337423960.m3u8", + "raw": { + "id": "84fbc193ccf94bd4bfa0b49c5dc6570f", + "title": "2025-11-16 七十二家房客:扯猫尾(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/340a7604caf7a311aeba850f616d6b77.jpg", + "contentType": 3, + "releasedAt": 1763298120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176337423960.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d75244fcd4ce07c28646930891c1850d", + "title": "2025-11-15 七十二家房客:自灸", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6547874a5c86cd36593a4485b17a5dda.jpg", + "releasedAt": 1763221260000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176326737335.m3u8", + "raw": { + "id": "d75244fcd4ce07c28646930891c1850d", + "title": "2025-11-15 七十二家房客:自灸", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6547874a5c86cd36593a4485b17a5dda.jpg", + "contentType": 3, + "releasedAt": 1763221260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176326737335.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5494e06e057de663564583e6be5e3d24", + "title": "2025-11-15 七十二家房客:绵羊发威", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ccf65d382c2b144222d8a211234b7c8a.jpg", + "releasedAt": 1763220000000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176326722239.m3u8", + "raw": { + "id": "5494e06e057de663564583e6be5e3d24", + "title": "2025-11-15 七十二家房客:绵羊发威", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ccf65d382c2b144222d8a211234b7c8a.jpg", + "contentType": 3, + "releasedAt": 1763220000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176326722239.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "552ff4ab2710958e0feadf1b99fd6632", + "title": "2025-11-15 七十二家房客:黄金冰(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b2c355ec0880826e2c6247cfb35cc9d2.jpg", + "releasedAt": 1763213340000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176321562956.m3u8", + "raw": { + "id": "552ff4ab2710958e0feadf1b99fd6632", + "title": "2025-11-15 七十二家房客:黄金冰(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b2c355ec0880826e2c6247cfb35cc9d2.jpg", + "contentType": 3, + "releasedAt": 1763213340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176321562956.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a90225300a5444ef76dbb3d2a9185cfd", + "title": "2025-11-15 七十二家房客:黄金冰(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/af7e1b0cbb247e297aac59584000ba10.jpg", + "releasedAt": 1763211780000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176321394938.m3u8", + "raw": { + "id": "a90225300a5444ef76dbb3d2a9185cfd", + "title": "2025-11-15 七十二家房客:黄金冰(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/af7e1b0cbb247e297aac59584000ba10.jpg", + "contentType": 3, + "releasedAt": 1763211780000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176321394938.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ffa4697c345fd5644a9b2bc5fb1687c4", + "title": "2025-11-14 七十二家房客:十月螺肉香(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/f347e15c7a0f4e7854f0126ebe43cb0f.jpg", + "releasedAt": 1763134860000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176319479696.m3u8", + "raw": { + "id": "ffa4697c345fd5644a9b2bc5fb1687c4", + "title": "2025-11-14 七十二家房客:十月螺肉香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/f347e15c7a0f4e7854f0126ebe43cb0f.jpg", + "contentType": 3, + "releasedAt": 1763134860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176319479696.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a859695fb0434f0d33d699992e7e235f", + "title": "2025-11-14 七十二家房客:十月螺肉香(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/4c8fe465949593e833d560fcc9a269e0.jpg", + "releasedAt": 1763133600000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176319464729.m3u8", + "raw": { + "id": "a859695fb0434f0d33d699992e7e235f", + "title": "2025-11-14 七十二家房客:十月螺肉香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/4c8fe465949593e833d560fcc9a269e0.jpg", + "contentType": 3, + "releasedAt": 1763133600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176319464729.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9deb6109327579363b11a1dd85260e22", + "title": "2025-11-14 七十二家房客:取之有道(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/23062d0a18567fd8ad8fd2138e02d888.jpg", + "releasedAt": 1763129700000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176319422775.m3u8", + "raw": { + "id": "9deb6109327579363b11a1dd85260e22", + "title": "2025-11-14 七十二家房客:取之有道(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/23062d0a18567fd8ad8fd2138e02d888.jpg", + "contentType": 3, + "releasedAt": 1763129700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176319422775.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "098e494bbaaf8c9016e1397de733e691", + "title": "2025-11-14 七十二家房客:取之有道(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/e66e2917d365ab5088d245a9e148e74e.jpg", + "releasedAt": 1763128440000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176319401872.m3u8", + "raw": { + "id": "098e494bbaaf8c9016e1397de733e691", + "title": "2025-11-14 七十二家房客:取之有道(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/e66e2917d365ab5088d245a9e148e74e.jpg", + "contentType": 3, + "releasedAt": 1763128440000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176319401872.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c647e2c0cc2db3e3f12fc03672760f3e", + "title": "2025-11-14 七十二家房客:清流浊流(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/0ba79377d6731fb66ed200d6b99fcbf6.jpg", + "releasedAt": 1763126880000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176319368830.m3u8", + "raw": { + "id": "c647e2c0cc2db3e3f12fc03672760f3e", + "title": "2025-11-14 七十二家房客:清流浊流(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/0ba79377d6731fb66ed200d6b99fcbf6.jpg", + "contentType": 3, + "releasedAt": 1763126880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176319368830.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a52936ab9863f606e284ca9189e9f0be", + "title": "2025-11-14 七十二家房客:清流浊流(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/9e752be214142f88db90f4f79ee10224.jpg", + "releasedAt": 1763125320000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176319314622.m3u8", + "raw": { + "id": "a52936ab9863f606e284ca9189e9f0be", + "title": "2025-11-14 七十二家房客:清流浊流(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/9e752be214142f88db90f4f79ee10224.jpg", + "contentType": 3, + "releasedAt": 1763125320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176319314622.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e90ddc43b84c366df9c10bfa77652921", + "title": "2025-11-13 七十二家房客:孙锦珍的报复(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ee4fd84d6f6c5effa381e95cdd4f8eb6.jpg", + "releasedAt": 1763048400000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176310398891.m3u8", + "raw": { + "id": "e90ddc43b84c366df9c10bfa77652921", + "title": "2025-11-13 七十二家房客:孙锦珍的报复(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/ee4fd84d6f6c5effa381e95cdd4f8eb6.jpg", + "contentType": 3, + "releasedAt": 1763048400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176310398891.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e3f7ffa8f73d91ecd40c612b809ac819", + "title": "2025-11-13 七十二家房客:孙锦珍的报复(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/66c96700bb813192cb0341e0aaac6659.jpg", + "releasedAt": 1763047140000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176310392880.m3u8", + "raw": { + "id": "e3f7ffa8f73d91ecd40c612b809ac819", + "title": "2025-11-13 七十二家房客:孙锦珍的报复(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/66c96700bb813192cb0341e0aaac6659.jpg", + "contentType": 3, + "releasedAt": 1763047140000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176310392880.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2cd1134c33141257987de7d628c6dc0a", + "title": "2025-11-13 七十二家房客:猪脚姜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2d6e8d8f398ab7ef3f15dbf1a2e8a042.jpg", + "releasedAt": 1763045880000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176310344821.m3u8", + "raw": { + "id": "2cd1134c33141257987de7d628c6dc0a", + "title": "2025-11-13 七十二家房客:猪脚姜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2d6e8d8f398ab7ef3f15dbf1a2e8a042.jpg", + "contentType": 3, + "releasedAt": 1763045880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176310344821.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0dd12e4c304f940bb3766cf5d1099e7b", + "title": "2025-11-13 七十二家房客:猪脚姜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5c594fdd94cfd4638df18866f1de4eaf.jpg", + "releasedAt": 1763044620000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176310335778.m3u8", + "raw": { + "id": "0dd12e4c304f940bb3766cf5d1099e7b", + "title": "2025-11-13 七十二家房客:猪脚姜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5c594fdd94cfd4638df18866f1de4eaf.jpg", + "contentType": 3, + "releasedAt": 1763044620000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176310335778.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b939c59c402c55bc765d7045d6de5daa", + "title": "2025-11-13 七十二家房客:乌龙产子记(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2026/01/74499066a2f90085eef8c316dc5ce949.jpg", + "releasedAt": 1763043360000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202601/176304647532.m3u8", + "raw": { + "id": "b939c59c402c55bc765d7045d6de5daa", + "title": "2025-11-13 七十二家房客:乌龙产子记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2026/01/74499066a2f90085eef8c316dc5ce949.jpg", + "contentType": 3, + "releasedAt": 1763043360000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202601/176304647532.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "01f4a5e7b6df8dac773f43446f5cebed", + "title": "2025-11-13 七十二家房客:乌龙产子记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9baa0dbbd3c92674e6be3246be3bb663.jpg", + "releasedAt": 1763043360000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176304647532.m3u8", + "raw": { + "id": "01f4a5e7b6df8dac773f43446f5cebed", + "title": "2025-11-13 七十二家房客:乌龙产子记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9baa0dbbd3c92674e6be3246be3bb663.jpg", + "contentType": 3, + "releasedAt": 1763043360000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176304647532.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a348f14de8106bf3a1840c3072cdefd3", + "title": "2025-11-13 七十二家房客:乌龙产子记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a792bccaa71e0d7cb3fbd5eb293f1a95.jpg", + "releasedAt": 1763042100000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176304590566.m3u8", + "raw": { + "id": "a348f14de8106bf3a1840c3072cdefd3", + "title": "2025-11-13 七十二家房客:乌龙产子记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a792bccaa71e0d7cb3fbd5eb293f1a95.jpg", + "contentType": 3, + "releasedAt": 1763042100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176304590566.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "08a289b8644258b3ed1892f3e496dd52", + "title": "2025-11-13 七十二家房客:续租记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c5d0b119c002f2aa78f1f88a25506b2a.jpg", + "releasedAt": 1763040480000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176304584581.m3u8", + "raw": { + "id": "08a289b8644258b3ed1892f3e496dd52", + "title": "2025-11-13 七十二家房客:续租记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c5d0b119c002f2aa78f1f88a25506b2a.jpg", + "contentType": 3, + "releasedAt": 1763040480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176304584581.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3a67e60a1d92aa1524f79d03eb72911e", + "title": "2025-11-13 七十二家房客:续租记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1bd5242628b51c621482dbe024e7fdbb.jpg", + "releasedAt": 1763038920000, + "timeLength": 1252, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176304521626.m3u8", + "raw": { + "id": "3a67e60a1d92aa1524f79d03eb72911e", + "title": "2025-11-13 七十二家房客:续租记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1bd5242628b51c621482dbe024e7fdbb.jpg", + "contentType": 3, + "releasedAt": 1763038920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176304521626.m3u8\"}", + "timeLength": 1252, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99eaf04d02347dc0fb1034137fe1cccb", + "title": "2025-11-12 七十二家房客:舞厅新人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/429a8968e1cdd6d11239f25fc6dd552a.jpg", + "releasedAt": 1762962000000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301931436.m3u8", + "raw": { + "id": "99eaf04d02347dc0fb1034137fe1cccb", + "title": "2025-11-12 七十二家房客:舞厅新人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/429a8968e1cdd6d11239f25fc6dd552a.jpg", + "contentType": 3, + "releasedAt": 1762962000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301931436.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f7f2faf4c87f3bd1449b6ac4eaca38b9", + "title": "2025-11-12 七十二家房客:舞厅新人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/356097bf88ccd60a469e679b8b29cce6.jpg", + "releasedAt": 1762960740000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301895337.m3u8", + "raw": { + "id": "f7f2faf4c87f3bd1449b6ac4eaca38b9", + "title": "2025-11-12 七十二家房客:舞厅新人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/356097bf88ccd60a469e679b8b29cce6.jpg", + "contentType": 3, + "releasedAt": 1762960740000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301895337.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7401971a43fa0500816b52f4142a9479", + "title": "2025-11-12 七十二家房客:深水食堂", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/590ad11fb6c0844536060fc02aed4493.jpg", + "releasedAt": 1762959480000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301877386.m3u8", + "raw": { + "id": "7401971a43fa0500816b52f4142a9479", + "title": "2025-11-12 七十二家房客:深水食堂", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/590ad11fb6c0844536060fc02aed4493.jpg", + "contentType": 3, + "releasedAt": 1762959480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301877386.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "de333e2d3f6be1d2438e57eb2e7a295c", + "title": "2025-11-12 七十二家房客:迟来的道歉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e201116c1101111d29c8be286b93acbc.jpg", + "releasedAt": 1762958220000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301841343.m3u8", + "raw": { + "id": "de333e2d3f6be1d2438e57eb2e7a295c", + "title": "2025-11-12 七十二家房客:迟来的道歉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e201116c1101111d29c8be286b93acbc.jpg", + "contentType": 3, + "releasedAt": 1762958220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301841343.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5efb0f54c211ab56cb6c69ea9d67a74c", + "title": "2025-11-12 七十二家房客:绑架案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b7eb84aa85041b6e60ac2d981c5733dc.jpg", + "releasedAt": 1762956960000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301826391.m3u8", + "raw": { + "id": "5efb0f54c211ab56cb6c69ea9d67a74c", + "title": "2025-11-12 七十二家房客:绑架案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/b7eb84aa85041b6e60ac2d981c5733dc.jpg", + "contentType": 3, + "releasedAt": 1762956960000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301826391.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9dd1d13b4c38afd8e7930335620a8acc", + "title": "2025-11-12 七十二家房客:绑架案(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c4e7b17a89ff69355627acb8e28b0bce.jpg", + "releasedAt": 1762955640000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301781279.m3u8", + "raw": { + "id": "9dd1d13b4c38afd8e7930335620a8acc", + "title": "2025-11-12 七十二家房客:绑架案(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c4e7b17a89ff69355627acb8e28b0bce.jpg", + "contentType": 3, + "releasedAt": 1762955640000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301781279.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "01a9d5d68c5b8cd51323e232f6cf8622", + "title": "2025-11-12 七十二家房客:真兄弟假兄弟(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e540c3ad9730e5a85352f4b8550c8749.jpg", + "releasedAt": 1762954080000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301742236.m3u8", + "raw": { + "id": "01a9d5d68c5b8cd51323e232f6cf8622", + "title": "2025-11-12 七十二家房客:真兄弟假兄弟(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e540c3ad9730e5a85352f4b8550c8749.jpg", + "contentType": 3, + "releasedAt": 1762954080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301742236.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "738ece7e3281796a33a58047f771fc4d", + "title": "2025-11-12 七十二家房客:真兄弟假兄弟(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/66c4aac3fc564d9724e9c7a9bb393742.jpg", + "releasedAt": 1762952520000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176301727122.m3u8", + "raw": { + "id": "738ece7e3281796a33a58047f771fc4d", + "title": "2025-11-12 七十二家房客:真兄弟假兄弟(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/66c4aac3fc564d9724e9c7a9bb393742.jpg", + "contentType": 3, + "releasedAt": 1762952520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176301727122.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "105f38e86795106702358bfb1d572fe7", + "title": "2025-11-11 七十二家房客:回头未晚(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d627ae05ab5c92fed1f4bf72e3a33b5a.jpg", + "releasedAt": 1762871820000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176292071146.m3u8", + "raw": { + "id": "105f38e86795106702358bfb1d572fe7", + "title": "2025-11-11 七十二家房客:回头未晚(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d627ae05ab5c92fed1f4bf72e3a33b5a.jpg", + "contentType": 3, + "releasedAt": 1762871820000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176292071146.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d8a4f01897cfb00da68083b1c586b165", + "title": "2025-11-11 七十二家房客:回头未晚(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5f1447959ff77c0e7873b690d87a7e81.jpg", + "releasedAt": 1762870560000, + "timeLength": 1261, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176292041114.m3u8", + "raw": { + "id": "d8a4f01897cfb00da68083b1c586b165", + "title": "2025-11-11 七十二家房客:回头未晚(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5f1447959ff77c0e7873b690d87a7e81.jpg", + "contentType": 3, + "releasedAt": 1762870560000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176292041114.m3u8\"}", + "timeLength": 1261, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c8d6eb810ba7e72643c2e0db8e29606d", + "title": "2025-11-11 七十二家房客:回头未晚(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d857c731b5bc88b0795098f7260f24e5.jpg", + "releasedAt": 1762869240000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176292017110.m3u8", + "raw": { + "id": "c8d6eb810ba7e72643c2e0db8e29606d", + "title": "2025-11-11 七十二家房客:回头未晚(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d857c731b5bc88b0795098f7260f24e5.jpg", + "contentType": 3, + "releasedAt": 1762869240000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176292017110.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "db5f1c109e669309b8afccbadc868ae4", + "title": "2025-11-11 七十二家房客:救赎(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f4e382362ae692ee6d70acf1005106f0.jpg", + "releasedAt": 1762867680000, + "timeLength": 1313, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176291987133.m3u8", + "raw": { + "id": "db5f1c109e669309b8afccbadc868ae4", + "title": "2025-11-11 七十二家房客:救赎(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f4e382362ae692ee6d70acf1005106f0.jpg", + "contentType": 3, + "releasedAt": 1762867680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176291987133.m3u8\"}", + "timeLength": 1313, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6dc52b368f7c6fa6bd02ef849958d269", + "title": "2025-11-11 七十二家房客:救赎(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/40aa93dd811441473f257f8fba8be199.jpg", + "releasedAt": 1762866120000, + "timeLength": 1320, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176291960169.m3u8", + "raw": { + "id": "6dc52b368f7c6fa6bd02ef849958d269", + "title": "2025-11-11 七十二家房客:救赎(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/40aa93dd811441473f257f8fba8be199.jpg", + "contentType": 3, + "releasedAt": 1762866120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176291960169.m3u8\"}", + "timeLength": 1320, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cea855e25a471528025ade821f398bb3", + "title": "2025-11-10 七十二家房客:布拉肠与捞粉(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/de6b9b10fd3399e16feb80d44524569e.jpg", + "releasedAt": 1762785480000, + "timeLength": 1238, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176287622428.m3u8", + "raw": { + "id": "cea855e25a471528025ade821f398bb3", + "title": "2025-11-10 七十二家房客:布拉肠与捞粉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/de6b9b10fd3399e16feb80d44524569e.jpg", + "contentType": 3, + "releasedAt": 1762785480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176287622428.m3u8\"}", + "timeLength": 1238, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "384b3e573861fe2a1e9c8d2788491ca2", + "title": "2025-11-10 七十二家房客:此情可待成追忆(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5db5d3e685212a935f589ac16199b4ce.jpg", + "releasedAt": 1762784220000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176287574326.m3u8", + "raw": { + "id": "384b3e573861fe2a1e9c8d2788491ca2", + "title": "2025-11-10 七十二家房客:此情可待成追忆(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5db5d3e685212a935f589ac16199b4ce.jpg", + "contentType": 3, + "releasedAt": 1762784220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176287574326.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6fa5ad0457c95e427f6fdc5fa6c567c4", + "title": "2025-11-10 七十二家房客:此情可待成追忆(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8f06932d3f073c3486d6a995a1a0a683.jpg", + "releasedAt": 1762782900000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176287556395.m3u8", + "raw": { + "id": "6fa5ad0457c95e427f6fdc5fa6c567c4", + "title": "2025-11-10 七十二家房客:此情可待成追忆(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8f06932d3f073c3486d6a995a1a0a683.jpg", + "contentType": 3, + "releasedAt": 1762782900000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176287556395.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2d1f0ce3222fb697563e39a512d48292", + "title": "2025-11-10 七十二家房客:不做浮萍无依靠(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6624a02463a7d8e6def865c4a1aeabc9.jpg", + "releasedAt": 1762781280000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176287497097.m3u8", + "raw": { + "id": "2d1f0ce3222fb697563e39a512d48292", + "title": "2025-11-10 七十二家房客:不做浮萍无依靠(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6624a02463a7d8e6def865c4a1aeabc9.jpg", + "contentType": 3, + "releasedAt": 1762781280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176287497097.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1df561b1e848e483b7ff04bce9068970", + "title": "2025-11-10 七十二家房客:不做浮萍无依靠(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/547899cb0442dc8d99d3c20ff6032924.jpg", + "releasedAt": 1762779540000, + "timeLength": 1397, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176286574883.m3u8", + "raw": { + "id": "1df561b1e848e483b7ff04bce9068970", + "title": "2025-11-10 七十二家房客:不做浮萍无依靠(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/547899cb0442dc8d99d3c20ff6032924.jpg", + "contentType": 3, + "releasedAt": 1762779540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176286574883.m3u8\"}", + "timeLength": 1397, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c7a5919b509186c06651162dea5d38fb", + "title": "2025-11-09 七十二家房客:阿凤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c90498d66ca8d92cf7e114e2b9fb3eff.jpg", + "releasedAt": 1762696080000, + "timeLength": 2561, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176275641633.m3u8", + "raw": { + "id": "c7a5919b509186c06651162dea5d38fb", + "title": "2025-11-09 七十二家房客:阿凤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c90498d66ca8d92cf7e114e2b9fb3eff.jpg", + "contentType": 3, + "releasedAt": 1762696080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176275641633.m3u8\"}", + "timeLength": 2561, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b00d0d522cce618835a151192c53af1f", + "title": "2025-11-09 七十二家房客:左右逢墙(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/831a227b094f8c25cd9cc7bee6144689.jpg", + "releasedAt": 1762694820000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176275551232.m3u8", + "raw": { + "id": "b00d0d522cce618835a151192c53af1f", + "title": "2025-11-09 七十二家房客:左右逢墙(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/831a227b094f8c25cd9cc7bee6144689.jpg", + "contentType": 3, + "releasedAt": 1762694820000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176275551232.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5a8667d47ae5ff3fe62feaeaacf310e9", + "title": "2025-11-09 七十二家房客:左右逢墙(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9d740a626b0fbd9c1151185c1ef74cf3.jpg", + "releasedAt": 1762693260000, + "timeLength": 1300, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176275497339.m3u8", + "raw": { + "id": "5a8667d47ae5ff3fe62feaeaacf310e9", + "title": "2025-11-09 七十二家房客:左右逢墙(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9d740a626b0fbd9c1151185c1ef74cf3.jpg", + "contentType": 3, + "releasedAt": 1762693260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176275497339.m3u8\"}", + "timeLength": 1300, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "efd24b515767a6b28012d360c4ff52e4", + "title": "2025-11-08 七十二家房客:攀龙附凤(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/24d0de33308ee36f1daaf2c699e26ce1.jpg", + "releasedAt": 1762615260000, + "timeLength": 2476, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176262080671.m3u8", + "raw": { + "id": "efd24b515767a6b28012d360c4ff52e4", + "title": "2025-11-08 七十二家房客:攀龙附凤(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/24d0de33308ee36f1daaf2c699e26ce1.jpg", + "contentType": 3, + "releasedAt": 1762615260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176262080671.m3u8\"}", + "timeLength": 2476, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8ed18e9dc3467471db111240951ab2d6", + "title": "2025-11-08 七十二家房客:母痴子孝(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/0426e3a2fbde6fc7e963da01e1c95d89.jpg", + "releasedAt": 1762608420000, + "timeLength": 1226, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176261849561.m3u8", + "raw": { + "id": "8ed18e9dc3467471db111240951ab2d6", + "title": "2025-11-08 七十二家房客:母痴子孝(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/0426e3a2fbde6fc7e963da01e1c95d89.jpg", + "contentType": 3, + "releasedAt": 1762608420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176261849561.m3u8\"}", + "timeLength": 1226, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f29fb5c145b4ea7e6b269ac81218e835", + "title": "2025-11-08 七十二家房客:母痴子孝(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/79bc29f2dedeb62d253b426cd199dcc6.jpg", + "releasedAt": 1762606860000, + "timeLength": 1321, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176261837438.m3u8", + "raw": { + "id": "f29fb5c145b4ea7e6b269ac81218e835", + "title": "2025-11-08 七十二家房客:母痴子孝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/79bc29f2dedeb62d253b426cd199dcc6.jpg", + "contentType": 3, + "releasedAt": 1762606860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176261837438.m3u8\"}", + "timeLength": 1321, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f104b54b9ee911b78f09d13e2d974fcf", + "title": "2025-11-07 七十二家房客:暗度陈仓(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3955ae453f85e14f243e8e40a50c85a4.jpg", + "releasedAt": 1762528800000, + "timeLength": 2477, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176258835927.m3u8", + "raw": { + "id": "f104b54b9ee911b78f09d13e2d974fcf", + "title": "2025-11-07 七十二家房客:暗度陈仓(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3955ae453f85e14f243e8e40a50c85a4.jpg", + "contentType": 3, + "releasedAt": 1762528800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176258835927.m3u8\"}", + "timeLength": 2477, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b869b41cbd54d1f682920cc20046625b", + "title": "2025-11-07 七十二家房客:燕分飞(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1468f8402aeba8fea548a85308585127.jpg", + "releasedAt": 1762523640000, + "timeLength": 2537, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176258814835.m3u8", + "raw": { + "id": "b869b41cbd54d1f682920cc20046625b", + "title": "2025-11-07 七十二家房客:燕分飞(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1468f8402aeba8fea548a85308585127.jpg", + "contentType": 3, + "releasedAt": 1762523640000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176258814835.m3u8\"}", + "timeLength": 2537, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2d7761713b77728ce5f33b99690ccf6c", + "title": "2025-11-07 七十二家房客:买枪记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a9edeb38930232964729de8ed02248a3.jpg", + "releasedAt": 1762522080000, + "timeLength": 1314, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176258718978.m3u8", + "raw": { + "id": "2d7761713b77728ce5f33b99690ccf6c", + "title": "2025-11-07 七十二家房客:买枪记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a9edeb38930232964729de8ed02248a3.jpg", + "contentType": 3, + "releasedAt": 1762522080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176258718978.m3u8\"}", + "timeLength": 1314, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "836d652b974f3b223a272b95a64d2cb1", + "title": "2025-11-07 七十二家房客:买枪记(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/0d4aa6652368dd843e460d04efe43a47.jpg", + "releasedAt": 1762520520000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176258703820.m3u8", + "raw": { + "id": "836d652b974f3b223a272b95a64d2cb1", + "title": "2025-11-07 七十二家房客:买枪记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/11/0d4aa6652368dd843e460d04efe43a47.jpg", + "contentType": 3, + "releasedAt": 1762520520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176258703820.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "feb225eac329e809ce841e0d5c7767ad", + "title": "2025-11-06 七十二家房客:我不要享清福(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6676905c58609b752ca1a8fad169542a.jpg", + "releasedAt": 1762443660000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249364980.m3u8", + "raw": { + "id": "feb225eac329e809ce841e0d5c7767ad", + "title": "2025-11-06 七十二家房客:我不要享清福(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6676905c58609b752ca1a8fad169542a.jpg", + "contentType": 3, + "releasedAt": 1762443660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249364980.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d76aadd0563489d0835cc64a07545407", + "title": "2025-11-06 七十二家房客:我不要享清福(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8f58141e6fb33f9dd3755712024bdd34.jpg", + "releasedAt": 1762442400000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249355953.m3u8", + "raw": { + "id": "d76aadd0563489d0835cc64a07545407", + "title": "2025-11-06 七十二家房客:我不要享清福(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8f58141e6fb33f9dd3755712024bdd34.jpg", + "contentType": 3, + "releasedAt": 1762442400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249355953.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "516b061d385abf22352ea8fec30b4eb8", + "title": "2025-11-06 七十二家房客:鱼生的秘密(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/50161cb72b663647dafdef2b8b436ccc.jpg", + "releasedAt": 1762441080000, + "timeLength": 1241, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249304852.m3u8", + "raw": { + "id": "516b061d385abf22352ea8fec30b4eb8", + "title": "2025-11-06 七十二家房客:鱼生的秘密(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/50161cb72b663647dafdef2b8b436ccc.jpg", + "contentType": 3, + "releasedAt": 1762441080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249304852.m3u8\"}", + "timeLength": 1241, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f49cec0fdbd9656017811d847f00de2f", + "title": "2025-11-06 七十二家房客:鱼生的秘密(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3ed9da4eaa3a22f6b321da9c7aca3ae1.jpg", + "releasedAt": 1762439880000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249301993.m3u8", + "raw": { + "id": "f49cec0fdbd9656017811d847f00de2f", + "title": "2025-11-06 七十二家房客:鱼生的秘密(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3ed9da4eaa3a22f6b321da9c7aca3ae1.jpg", + "contentType": 3, + "releasedAt": 1762439880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249301993.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba90e2aecb21b81aa4e47fa3cdba3bdc", + "title": "2025-11-06 七十二家房客:风声(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1e307f1485deff8813cdc5dae619ea1d.jpg", + "releasedAt": 1762438620000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249250859.m3u8", + "raw": { + "id": "ba90e2aecb21b81aa4e47fa3cdba3bdc", + "title": "2025-11-06 七十二家房客:风声(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1e307f1485deff8813cdc5dae619ea1d.jpg", + "contentType": 3, + "releasedAt": 1762438620000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249250859.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6acad437bc97ca701f119b18e0085547", + "title": "2025-11-06 七十二家房客:风声(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a26b0bd0144607ab70a2e0f29ce85dad.jpg", + "releasedAt": 1762437300000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249244860.m3u8", + "raw": { + "id": "6acad437bc97ca701f119b18e0085547", + "title": "2025-11-06 七十二家房客:风声(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a26b0bd0144607ab70a2e0f29ce85dad.jpg", + "contentType": 3, + "releasedAt": 1762437300000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249244860.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "15dc127559eae7af2e1276a8a04fd795", + "title": "2025-11-06 七十二家房客:虎落平阳", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3b5a461a3fb50ab6d443dbd8a55c1078.jpg", + "releasedAt": 1762435680000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249196898.m3u8", + "raw": { + "id": "15dc127559eae7af2e1276a8a04fd795", + "title": "2025-11-06 七十二家房客:虎落平阳", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/3b5a461a3fb50ab6d443dbd8a55c1078.jpg", + "contentType": 3, + "releasedAt": 1762435680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249196898.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4865fe8759b26492ecbb1eb698e29f98", + "title": "2025-11-06 七十二家房客:美女生意", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9165576887de5ae01adbde635baf8f6e.jpg", + "releasedAt": 1762434120000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176249191265.m3u8", + "raw": { + "id": "4865fe8759b26492ecbb1eb698e29f98", + "title": "2025-11-06 七十二家房客:美女生意", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/9165576887de5ae01adbde635baf8f6e.jpg", + "contentType": 3, + "releasedAt": 1762434120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176249191265.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b613697be4199037701b19b5956ad9db", + "title": "2025-11-05 七十二家房客:不义兄弟(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4e19347a99d40b15101d8922d3f20df5.jpg", + "releasedAt": 1762357260000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241412926.m3u8", + "raw": { + "id": "b613697be4199037701b19b5956ad9db", + "title": "2025-11-05 七十二家房客:不义兄弟(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4e19347a99d40b15101d8922d3f20df5.jpg", + "contentType": 3, + "releasedAt": 1762357260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241412926.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fcb6e97f3cd1d9c775fe4f40d05bbdf9", + "title": "2025-11-05 七十二家房客:不义兄弟(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f18d4c1ae07515de35caa8f830b3a1c1.jpg", + "releasedAt": 1762356000000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241364544.m3u8", + "raw": { + "id": "fcb6e97f3cd1d9c775fe4f40d05bbdf9", + "title": "2025-11-05 七十二家房客:不义兄弟(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f18d4c1ae07515de35caa8f830b3a1c1.jpg", + "contentType": 3, + "releasedAt": 1762356000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241364544.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ebaf4e8fcbc1cb551ae5aa578a90910b", + "title": "2025-11-05 七十二家房客:第四者(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/bfe01d1f384e225db6fd0abddf104024.jpg", + "releasedAt": 1762354680000, + "timeLength": 1252, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241358633.m3u8", + "raw": { + "id": "ebaf4e8fcbc1cb551ae5aa578a90910b", + "title": "2025-11-05 七十二家房客:第四者(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/bfe01d1f384e225db6fd0abddf104024.jpg", + "contentType": 3, + "releasedAt": 1762354680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241358633.m3u8\"}", + "timeLength": 1252, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "25f421ef3a2da23242c45ea65f9b6b9b", + "title": "2025-11-05 七十二家房客:第四者(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f76eac38ec895cf3cbbda1aa4b6c6407.jpg", + "releasedAt": 1762353420000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241307484.m3u8", + "raw": { + "id": "25f421ef3a2da23242c45ea65f9b6b9b", + "title": "2025-11-05 七十二家房客:第四者(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f76eac38ec895cf3cbbda1aa4b6c6407.jpg", + "contentType": 3, + "releasedAt": 1762353420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241307484.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cda666d0a524cb85634ad1fd59062a9b", + "title": "2025-11-05 七十二家房客:巡城马(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/18bb2879a543d83b3f115b790efd3058.jpg", + "releasedAt": 1762352220000, + "timeLength": 1238, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241304447.m3u8", + "raw": { + "id": "cda666d0a524cb85634ad1fd59062a9b", + "title": "2025-11-05 七十二家房客:巡城马(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/18bb2879a543d83b3f115b790efd3058.jpg", + "contentType": 3, + "releasedAt": 1762352220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241304447.m3u8\"}", + "timeLength": 1238, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f119bc8f0990429c152815372834e0df", + "title": "2025-11-05 七十二家房客:巡城马(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/869f342beedcb96b4eaa4bfb698b4425.jpg", + "releasedAt": 1762350900000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241247543.m3u8", + "raw": { + "id": "f119bc8f0990429c152815372834e0df", + "title": "2025-11-05 七十二家房客:巡城马(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/869f342beedcb96b4eaa4bfb698b4425.jpg", + "contentType": 3, + "releasedAt": 1762350900000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241247543.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b1403e437cd34c099936b4cb1c000e15", + "title": "2025-11-05 七十二家房客:阿发的礼服(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4a3b4aad5d394828af0e0330af1dbac8.jpg", + "releasedAt": 1762349280000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241178493.m3u8", + "raw": { + "id": "b1403e437cd34c099936b4cb1c000e15", + "title": "2025-11-05 七十二家房客:阿发的礼服(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4a3b4aad5d394828af0e0330af1dbac8.jpg", + "contentType": 3, + "releasedAt": 1762349280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241178493.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "061d30ada081716379e19031c0161454", + "title": "2025-11-05 七十二家房客:阿发的礼服(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/eb34dae0bdb542b315008a2ee8a11def.jpg", + "releasedAt": 1762347720000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176241118415.m3u8", + "raw": { + "id": "061d30ada081716379e19031c0161454", + "title": "2025-11-05 七十二家房客:阿发的礼服(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/eb34dae0bdb542b315008a2ee8a11def.jpg", + "contentType": 3, + "releasedAt": 1762347720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176241118415.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b7fa6c36f3bdb01864c468d7e62fa489", + "title": "2025-11-04 七十二家房客:执妈的故事", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e3b5a579d6b54503f5db564bd27ab70b.jpg", + "releasedAt": 1762266960000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176231223439.m3u8", + "raw": { + "id": "b7fa6c36f3bdb01864c468d7e62fa489", + "title": "2025-11-04 七十二家房客:执妈的故事", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/e3b5a579d6b54503f5db564bd27ab70b.jpg", + "contentType": 3, + "releasedAt": 1762266960000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176231223439.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1f4203e0e7f24823b7c945fa591fbc30", + "title": "2025-11-04 七十二家房客:两只老虎(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/eacb814eb2a9949952de1248184ae956.jpg", + "releasedAt": 1762265700000, + "timeLength": 1239, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176231205389.m3u8", + "raw": { + "id": "1f4203e0e7f24823b7c945fa591fbc30", + "title": "2025-11-04 七十二家房客:两只老虎(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/eacb814eb2a9949952de1248184ae956.jpg", + "contentType": 3, + "releasedAt": 1762265700000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176231205389.m3u8\"}", + "timeLength": 1239, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "badf576d9a88819ee78ebdd8abc4d93f", + "title": "2025-11-04 七十二家房客:两只老虎(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d4c38e3cba0f6721db9f405e1a0724e6.jpg", + "releasedAt": 1762264440000, + "timeLength": 1240, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176231166241.m3u8", + "raw": { + "id": "badf576d9a88819ee78ebdd8abc4d93f", + "title": "2025-11-04 七十二家房客:两只老虎(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d4c38e3cba0f6721db9f405e1a0724e6.jpg", + "contentType": 3, + "releasedAt": 1762264440000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176231166241.m3u8\"}", + "timeLength": 1240, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "abaa1ad8eabe41f0d5c09e3bd1d26ab9", + "title": "2025-11-04 七十二家房客:美救英雄", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2026ce5b466ee32be967834ef16200f7.jpg", + "releasedAt": 1762262880000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176231148260.m3u8", + "raw": { + "id": "abaa1ad8eabe41f0d5c09e3bd1d26ab9", + "title": "2025-11-04 七十二家房客:美救英雄", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2026ce5b466ee32be967834ef16200f7.jpg", + "contentType": 3, + "releasedAt": 1762262880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176231148260.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4c079ffd9dd28c83b7b863f77647ab33", + "title": "2025-11-04 七十二家房客:棍点正骨", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5a6732cef08bf7a0324e6ba50a489336.jpg", + "releasedAt": 1762261320000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176231097191.m3u8", + "raw": { + "id": "4c079ffd9dd28c83b7b863f77647ab33", + "title": "2025-11-04 七十二家房客:棍点正骨", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/5a6732cef08bf7a0324e6ba50a489336.jpg", + "contentType": 3, + "releasedAt": 1762261320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176231097191.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3d6ad161caadb7087b7e91578aeb6739", + "title": "2025-11-03 七十二家房客:蛇蝎美人(六)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6aa71c93a7372b48721796978d247c43.jpg", + "releasedAt": 1762183200000, + "timeLength": 2448, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176223853321.m3u8", + "raw": { + "id": "3d6ad161caadb7087b7e91578aeb6739", + "title": "2025-11-03 七十二家房客:蛇蝎美人(六)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6aa71c93a7372b48721796978d247c43.jpg", + "contentType": 3, + "releasedAt": 1762183200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176223853321.m3u8\"}", + "timeLength": 2448, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f61194ed8ffc69932f5f8ace92e9e91b", + "title": "2025-11-03 七十二家房客:蛇蝎美人(五)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d6157c747f442095a2799dd422761c7f.jpg", + "releasedAt": 1762180740000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176223712088.m3u8", + "raw": { + "id": "f61194ed8ffc69932f5f8ace92e9e91b", + "title": "2025-11-03 七十二家房客:蛇蝎美人(五)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/d6157c747f442095a2799dd422761c7f.jpg", + "contentType": 3, + "releasedAt": 1762180740000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176223712088.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bd35800e6f1b335de494ee8baa4bc81c", + "title": "2025-11-03 七十二家房客:蛇蝎美人(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/636ab023bdb62636f7de6fddc315cd5f.jpg", + "releasedAt": 1762179360000, + "timeLength": 1315, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176223700038.m3u8", + "raw": { + "id": "bd35800e6f1b335de494ee8baa4bc81c", + "title": "2025-11-03 七十二家房客:蛇蝎美人(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/636ab023bdb62636f7de6fddc315cd5f.jpg", + "contentType": 3, + "releasedAt": 1762179360000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176223700038.m3u8\"}", + "timeLength": 1315, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a3dee7f60d97723f301c83f4c779df72", + "title": "2025-11-03 七十二家房客:蛇蝎美人(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/bb0d424e07c17aac47df7ee2c172d3df.jpg", + "releasedAt": 1762178100000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176223658082.m3u8", + "raw": { + "id": "a3dee7f60d97723f301c83f4c779df72", + "title": "2025-11-03 七十二家房客:蛇蝎美人(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/bb0d424e07c17aac47df7ee2c172d3df.jpg", + "contentType": 3, + "releasedAt": 1762178100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176223658082.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e7a94dfeec1c159f0ad94b921a896bcf", + "title": "2025-11-03 七十二家房客:我在风中飘(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/73ff55362b15d590c3d3ccd3491392b6.jpg", + "releasedAt": 1762176480000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176223601081.m3u8", + "raw": { + "id": "e7a94dfeec1c159f0ad94b921a896bcf", + "title": "2025-11-03 七十二家房客:我在风中飘(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/73ff55362b15d590c3d3ccd3491392b6.jpg", + "contentType": 3, + "releasedAt": 1762176480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176223601081.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ee1b8d961b732a9050595223321553c1", + "title": "2025-11-03 七十二家房客:我在风中飘(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/aed932827de3eb6273dfce5e1b34e529.jpg", + "releasedAt": 1762174920000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176223547021.m3u8", + "raw": { + "id": "ee1b8d961b732a9050595223321553c1", + "title": "2025-11-03 七十二家房客:我在风中飘(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/aed932827de3eb6273dfce5e1b34e529.jpg", + "contentType": 3, + "releasedAt": 1762174920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176223547021.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3d0f9d8ec303c261af63299004dd5618", + "title": "2025-11-02 七十二家房客:军队之光(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a5085415265cb76bcfb0fcf836c0f488.jpg", + "releasedAt": 1762098120000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176215467169.m3u8", + "raw": { + "id": "3d0f9d8ec303c261af63299004dd5618", + "title": "2025-11-02 七十二家房客:军队之光(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/a5085415265cb76bcfb0fcf836c0f488.jpg", + "contentType": 3, + "releasedAt": 1762098120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176215467169.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cfb9df7e985346e54df76da9ca25ac69", + "title": "2025-11-02 七十二家房客:军队之光(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c7251fb0dda0ba07f154b9a8d1de8390.jpg", + "releasedAt": 1762096860000, + "timeLength": 1230, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176215455072.m3u8", + "raw": { + "id": "cfb9df7e985346e54df76da9ca25ac69", + "title": "2025-11-02 七十二家房客:军队之光(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/c7251fb0dda0ba07f154b9a8d1de8390.jpg", + "contentType": 3, + "releasedAt": 1762096860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176215455072.m3u8\"}", + "timeLength": 1230, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1afb2e890ebf91f3134b9794174243b1", + "title": "2025-11-02 七十二家房客:阿姐今年十八岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/658d1ed4d5923a99456517593e29ffb0.jpg", + "releasedAt": 1762090020000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176215409969.m3u8", + "raw": { + "id": "1afb2e890ebf91f3134b9794174243b1", + "title": "2025-11-02 七十二家房客:阿姐今年十八岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/658d1ed4d5923a99456517593e29ffb0.jpg", + "contentType": 3, + "releasedAt": 1762090020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176215409969.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8798cfbaf3cf810d1622ae2ca7cc539b", + "title": "2025-11-02 七十二家房客:阿姐今年十八岁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8602a74c1107bcfd695f2d4baaf3bd92.jpg", + "releasedAt": 1762088520000, + "timeLength": 1206, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176215403943.m3u8", + "raw": { + "id": "8798cfbaf3cf810d1622ae2ca7cc539b", + "title": "2025-11-02 七十二家房客:阿姐今年十八岁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8602a74c1107bcfd695f2d4baaf3bd92.jpg", + "contentType": 3, + "releasedAt": 1762088520000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176215403943.m3u8\"}", + "timeLength": 1206, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "686e356341d008aa79fcafc5ec7da994", + "title": "2025-11-01 七十二家房客:闪婚(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f24011ef0529825846b72a8f349cda81.jpg", + "releasedAt": 1762011600000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176207310640.m3u8", + "raw": { + "id": "686e356341d008aa79fcafc5ec7da994", + "title": "2025-11-01 七十二家房客:闪婚(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/f24011ef0529825846b72a8f349cda81.jpg", + "contentType": 3, + "releasedAt": 1762011600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176207310640.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1ee7143f3b3d1c8a375478ea3f63cdb8", + "title": "2025-11-01 七十二家房客:闪婚(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2cb922da3279362f1ac392170859c6de.jpg", + "releasedAt": 1762010400000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176207286554.m3u8", + "raw": { + "id": "1ee7143f3b3d1c8a375478ea3f63cdb8", + "title": "2025-11-01 七十二家房客:闪婚(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2cb922da3279362f1ac392170859c6de.jpg", + "contentType": 3, + "releasedAt": 1762010400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176207286554.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5ce6de0e94669e02b227561d28bce059", + "title": "2025-11-01 七十二家房客:梦想中的桃花源", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8ad82598c24c374c75d90a0d5d5664e1.jpg", + "releasedAt": 1762003680000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176207253487.m3u8", + "raw": { + "id": "5ce6de0e94669e02b227561d28bce059", + "title": "2025-11-01 七十二家房客:梦想中的桃花源", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/8ad82598c24c374c75d90a0d5d5664e1.jpg", + "contentType": 3, + "releasedAt": 1762003680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176207253487.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1d6e11823306b011fef858e28a0d614f", + "title": "2025-11-01 七十二家房客:石头记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1180a24eac445cd8048f70eeaa87258f.jpg", + "releasedAt": 1762002060000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176207226430.m3u8", + "raw": { + "id": "1d6e11823306b011fef858e28a0d614f", + "title": "2025-11-01 七十二家房客:石头记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/1180a24eac445cd8048f70eeaa87258f.jpg", + "contentType": 3, + "releasedAt": 1762002060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176207226430.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cf03c7e1301092d574fff51012439f93", + "title": "2025-10-31 七十二家房客:禄禄无为(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/97946a542f21d72257822f96edc1b06d.jpg", + "releasedAt": 1761925320000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176197076829.m3u8", + "raw": { + "id": "cf03c7e1301092d574fff51012439f93", + "title": "2025-10-31 七十二家房客:禄禄无为(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/97946a542f21d72257822f96edc1b06d.jpg", + "contentType": 3, + "releasedAt": 1761925320000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176197076829.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "63e19d1a82a39a469d02796e664c8bcd", + "title": "2025-10-31 七十二家房客:禄禄无为(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4a412b51963df6921286e5371b0bc2a3.jpg", + "releasedAt": 1761924120000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176197040866.m3u8", + "raw": { + "id": "63e19d1a82a39a469d02796e664c8bcd", + "title": "2025-10-31 七十二家房客:禄禄无为(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4a412b51963df6921286e5371b0bc2a3.jpg", + "contentType": 3, + "releasedAt": 1761924120000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176197040866.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e3fbbdd70dc81fe78ab5a19b2e7cc24c", + "title": "2025-10-31 七十二家房客:舍车保帅(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4bc3a6ebd891e95817c719415329a04f.jpg", + "releasedAt": 1761922860000, + "timeLength": 1220, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176197019822.m3u8", + "raw": { + "id": "e3fbbdd70dc81fe78ab5a19b2e7cc24c", + "title": "2025-10-31 七十二家房客:舍车保帅(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/4bc3a6ebd891e95817c719415329a04f.jpg", + "contentType": 3, + "releasedAt": 1761922860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176197019822.m3u8\"}", + "timeLength": 1220, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "055feee3d6fbcf280f58efdb5d40860c", + "title": "2025-10-31 七十二家房客:舍车保帅(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/505802dd66bab2b1750c8a2d4578faa3.jpg", + "releasedAt": 1761921600000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176196989711.m3u8", + "raw": { + "id": "055feee3d6fbcf280f58efdb5d40860c", + "title": "2025-10-31 七十二家房客:舍车保帅(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/505802dd66bab2b1750c8a2d4578faa3.jpg", + "contentType": 3, + "releasedAt": 1761921600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176196989711.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2f527d1c974fd5eb4b387f98cc860a48", + "title": "2025-10-31 七十二家房客:知恩图报(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6f4021d6ea31d576f08d49f449be4a27.jpg", + "releasedAt": 1761920340000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176196965953.m3u8", + "raw": { + "id": "2f527d1c974fd5eb4b387f98cc860a48", + "title": "2025-10-31 七十二家房客:知恩图报(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/6f4021d6ea31d576f08d49f449be4a27.jpg", + "contentType": 3, + "releasedAt": 1761920340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176196965953.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e8730539f7a77ffcfd55f9a9a76e1890", + "title": "2025-10-31 七十二家房客:知恩图报(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/0a27dc71b5de2b5fef94827547f85ec9.jpg", + "releasedAt": 1761919020000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176196933532.m3u8", + "raw": { + "id": "e8730539f7a77ffcfd55f9a9a76e1890", + "title": "2025-10-31 七十二家房客:知恩图报(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/0a27dc71b5de2b5fef94827547f85ec9.jpg", + "contentType": 3, + "releasedAt": 1761919020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176196933532.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8e53a3bbacf8141d8d58e540fdf5ebe3", + "title": "2025-10-31 七十二家房客:妇唱夫随(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2bab30a8329d47560f15e2ca5ea4e62c.jpg", + "releasedAt": 1761917460000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176196905772.m3u8", + "raw": { + "id": "8e53a3bbacf8141d8d58e540fdf5ebe3", + "title": "2025-10-31 七十二家房客:妇唱夫随(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/2bab30a8329d47560f15e2ca5ea4e62c.jpg", + "contentType": 3, + "releasedAt": 1761917460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176196905772.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5e549e4b6e7e34e336eb4ef0df6b6cb6", + "title": "2025-10-31 七十二家房客:妇唱夫随(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/05a06ea3cefcf62b40e01cebc2ab4e79.jpg", + "releasedAt": 1761915660000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176196878711.m3u8", + "raw": { + "id": "5e549e4b6e7e34e336eb4ef0df6b6cb6", + "title": "2025-10-31 七十二家房客:妇唱夫随(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/11/05a06ea3cefcf62b40e01cebc2ab4e79.jpg", + "contentType": 3, + "releasedAt": 1761915660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176196878711.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c24f2444f4b1ad5cd83e0f6366a735d7", + "title": "2025-10-30 七十二家房客:危险人物(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/58f552ab935471db66cf35e639a80394.jpg", + "releasedAt": 1761838920000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188702262.m3u8", + "raw": { + "id": "c24f2444f4b1ad5cd83e0f6366a735d7", + "title": "2025-10-30 七十二家房客:危险人物(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/58f552ab935471db66cf35e639a80394.jpg", + "contentType": 3, + "releasedAt": 1761838920000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188702262.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "93d25284a634a92ab995988cf500de46", + "title": "2025-10-30 七十二家房客:危险人物(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/4e0ca7fdfc7448d98833646b1f7cdae1.jpg", + "releasedAt": 1761837720000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188654232.m3u8", + "raw": { + "id": "93d25284a634a92ab995988cf500de46", + "title": "2025-10-30 七十二家房客:危险人物(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/4e0ca7fdfc7448d98833646b1f7cdae1.jpg", + "contentType": 3, + "releasedAt": 1761837720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188654232.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cb06c78569fc785c3ac595d4ecf60047", + "title": "2025-10-30 七十二家房客:桃色陷阱(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e9a7f754fff959aba0213ecbd2d8a59b.jpg", + "releasedAt": 1761836460000, + "timeLength": 1227, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188642297.m3u8", + "raw": { + "id": "cb06c78569fc785c3ac595d4ecf60047", + "title": "2025-10-30 七十二家房客:桃色陷阱(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e9a7f754fff959aba0213ecbd2d8a59b.jpg", + "contentType": 3, + "releasedAt": 1761836460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188642297.m3u8\"}", + "timeLength": 1227, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "51eb4f7e52f520bac91561e6d3d70f1f", + "title": "2025-10-30 七十二家房客:桃色陷阱(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/29a9dea38044321efb6f456e405d393b.jpg", + "releasedAt": 1761835200000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188339133.m3u8", + "raw": { + "id": "51eb4f7e52f520bac91561e6d3d70f1f", + "title": "2025-10-30 七十二家房客:桃色陷阱(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/29a9dea38044321efb6f456e405d393b.jpg", + "contentType": 3, + "releasedAt": 1761835200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188339133.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd78178303ca3fc3582f0efd43fbe8ee", + "title": "2025-10-30 七十二家房客:炳哥克星(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/f8e6b70a7dbbd5a753e7ff8b80488543.jpg", + "releasedAt": 1761833880000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188288063.m3u8", + "raw": { + "id": "dd78178303ca3fc3582f0efd43fbe8ee", + "title": "2025-10-30 七十二家房客:炳哥克星(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/f8e6b70a7dbbd5a753e7ff8b80488543.jpg", + "contentType": 3, + "releasedAt": 1761833880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188288063.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "64d578a569ef136fb54b0845ff41267c", + "title": "2025-10-30 七十二家房客:炳哥克星(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/cdfbe11d7ea9a5e51b49af951d8cf169.jpg", + "releasedAt": 1761832620000, + "timeLength": 1238, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188285029.m3u8", + "raw": { + "id": "64d578a569ef136fb54b0845ff41267c", + "title": "2025-10-30 七十二家房客:炳哥克星(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/cdfbe11d7ea9a5e51b49af951d8cf169.jpg", + "contentType": 3, + "releasedAt": 1761832620000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188285029.m3u8\"}", + "timeLength": 1238, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "faff34d3dd61a53dbacffad05a2391a8", + "title": "2025-10-30 七十二家房客:新官不上任", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/73d1debc17cbde103ed7719daca8bd46.jpg", + "releasedAt": 1761831060000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188234137.m3u8", + "raw": { + "id": "faff34d3dd61a53dbacffad05a2391a8", + "title": "2025-10-30 七十二家房客:新官不上任", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/73d1debc17cbde103ed7719daca8bd46.jpg", + "contentType": 3, + "releasedAt": 1761831060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188234137.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b5d49a6e6c2f25a7c25edc387167d260", + "title": "2025-10-30 七十二家房客:晒木棉花", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/f5176b818496e873882b3be686f6f54f.jpg", + "releasedAt": 1761829260000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176188228094.m3u8", + "raw": { + "id": "b5d49a6e6c2f25a7c25edc387167d260", + "title": "2025-10-30 七十二家房客:晒木棉花", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/f5176b818496e873882b3be686f6f54f.jpg", + "contentType": 3, + "releasedAt": 1761829260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176188228094.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a9a8a9f5cbc00ddaee4f64e91053c0c8", + "title": "2025-10-29 七十二家房客:信任(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/bc9b0ad85adbbc884211883890a4fe1c.jpg", + "releasedAt": 1761747540000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176182166852.m3u8", + "raw": { + "id": "a9a8a9f5cbc00ddaee4f64e91053c0c8", + "title": "2025-10-29 七十二家房客:信任(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/bc9b0ad85adbbc884211883890a4fe1c.jpg", + "contentType": 3, + "releasedAt": 1761747540000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176182166852.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ed6a7ede562afb15cfd4e15a7e824d3d", + "title": "2025-10-29 七十二家房客:信任(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/9a0f1f261439751c36da996302ca1f4c.jpg", + "releasedAt": 1761746220000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176182148811.m3u8", + "raw": { + "id": "ed6a7ede562afb15cfd4e15a7e824d3d", + "title": "2025-10-29 七十二家房客:信任(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/9a0f1f261439751c36da996302ca1f4c.jpg", + "contentType": 3, + "releasedAt": 1761746220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176182148811.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "828bc850f6ec4ca708d30ead4238235b", + "title": "2025-10-29 七十二家房客:地水南音(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/672fc20be9605720b6fb991faebfa09b.jpg", + "releasedAt": 1761744660000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176181599823.m3u8", + "raw": { + "id": "828bc850f6ec4ca708d30ead4238235b", + "title": "2025-10-29 七十二家房客:地水南音(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/672fc20be9605720b6fb991faebfa09b.jpg", + "contentType": 3, + "releasedAt": 1761744660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176181599823.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "db8b6ddb60acc18d74f6e5a4dde59d7f", + "title": "2025-10-29 七十二家房客:地水南音(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/81cda1b4d8087457160c50c249fa3cdc.jpg", + "releasedAt": 1761742860000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176181575751.m3u8", + "raw": { + "id": "db8b6ddb60acc18d74f6e5a4dde59d7f", + "title": "2025-10-29 七十二家房客:地水南音(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/81cda1b4d8087457160c50c249fa3cdc.jpg", + "contentType": 3, + "releasedAt": 1761742860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176181575751.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "acec428cd2e12c6b65cd53c2a94a78a5", + "title": "2025-10-28 七十二家房客:风月惜真情(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/9a77bc2c19da36bc47738baf34cd478c.jpg", + "releasedAt": 1761662340000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176173101628.m3u8", + "raw": { + "id": "acec428cd2e12c6b65cd53c2a94a78a5", + "title": "2025-10-28 七十二家房客:风月惜真情(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/9a77bc2c19da36bc47738baf34cd478c.jpg", + "contentType": 3, + "releasedAt": 1761662340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176173101628.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3bcd52b08cf8a11236e5b5fcee1d2d8c", + "title": "2025-10-28 七十二家房客:骨气(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/19454901f1867881bb154e01d0c2a1aa.jpg", + "releasedAt": 1761661080000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176173045054.m3u8", + "raw": { + "id": "3bcd52b08cf8a11236e5b5fcee1d2d8c", + "title": "2025-10-28 七十二家房客:骨气(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/19454901f1867881bb154e01d0c2a1aa.jpg", + "contentType": 3, + "releasedAt": 1761661080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176173045054.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d811a5795daead41df0700655af8e672", + "title": "2025-10-28 七十二家房客:骨气(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/0d9d2d6b1fefa9c709ff921c52a6341c.jpg", + "releasedAt": 1761659820000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176173032742.m3u8", + "raw": { + "id": "d811a5795daead41df0700655af8e672", + "title": "2025-10-28 七十二家房客:骨气(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/0d9d2d6b1fefa9c709ff921c52a6341c.jpg", + "contentType": 3, + "releasedAt": 1761659820000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176173032742.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d5b2ebf96902022a98a9f1693090550", + "title": "2025-10-28 七十二家房客:旺屋壮汉(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/5ebefe9cfc43043e386eaab1c89353f4.jpg", + "releasedAt": 1761658200000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176172984783.m3u8", + "raw": { + "id": "4d5b2ebf96902022a98a9f1693090550", + "title": "2025-10-28 七十二家房客:旺屋壮汉(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/5ebefe9cfc43043e386eaab1c89353f4.jpg", + "contentType": 3, + "releasedAt": 1761658200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176172984783.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b7aedc5fc62659790499f28cbf448c92", + "title": "2025-10-28 七十二家房客:旺屋壮汉(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/1bc41af65e894b02f6ef30068f915adc.jpg", + "releasedAt": 1761656460000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176172972650.m3u8", + "raw": { + "id": "b7aedc5fc62659790499f28cbf448c92", + "title": "2025-10-28 七十二家房客:旺屋壮汉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/1bc41af65e894b02f6ef30068f915adc.jpg", + "contentType": 3, + "releasedAt": 1761656460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176172972650.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0bb8ee1b339873723593245c2a5f368e", + "title": "2025-10-27 七十二家房客:肥猫与坚", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/d31cf5fe3d0dddc58a2d5b07bf38d83c.jpg", + "releasedAt": 1761579660000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164544938.m3u8", + "raw": { + "id": "0bb8ee1b339873723593245c2a5f368e", + "title": "2025-10-27 七十二家房客:肥猫与坚", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/d31cf5fe3d0dddc58a2d5b07bf38d83c.jpg", + "contentType": 3, + "releasedAt": 1761579660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164544938.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "71ac5f4f515329417c47208ffc76fcc0", + "title": "2025-10-27 七十二家房客:金银润(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/0c330f884d43023c6705241aed059abe.jpg", + "releasedAt": 1761578400000, + "timeLength": 1248, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164511863.m3u8", + "raw": { + "id": "71ac5f4f515329417c47208ffc76fcc0", + "title": "2025-10-27 七十二家房客:金银润(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/0c330f884d43023c6705241aed059abe.jpg", + "contentType": 3, + "releasedAt": 1761578400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164511863.m3u8\"}", + "timeLength": 1248, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0663e4a345f402802fdacab60d1c2c01", + "title": "2025-10-27 七十二家房客:金银润(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/03ba3e06e12681890b97ee5c84e15c62.jpg", + "releasedAt": 1761576000000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164484755.m3u8", + "raw": { + "id": "0663e4a345f402802fdacab60d1c2c01", + "title": "2025-10-27 七十二家房客:金银润(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/03ba3e06e12681890b97ee5c84e15c62.jpg", + "contentType": 3, + "releasedAt": 1761576000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164484755.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "31225e175569d7a7698eb82c2c89b499", + "title": "2025-10-27 七十二家房客:吃亏是福", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/188251ef62dae9576a961b69aac0fdbd.jpg", + "releasedAt": 1761574740000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164427636.m3u8", + "raw": { + "id": "31225e175569d7a7698eb82c2c89b499", + "title": "2025-10-27 七十二家房客:吃亏是福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/188251ef62dae9576a961b69aac0fdbd.jpg", + "contentType": 3, + "releasedAt": 1761574740000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164427636.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e3670fb63bd42e4020f801839a3ff3a6", + "title": "2025-10-27 七十二家房客:惊心一曲", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/373043c03646a835a9a7b87921e6ad83.jpg", + "releasedAt": 1761573420000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164385687.m3u8", + "raw": { + "id": "e3670fb63bd42e4020f801839a3ff3a6", + "title": "2025-10-27 七十二家房客:惊心一曲", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/373043c03646a835a9a7b87921e6ad83.jpg", + "contentType": 3, + "releasedAt": 1761573420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164385687.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4407c42134be3f6127bdcb36618f7042", + "title": "2025-10-27 七十二家房客:逃婚记(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/a227cb94713790ae21f164b5b992dda7.jpg", + "releasedAt": 1761571860000, + "timeLength": 1260, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164370788.m3u8", + "raw": { + "id": "4407c42134be3f6127bdcb36618f7042", + "title": "2025-10-27 七十二家房客:逃婚记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/a227cb94713790ae21f164b5b992dda7.jpg", + "contentType": 3, + "releasedAt": 1761571860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164370788.m3u8\"}", + "timeLength": 1260, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fb72ace4f6ec4935df93a15eafb54b3c", + "title": "2025-10-27 七十二家房客:逃婚记(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/06044ed38563110f9d6e433ce16dec2d.jpg", + "releasedAt": 1761570060000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164331710.m3u8", + "raw": { + "id": "fb72ace4f6ec4935df93a15eafb54b3c", + "title": "2025-10-27 七十二家房客:逃婚记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/06044ed38563110f9d6e433ce16dec2d.jpg", + "contentType": 3, + "releasedAt": 1761570060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164331710.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "786366c5333f638f29892e3a3207fd2e", + "title": "2025-10-26 七十二家房客:阿九爆大镬(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/554954b4c9be434953bde17e61522ad0.jpg", + "releasedAt": 1761493200000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164181614.m3u8", + "raw": { + "id": "786366c5333f638f29892e3a3207fd2e", + "title": "2025-10-26 七十二家房客:阿九爆大镬(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/554954b4c9be434953bde17e61522ad0.jpg", + "contentType": 3, + "releasedAt": 1761493200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164181614.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "daeef6be22cf69fa9a2920088c88934f", + "title": "2025-10-26 七十二家房客:阿九爆大镬(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/746e0212eb1ecc142ff93f1963bb96cc.jpg", + "releasedAt": 1761491940000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164127732.m3u8", + "raw": { + "id": "daeef6be22cf69fa9a2920088c88934f", + "title": "2025-10-26 七十二家房客:阿九爆大镬(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/746e0212eb1ecc142ff93f1963bb96cc.jpg", + "contentType": 3, + "releasedAt": 1761491940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164127732.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "67a1455c021d110c784a9fe34f8a355e", + "title": "2025-10-26 七十二家房客:广州传奇大亨(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/a9eea91d401145a367d46ff779156d60.jpg", + "releasedAt": 1761485340000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176163968672.m3u8", + "raw": { + "id": "67a1455c021d110c784a9fe34f8a355e", + "title": "2025-10-26 七十二家房客:广州传奇大亨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/a9eea91d401145a367d46ff779156d60.jpg", + "contentType": 3, + "releasedAt": 1761485340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176163968672.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "808fb0e3144d36c9ddebfc12fddc6d04", + "title": "2025-10-26 七十二家房客:广州传奇大亨(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/0b6b186837366d25ca5608c6b6ac0472.jpg", + "releasedAt": 1761483600000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176163902676.m3u8", + "raw": { + "id": "808fb0e3144d36c9ddebfc12fddc6d04", + "title": "2025-10-26 七十二家房客:广州传奇大亨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/0b6b186837366d25ca5608c6b6ac0472.jpg", + "contentType": 3, + "releasedAt": 1761483600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176163902676.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fd6023f7c7e0e2b834abf76d66daafc0", + "title": "2025-10-25 七十二家房客:加料美食(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/6bb9c076c5a02850d6d94569ee2da3e8.jpg", + "releasedAt": 1761398940000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164265781.m3u8", + "raw": { + "id": "fd6023f7c7e0e2b834abf76d66daafc0", + "title": "2025-10-25 七十二家房客:加料美食(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/6bb9c076c5a02850d6d94569ee2da3e8.jpg", + "contentType": 3, + "releasedAt": 1761398940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164265781.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3c21f0b8da48ea28f767452b865ec43b", + "title": "2025-10-25 七十二家房客:加料美食(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/8e784fd47c18b1fe1eb34b21eb90194b.jpg", + "releasedAt": 1761397200000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164238746.m3u8", + "raw": { + "id": "3c21f0b8da48ea28f767452b865ec43b", + "title": "2025-10-25 七十二家房客:加料美食(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/8e784fd47c18b1fe1eb34b21eb90194b.jpg", + "contentType": 3, + "releasedAt": 1761397200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164238746.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0467f66c769612b76d8897dfe69ea4e0", + "title": "2025-10-24 七十二家房客:义之道(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/6ed3343b738b47da0fe89873d86635d0.jpg", + "releasedAt": 1761320460000, + "timeLength": 1240, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164193716.m3u8", + "raw": { + "id": "0467f66c769612b76d8897dfe69ea4e0", + "title": "2025-10-24 七十二家房客:义之道(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/6ed3343b738b47da0fe89873d86635d0.jpg", + "contentType": 3, + "releasedAt": 1761320460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164193716.m3u8\"}", + "timeLength": 1240, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "29e69cecdaf611dded95db0b3f26c2ca", + "title": "2025-10-24 七十二家房客:酿鲮鱼(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/96c31ab191bd63004eff73f34085a7f1.jpg", + "releasedAt": 1761319200000, + "timeLength": 1241, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164136636.m3u8", + "raw": { + "id": "29e69cecdaf611dded95db0b3f26c2ca", + "title": "2025-10-24 七十二家房客:酿鲮鱼(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/96c31ab191bd63004eff73f34085a7f1.jpg", + "contentType": 3, + "releasedAt": 1761319200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164136636.m3u8\"}", + "timeLength": 1241, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8c39ad287a052a621019328f492fab82", + "title": "2025-10-24 七十二家房客:酿鲮鱼(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/81e9545c705f3024ccd89749aef7ea67.jpg", + "releasedAt": 1761317940000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164079765.m3u8", + "raw": { + "id": "8c39ad287a052a621019328f492fab82", + "title": "2025-10-24 七十二家房客:酿鲮鱼(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/81e9545c705f3024ccd89749aef7ea67.jpg", + "contentType": 3, + "releasedAt": 1761317940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164079765.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "020b237cce1ee21b213b336f7ee54d02", + "title": "2025-10-24 七十二家房客:继承人", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/14f66fa9895471c934fc3e46d6851c0b.jpg", + "releasedAt": 1761316680000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164070640.m3u8", + "raw": { + "id": "020b237cce1ee21b213b336f7ee54d02", + "title": "2025-10-24 七十二家房客:继承人", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/14f66fa9895471c934fc3e46d6851c0b.jpg", + "contentType": 3, + "releasedAt": 1761316680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164070640.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd8fcd563c37abbc7e217017ab39ba79", + "title": "2025-10-24 七十二家房客:身材危机", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/0f6782d224da6a0703e74178dca2ee56.jpg", + "releasedAt": 1761315420000, + "timeLength": 1239, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164022732.m3u8", + "raw": { + "id": "dd8fcd563c37abbc7e217017ab39ba79", + "title": "2025-10-24 七十二家房客:身材危机", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/0f6782d224da6a0703e74178dca2ee56.jpg", + "contentType": 3, + "releasedAt": 1761315420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164022732.m3u8\"}", + "timeLength": 1239, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "446ac875f7dd2f2f4675657862099d90", + "title": "2025-10-24 七十二家房客:女儿当自强(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/8cdfe8b934fded32a2def3b686162971.jpg", + "releasedAt": 1761314160000, + "timeLength": 1215, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176164010744.m3u8", + "raw": { + "id": "446ac875f7dd2f2f4675657862099d90", + "title": "2025-10-24 七十二家房客:女儿当自强(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/8cdfe8b934fded32a2def3b686162971.jpg", + "contentType": 3, + "releasedAt": 1761314160000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176164010744.m3u8\"}", + "timeLength": 1215, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aef10728fb67ed405d7b4f12e4807305", + "title": "2025-10-24 七十二家房客:天各一方(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/b5fd7bc51153147cb79ad8a2b2cfc75b.jpg", + "releasedAt": 1761312600000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176163956725.m3u8", + "raw": { + "id": "aef10728fb67ed405d7b4f12e4807305", + "title": "2025-10-24 七十二家房客:天各一方(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/b5fd7bc51153147cb79ad8a2b2cfc75b.jpg", + "contentType": 3, + "releasedAt": 1761312600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176163956725.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "468b39a851f79310cf57bc7998fc3264", + "title": "2025-10-24 七十二家房客:天各一方(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/7c00eec642369b5f8a7eb746b7e49b47.jpg", + "releasedAt": 1761310860000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202511/176163896673.m3u8", + "raw": { + "id": "468b39a851f79310cf57bc7998fc3264", + "title": "2025-10-24 七十二家房客:天各一方(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/7c00eec642369b5f8a7eb746b7e49b47.jpg", + "contentType": 3, + "releasedAt": 1761310860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202511/176163896673.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "77545d90c0e0b952136b71c06984c6f8", + "title": "2025-10-23 七十二家房客:落地凤凰(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/f752163f76a49506f6e05f4ce0929eb8.jpg", + "releasedAt": 1761230340000, + "timeLength": 1239, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176129232445.m3u8", + "raw": { + "id": "77545d90c0e0b952136b71c06984c6f8", + "title": "2025-10-23 七十二家房客:落地凤凰(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/f752163f76a49506f6e05f4ce0929eb8.jpg", + "contentType": 3, + "releasedAt": 1761230340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176129232445.m3u8\"}", + "timeLength": 1239, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9b9174b5b941f0d81c6c3d27948fe2fc", + "title": "2025-10-23 七十二家房客:落地凤凰(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/699b483eee79ecbf496ae5322f44b07d.jpg", + "releasedAt": 1761229080000, + "timeLength": 1233, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176129184654.m3u8", + "raw": { + "id": "9b9174b5b941f0d81c6c3d27948fe2fc", + "title": "2025-10-23 七十二家房客:落地凤凰(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/699b483eee79ecbf496ae5322f44b07d.jpg", + "contentType": 3, + "releasedAt": 1761229080000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176129184654.m3u8\"}", + "timeLength": 1233, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "398bc2a6ee971f1c0755a8390fce501e", + "title": "2025-10-23 七十二家房客:好心坏人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e7b7498587b510c7d858cfa9cc21db8b.jpg", + "releasedAt": 1761227760000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176129178598.m3u8", + "raw": { + "id": "398bc2a6ee971f1c0755a8390fce501e", + "title": "2025-10-23 七十二家房客:好心坏人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e7b7498587b510c7d858cfa9cc21db8b.jpg", + "contentType": 3, + "releasedAt": 1761227760000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176129178598.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d3773c03141de4d10c147d869eda029f", + "title": "2025-10-23 七十二家房客:情与义(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/6ea7b412da2d318ac7a8601b3ca1c33d.jpg", + "releasedAt": 1761226200000, + "timeLength": 1239, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176129130537.m3u8", + "raw": { + "id": "d3773c03141de4d10c147d869eda029f", + "title": "2025-10-23 七十二家房客:情与义(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/6ea7b412da2d318ac7a8601b3ca1c33d.jpg", + "contentType": 3, + "releasedAt": 1761226200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176129130537.m3u8\"}", + "timeLength": 1239, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ed221076a7aed9dce066d369b6f03289", + "title": "2025-10-23 七十二家房客:情与义(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/c90ab43ba6651912a25b79d9ee80f689.jpg", + "releasedAt": 1761224460000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176129124638.m3u8", + "raw": { + "id": "ed221076a7aed9dce066d369b6f03289", + "title": "2025-10-23 七十二家房客:情与义(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/c90ab43ba6651912a25b79d9ee80f689.jpg", + "contentType": 3, + "releasedAt": 1761224460000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176129124638.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6c3cc3821cd8132df61c9c03db4f1dc7", + "title": "2025-10-22 七十二家房客:事与愿违", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/1453c4633648729b3179e7b6415ddf7c.jpg", + "releasedAt": 1761143940000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176120451624.m3u8", + "raw": { + "id": "6c3cc3821cd8132df61c9c03db4f1dc7", + "title": "2025-10-22 七十二家房客:事与愿违", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/1453c4633648729b3179e7b6415ddf7c.jpg", + "contentType": 3, + "releasedAt": 1761143940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176120451624.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bdae4bf142e087f52b34b1c8e0ae09b6", + "title": "2025-10-22 七十二家房客:捧名角(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/0f9a8293e48a0f5f4391411d53d8cc91.jpg", + "releasedAt": 1761142680000, + "timeLength": 1240, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176120403553.m3u8", + "raw": { + "id": "bdae4bf142e087f52b34b1c8e0ae09b6", + "title": "2025-10-22 七十二家房客:捧名角(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/0f9a8293e48a0f5f4391411d53d8cc91.jpg", + "contentType": 3, + "releasedAt": 1761142680000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176120403553.m3u8\"}", + "timeLength": 1240, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "24f0f2474fa1d5ac6689a3950e28e61e", + "title": "2025-10-22 七十二家房客:捧名角(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/75e6262ead3efa8a9b6b96339df81006.jpg", + "releasedAt": 1761141420000, + "timeLength": 1231, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176120397544.m3u8", + "raw": { + "id": "24f0f2474fa1d5ac6689a3950e28e61e", + "title": "2025-10-22 七十二家房客:捧名角(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/75e6262ead3efa8a9b6b96339df81006.jpg", + "contentType": 3, + "releasedAt": 1761141420000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176120397544.m3u8\"}", + "timeLength": 1231, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3e201473eec84818168e7965c39aeba0", + "title": "2025-10-22 七十二家房客:陈年旧账", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/3021110355c11d3f3595f754b3b273b7.jpg", + "releasedAt": 1761139800000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176120340645.m3u8", + "raw": { + "id": "3e201473eec84818168e7965c39aeba0", + "title": "2025-10-22 七十二家房客:陈年旧账", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/3021110355c11d3f3595f754b3b273b7.jpg", + "contentType": 3, + "releasedAt": 1761139800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176120340645.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7ec0541443bfa56500e7c30773f671c3", + "title": "2025-10-22 七十二家房客:脱发之友", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/6d7d7b6e0113b9d1f03e7f8e67179139.jpg", + "releasedAt": 1761138060000, + "timeLength": 1257, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176120289550.m3u8", + "raw": { + "id": "7ec0541443bfa56500e7c30773f671c3", + "title": "2025-10-22 七十二家房客:脱发之友", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2025/10/6d7d7b6e0113b9d1f03e7f8e67179139.jpg", + "contentType": 3, + "releasedAt": 1761138060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176120289550.m3u8\"}", + "timeLength": 1257, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8e1bb6a229f9bd456a9799a000726846", + "title": "2025-10-21 七十二家房客:瞎猫碰上雌老虎", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/3281f1c41eb881a11603d80401f2ac38.jpg", + "releasedAt": 1761057600000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176111942517.m3u8", + "raw": { + "id": "8e1bb6a229f9bd456a9799a000726846", + "title": "2025-10-21 七十二家房客:瞎猫碰上雌老虎", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/3281f1c41eb881a11603d80401f2ac38.jpg", + "contentType": 3, + "releasedAt": 1761057600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176111942517.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "72c9ee4a93a2a14e84e5774c51843eff", + "title": "2025-10-21 七十二家房客:冤有头债有主(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e5610325a2e4dbee129fc90d2aee40d9.jpg", + "releasedAt": 1761056280000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176111897484.m3u8", + "raw": { + "id": "72c9ee4a93a2a14e84e5774c51843eff", + "title": "2025-10-21 七十二家房客:冤有头债有主(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e5610325a2e4dbee129fc90d2aee40d9.jpg", + "contentType": 3, + "releasedAt": 1761056280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176111897484.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d284ac444782e8377179e3408561176a", + "title": "2025-10-21 七十二家房客:冤有头债有主(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/3b01f5e19c31e0c1a744514e60d9d241.jpg", + "releasedAt": 1761055020000, + "timeLength": 1251, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176111888315.m3u8", + "raw": { + "id": "d284ac444782e8377179e3408561176a", + "title": "2025-10-21 七十二家房客:冤有头债有主(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/3b01f5e19c31e0c1a744514e60d9d241.jpg", + "contentType": 3, + "releasedAt": 1761055020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176111888315.m3u8\"}", + "timeLength": 1251, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "58cb22564c07a582d94370fa91fb6bfe", + "title": "2025-10-21 七十二家房客:影帝三六九(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/4e6e9eca79d811056cdc71dccd1470e1.jpg", + "releasedAt": 1761053400000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176111844534.m3u8", + "raw": { + "id": "58cb22564c07a582d94370fa91fb6bfe", + "title": "2025-10-21 七十二家房客:影帝三六九(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/4e6e9eca79d811056cdc71dccd1470e1.jpg", + "contentType": 3, + "releasedAt": 1761053400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176111844534.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "560c0d68cf25081b5d4bec3824a57f0a", + "title": "2025-10-21 七十二家房客:影帝三六九(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/af2e200393b3d22c1a081857564b1446.jpg", + "releasedAt": 1761051660000, + "timeLength": 1241, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176111834362.m3u8", + "raw": { + "id": "560c0d68cf25081b5d4bec3824a57f0a", + "title": "2025-10-21 七十二家房客:影帝三六九(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/af2e200393b3d22c1a081857564b1446.jpg", + "contentType": 3, + "releasedAt": 1761051660000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176111834362.m3u8\"}", + "timeLength": 1241, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1a9a40020b48967a20a49edcfa21bc7f", + "title": "2025-10-20 七十二家房客:最衰就是我(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e6cae87633066affc0231892233012ff.jpg", + "releasedAt": 1760971200000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176101698764.m3u8", + "raw": { + "id": "1a9a40020b48967a20a49edcfa21bc7f", + "title": "2025-10-20 七十二家房客:最衰就是我(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/e6cae87633066affc0231892233012ff.jpg", + "contentType": 3, + "releasedAt": 1760971200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176101698764.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "28f4573fa0310f66dfafd02dd7e02d67", + "title": "2025-10-20 七十二家房客:再入虎穴(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/1df75e94dd9d4454446dbd844e7c92d5.jpg", + "releasedAt": 1760969880000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176101668378.m3u8", + "raw": { + "id": "28f4573fa0310f66dfafd02dd7e02d67", + "title": "2025-10-20 七十二家房客:再入虎穴(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/1df75e94dd9d4454446dbd844e7c92d5.jpg", + "contentType": 3, + "releasedAt": 1760969880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176101668378.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e75caf00036c039a559b3c2e3436612c", + "title": "2025-10-20 七十二家房客:再入虎穴(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/298a2f2314343d7017222f5da656c5b9.jpg", + "releasedAt": 1760968620000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176101647396.m3u8", + "raw": { + "id": "e75caf00036c039a559b3c2e3436612c", + "title": "2025-10-20 七十二家房客:再入虎穴(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/298a2f2314343d7017222f5da656c5b9.jpg", + "contentType": 3, + "releasedAt": 1760968620000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176101647396.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91be1a3a099b2138f5073a8609c26893", + "title": "2025-10-20 七十二家房客:运财记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/b9e139dbf203f0730b6a26c751a48866.jpg", + "releasedAt": 1760967060000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176101617356.m3u8", + "raw": { + "id": "91be1a3a099b2138f5073a8609c26893", + "title": "2025-10-20 七十二家房客:运财记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/b9e139dbf203f0730b6a26c751a48866.jpg", + "contentType": 3, + "releasedAt": 1760967060000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176101617356.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8b37c51a879a2890a6891fe604cbb462", + "title": "2025-10-20 七十二家房客:运财记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/55d243869a8a751e9533a04e21e31d13.jpg", + "releasedAt": 1760965260000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202510/176101596677.m3u8", + "raw": { + "id": "8b37c51a879a2890a6891fe604cbb462", + "title": "2025-10-20 七十二家房客:运财记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/10/55d243869a8a751e9533a04e21e31d13.jpg", + "contentType": 3, + "releasedAt": 1760965260000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202510/176101596677.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b240bfac6beb89dac12c2fec5fa81dec", + "title": "2025-03-12 七十二家房客:既定计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/807ca09de5152dfbda5af20dfbd177a2.jpg", + "releasedAt": 1741784400000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174179121521.m3u8", + "raw": { + "id": "b240bfac6beb89dac12c2fec5fa81dec", + "title": "2025-03-12 七十二家房客:既定计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/807ca09de5152dfbda5af20dfbd177a2.jpg", + "contentType": 3, + "releasedAt": 1741784400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174179121521.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e56ccf5377d089fa42d8a516b8634a77", + "title": "2025-03-12 七十二家房客:既定计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/8ac59802f68dc8969b10fb7b4be97f47.jpg", + "releasedAt": 1741784400000, + "timeLength": 1411, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174178934261.m3u8", + "raw": { + "id": "e56ccf5377d089fa42d8a516b8634a77", + "title": "2025-03-12 七十二家房客:既定计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/8ac59802f68dc8969b10fb7b4be97f47.jpg", + "contentType": 3, + "releasedAt": 1741784400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174178934261.m3u8\"}", + "timeLength": 1411, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8a5ef5e97b3d6fe649e84f8e2a5b8be4", + "title": "2025-03-11 七十二家房客:黑白恩怨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/85a3c636598d5f3a0b8ba83f83b548d7.jpg", + "releasedAt": 1741698000000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174170499642.m3u8", + "raw": { + "id": "8a5ef5e97b3d6fe649e84f8e2a5b8be4", + "title": "2025-03-11 七十二家房客:黑白恩怨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/85a3c636598d5f3a0b8ba83f83b548d7.jpg", + "contentType": 3, + "releasedAt": 1741698000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174170499642.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d227ae2cced1415e7c1a2db4a63f3dfa", + "title": "2025-03-11 七十二家房客:黑白恩怨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/8e7ea301f6f67fa91ab63653bc751533.jpg", + "releasedAt": 1741698000000, + "timeLength": 1235, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174170499573.m3u8", + "raw": { + "id": "d227ae2cced1415e7c1a2db4a63f3dfa", + "title": "2025-03-11 七十二家房客:黑白恩怨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/8e7ea301f6f67fa91ab63653bc751533.jpg", + "contentType": 3, + "releasedAt": 1741698000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174170499573.m3u8\"}", + "timeLength": 1235, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bd5fb457a5fa42118c1f4ca49e278cc1", + "title": "2025-03-10 七十二家房客:理失心不安(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/741149dffb8f86557f9c5c3e77b88ace.jpg", + "releasedAt": 1741611600000, + "timeLength": 1376, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174161920158.m3u8", + "raw": { + "id": "bd5fb457a5fa42118c1f4ca49e278cc1", + "title": "2025-03-10 七十二家房客:理失心不安(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/741149dffb8f86557f9c5c3e77b88ace.jpg", + "contentType": 3, + "releasedAt": 1741611600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174161920158.m3u8\"}", + "timeLength": 1376, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd99a39785be79e310e8dc70bb3daeb8", + "title": "2025-03-10 七十二家房客:理失心不安(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/78ef2612a1fe2fb42f3eb021f82180f3.jpg", + "releasedAt": 1741611600000, + "timeLength": 1399, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174161916154.m3u8", + "raw": { + "id": "dd99a39785be79e310e8dc70bb3daeb8", + "title": "2025-03-10 七十二家房客:理失心不安(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/78ef2612a1fe2fb42f3eb021f82180f3.jpg", + "contentType": 3, + "releasedAt": 1741611600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174161916154.m3u8\"}", + "timeLength": 1399, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c2e95cc4db0e71593ff9acbaac1ba4c3", + "title": "2025-03-08 七十二家房客:老虎当病猫", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/e6d1930c6dec2572cac24df4e081ac16.jpg", + "releasedAt": 1741440592000, + "timeLength": 1310, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174145146034.m3u8", + "raw": { + "id": "c2e95cc4db0e71593ff9acbaac1ba4c3", + "title": "2025-03-08 七十二家房客:老虎当病猫", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/e6d1930c6dec2572cac24df4e081ac16.jpg", + "contentType": 3, + "releasedAt": 1741440592000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174145146034.m3u8\"}", + "timeLength": 1310, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2931f4adde0dbce444e39a892a36d456", + "title": "2025-03-07 七十二家房客:磨心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/2dc6bef149d9356a01001141a19c2bc5.jpg", + "releasedAt": 1741352400000, + "timeLength": 1409, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174136698832.m3u8", + "raw": { + "id": "2931f4adde0dbce444e39a892a36d456", + "title": "2025-03-07 七十二家房客:磨心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/2dc6bef149d9356a01001141a19c2bc5.jpg", + "contentType": 3, + "releasedAt": 1741352400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174136698832.m3u8\"}", + "timeLength": 1409, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f32d4eaf334015cadf275cca7d80bd2b", + "title": "2025-03-06 七十二家房客:美丽师徒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/18ac6c4b9d6d780e6637692f39475662.jpg", + "releasedAt": 1741266000000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174127167077.m3u8", + "raw": { + "id": "f32d4eaf334015cadf275cca7d80bd2b", + "title": "2025-03-06 七十二家房客:美丽师徒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/18ac6c4b9d6d780e6637692f39475662.jpg", + "contentType": 3, + "releasedAt": 1741266000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174127167077.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "69a91aed9e1e4238cad5dba3c45db0c9", + "title": "2025-03-06 七十二家房客:美丽师徒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/6ee425e38331e6fe412f611ffbe8fd45.jpg", + "releasedAt": 1741266000000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174127167694.m3u8", + "raw": { + "id": "69a91aed9e1e4238cad5dba3c45db0c9", + "title": "2025-03-06 七十二家房客:美丽师徒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/6ee425e38331e6fe412f611ffbe8fd45.jpg", + "contentType": 3, + "releasedAt": 1741266000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174127167694.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "529644ad3c3fe5a0685a5255f4ff7acf", + "title": "2025-03-05 七十二家房客:戏假情真(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/273365d815c360cb8fa953e98fbe165e.jpg", + "releasedAt": 1741179600000, + "timeLength": 1411, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174118989064.m3u8", + "raw": { + "id": "529644ad3c3fe5a0685a5255f4ff7acf", + "title": "2025-03-05 七十二家房客:戏假情真(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/273365d815c360cb8fa953e98fbe165e.jpg", + "contentType": 3, + "releasedAt": 1741179600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174118989064.m3u8\"}", + "timeLength": 1411, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6368b21f2ad04ca3994948bafc64d570", + "title": "2025-03-05 七十二家房客:戏假情真(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/e15d6a0d9482cd2724a09d258f421e18.jpg", + "releasedAt": 1741179600000, + "timeLength": 1307, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174118719573.m3u8", + "raw": { + "id": "6368b21f2ad04ca3994948bafc64d570", + "title": "2025-03-05 七十二家房客:戏假情真(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/e15d6a0d9482cd2724a09d258f421e18.jpg", + "contentType": 3, + "releasedAt": 1741179600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174118719573.m3u8\"}", + "timeLength": 1307, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6407ef46ca6a8b0e8a1c5937141d7838", + "title": "2025-03-04 七十二家房客:偷窥风波(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/d68980fe1ad84317a8f6ee2e3ca3c826.jpg", + "releasedAt": 1741093200000, + "timeLength": 1400, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174109899332.m3u8", + "raw": { + "id": "6407ef46ca6a8b0e8a1c5937141d7838", + "title": "2025-03-04 七十二家房客:偷窥风波(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/d68980fe1ad84317a8f6ee2e3ca3c826.jpg", + "contentType": 3, + "releasedAt": 1741093200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174109899332.m3u8\"}", + "timeLength": 1400, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "97710d148baf6152fa90c121a00a26ee", + "title": "2025-03-04 七十二家房客:偷窥风波(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/ef09e90af290346105194198f09f77d7.jpg", + "releasedAt": 1741093200000, + "timeLength": 1325, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174109899450.m3u8", + "raw": { + "id": "97710d148baf6152fa90c121a00a26ee", + "title": "2025-03-04 七十二家房客:偷窥风波(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/ef09e90af290346105194198f09f77d7.jpg", + "contentType": 3, + "releasedAt": 1741093200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174109899450.m3u8\"}", + "timeLength": 1325, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3eeca4f988bb3d27632c837e0aa2717e", + "title": "2025-03-03 七十二家房客:不能说的秘密(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/f3d5e83391e88c7491d692fa99bd5fdb.jpg", + "releasedAt": 1741006800000, + "timeLength": 1411, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174108518672.m3u8", + "raw": { + "id": "3eeca4f988bb3d27632c837e0aa2717e", + "title": "2025-03-03 七十二家房客:不能说的秘密(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/f3d5e83391e88c7491d692fa99bd5fdb.jpg", + "contentType": 3, + "releasedAt": 1741006800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174108518672.m3u8\"}", + "timeLength": 1411, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4a92a8aaff8f05957453dbb08023f09e", + "title": "2025-03-03 七十二家房客:不能说的秘密(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/9259fb10484a168d8b4388d2dee8c5f3.jpg", + "releasedAt": 1741006800000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174108518533.m3u8", + "raw": { + "id": "4a92a8aaff8f05957453dbb08023f09e", + "title": "2025-03-03 七十二家房客:不能说的秘密(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/9259fb10484a168d8b4388d2dee8c5f3.jpg", + "contentType": 3, + "releasedAt": 1741006800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174108518533.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "57ca854de0656c2ddf755eb4c55e0bc1", + "title": "2025-03-02 七十二家房客:边缘人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/3db42b5d1e10af64c3fc0bbf07d47d3e.jpg", + "releasedAt": 1740920400000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174092723038.m3u8", + "raw": { + "id": "57ca854de0656c2ddf755eb4c55e0bc1", + "title": "2025-03-02 七十二家房客:边缘人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/3db42b5d1e10af64c3fc0bbf07d47d3e.jpg", + "contentType": 3, + "releasedAt": 1740920400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174092723038.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a9f3f13544286e7569cd8e588fd19ebd", + "title": "2025-03-02 七十二家房客:边缘人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/2add7034e759853cabca957fa1101302.jpg", + "releasedAt": 1740920400000, + "timeLength": 1395, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174092720341.m3u8", + "raw": { + "id": "a9f3f13544286e7569cd8e588fd19ebd", + "title": "2025-03-02 七十二家房客:边缘人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/2add7034e759853cabca957fa1101302.jpg", + "contentType": 3, + "releasedAt": 1740920400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174092720341.m3u8\"}", + "timeLength": 1395, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2a0b42b0795d14b6395206fe7cc48874", + "title": "2025-03-01 七十二家房客:心魔(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/edfd28cfec95ab5d268a6c62d21e64d6.jpg", + "releasedAt": 1740835789000, + "timeLength": 1308, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174084448129.m3u8", + "raw": { + "id": "2a0b42b0795d14b6395206fe7cc48874", + "title": "2025-03-01 七十二家房客:心魔(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/edfd28cfec95ab5d268a6c62d21e64d6.jpg", + "contentType": 3, + "releasedAt": 1740835789000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174084448129.m3u8\"}", + "timeLength": 1308, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7e25692ad88d01a4fe35b1b48942da38", + "title": "2025-03-01 七十二家房客:心魔(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/2914636a1d2c88c2a99471bb04a154ab.jpg", + "releasedAt": 1740834000000, + "timeLength": 1421, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174084444935.m3u8", + "raw": { + "id": "7e25692ad88d01a4fe35b1b48942da38", + "title": "2025-03-01 七十二家房客:心魔(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/03/2914636a1d2c88c2a99471bb04a154ab.jpg", + "contentType": 3, + "releasedAt": 1740834000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174084444935.m3u8\"}", + "timeLength": 1421, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6e4799beef6fdb638ab5025d80a86c15", + "title": "2025-02-28 七十二家房客:姜埋奶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/9837efece5b8263fcfcb144a54880926.jpg", + "releasedAt": 1740747600000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174075419124.m3u8", + "raw": { + "id": "6e4799beef6fdb638ab5025d80a86c15", + "title": "2025-02-28 七十二家房客:姜埋奶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/9837efece5b8263fcfcb144a54880926.jpg", + "contentType": 3, + "releasedAt": 1740747600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174075419124.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "173ed6f087cf284c34ea1ca3d4d7bea5", + "title": "2025-02-28 七十二家房客:姜埋奶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/302ae0fab8ccafcf98f3511466eb2ff7.jpg", + "releasedAt": 1740747600000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174075419232.m3u8", + "raw": { + "id": "173ed6f087cf284c34ea1ca3d4d7bea5", + "title": "2025-02-28 七十二家房客:姜埋奶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/302ae0fab8ccafcf98f3511466eb2ff7.jpg", + "contentType": 3, + "releasedAt": 1740747600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174075419232.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b69d243b656da1cc562156545e60ad1e", + "title": "2025-02-27 七十二家房客:筹码(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/df09331047090f8cf70f29efca33ff84.jpg", + "releasedAt": 1740661200000, + "timeLength": 1411, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174066766913.m3u8", + "raw": { + "id": "b69d243b656da1cc562156545e60ad1e", + "title": "2025-02-27 七十二家房客:筹码(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/df09331047090f8cf70f29efca33ff84.jpg", + "contentType": 3, + "releasedAt": 1740661200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174066766913.m3u8\"}", + "timeLength": 1411, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2bff8255b7024c86ac836e1fcb157cc0", + "title": "2025-02-27 七十二家房客:筹码(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/68e97a4465ad4b696075a05fb79121e1.jpg", + "releasedAt": 1740661200000, + "timeLength": 1309, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174066767737.m3u8", + "raw": { + "id": "2bff8255b7024c86ac836e1fcb157cc0", + "title": "2025-02-27 七十二家房客:筹码(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/68e97a4465ad4b696075a05fb79121e1.jpg", + "contentType": 3, + "releasedAt": 1740661200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174066767737.m3u8\"}", + "timeLength": 1309, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d35dbc8b875cf6e9873c6b7ddad640a6", + "title": "2025-02-26 七十二家房客:温暖的送别", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/ca958de386669831fe3306a3a78e4e20.jpg", + "releasedAt": 1740576897000, + "timeLength": 1319, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174058637946.m3u8", + "raw": { + "id": "d35dbc8b875cf6e9873c6b7ddad640a6", + "title": "2025-02-26 七十二家房客:温暖的送别", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/ca958de386669831fe3306a3a78e4e20.jpg", + "contentType": 3, + "releasedAt": 1740576897000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174058637946.m3u8\"}", + "timeLength": 1319, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cae82853685cec9be92c8418bc7c45c2", + "title": "2025-02-26 七十二家房客:祸福香炉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/cc3f4c918dadea0909a24eb4b5547c51.jpg", + "releasedAt": 1740574800000, + "timeLength": 1408, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174058639561.m3u8", + "raw": { + "id": "cae82853685cec9be92c8418bc7c45c2", + "title": "2025-02-26 七十二家房客:祸福香炉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/cc3f4c918dadea0909a24eb4b5547c51.jpg", + "contentType": 3, + "releasedAt": 1740574800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174058639561.m3u8\"}", + "timeLength": 1408, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "19bb759d0d88c85e551e725516157426", + "title": "2025-02-25 七十二家房客:闹剧(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/e3d7c395ffe1a405f7a95a6a495a10a2.jpg", + "releasedAt": 1740488400000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174053528157.m3u8", + "raw": { + "id": "19bb759d0d88c85e551e725516157426", + "title": "2025-02-25 七十二家房客:闹剧(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/e3d7c395ffe1a405f7a95a6a495a10a2.jpg", + "contentType": 3, + "releasedAt": 1740488400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174053528157.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a4a07277f7fb71b953237fb55e04910e", + "title": "2025-02-25 七十二家房客:闹剧(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/9c1a43453c319474f79b466cdc9bcd36.jpg", + "releasedAt": 1740488400000, + "timeLength": 1396, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174053529932.m3u8", + "raw": { + "id": "a4a07277f7fb71b953237fb55e04910e", + "title": "2025-02-25 七十二家房客:闹剧(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/9c1a43453c319474f79b466cdc9bcd36.jpg", + "contentType": 3, + "releasedAt": 1740488400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174053529932.m3u8\"}", + "timeLength": 1396, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7a894f7f6a1c6d2ce472ccc63b556987", + "title": "2025-02-24 七十二家房客:女人心计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/ffe11198c44e74168ccd1f252df1327f.jpg", + "releasedAt": 1740402000000, + "timeLength": 1409, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174040779195.m3u8", + "raw": { + "id": "7a894f7f6a1c6d2ce472ccc63b556987", + "title": "2025-02-24 七十二家房客:女人心计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/ffe11198c44e74168ccd1f252df1327f.jpg", + "contentType": 3, + "releasedAt": 1740402000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174040779195.m3u8\"}", + "timeLength": 1409, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad74bf8c45b69f24e3c070a6e50fcaad", + "title": "2025-02-24 七十二家房客:女人心计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/f272e0c941879e2a70139e9aee4e082f.jpg", + "releasedAt": 1740402000000, + "timeLength": 1316, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174040779248.m3u8", + "raw": { + "id": "ad74bf8c45b69f24e3c070a6e50fcaad", + "title": "2025-02-24 七十二家房客:女人心计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/f272e0c941879e2a70139e9aee4e082f.jpg", + "contentType": 3, + "releasedAt": 1740402000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174040779248.m3u8\"}", + "timeLength": 1316, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "908a9e8e5630f7c69d0af6bf4aa40b4b", + "title": "2025-02-23 七十二家房客:过房儿子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/92b332339ffc9f4ef6a3674615edfaeb.jpg", + "releasedAt": 1740315600000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174032350413.m3u8", + "raw": { + "id": "908a9e8e5630f7c69d0af6bf4aa40b4b", + "title": "2025-02-23 七十二家房客:过房儿子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/92b332339ffc9f4ef6a3674615edfaeb.jpg", + "contentType": 3, + "releasedAt": 1740315600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174032350413.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9a9bd0345099aaf8a2fab1ab1316154c", + "title": "2025-02-23 七十二家房客:过房儿子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/4f9922987dfc547ecf00e1102e07f655.jpg", + "releasedAt": 1740315600000, + "timeLength": 1406, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174032352414.m3u8", + "raw": { + "id": "9a9bd0345099aaf8a2fab1ab1316154c", + "title": "2025-02-23 七十二家房客:过房儿子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/4f9922987dfc547ecf00e1102e07f655.jpg", + "contentType": 3, + "releasedAt": 1740315600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174032352414.m3u8\"}", + "timeLength": 1406, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a02ab4816d0c3636e36addc657d7db56", + "title": "2025-02-22 七十二家房客:黄梨梦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/bc3d8a90bbded4613792abc5963c5f3f.jpg", + "releasedAt": 1740231028000, + "timeLength": 1320, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174023840776.m3u8", + "raw": { + "id": "a02ab4816d0c3636e36addc657d7db56", + "title": "2025-02-22 七十二家房客:黄梨梦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/bc3d8a90bbded4613792abc5963c5f3f.jpg", + "contentType": 3, + "releasedAt": 1740231028000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174023840776.m3u8\"}", + "timeLength": 1320, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1888e49bab98cb2344cadcdef7eaffe6", + "title": "2025-02-21 七十二家房客:媒人福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/87d2e8b50cb948c4bda5c3353b3361c4.jpg", + "releasedAt": 1740142800000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202503/174015338997.m3u8", + "raw": { + "id": "1888e49bab98cb2344cadcdef7eaffe6", + "title": "2025-02-21 七十二家房客:媒人福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/87d2e8b50cb948c4bda5c3353b3361c4.jpg", + "contentType": 3, + "releasedAt": 1740142800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202503/174015338997.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ef2f26d9aa60655fd68ef9c1023e8bd4", + "title": "2025-02-21 七十二家房客:造反的马仔", + "coverUrl": "https://img.gdtv.cn/image/202502/0.1090813978284113159369e4494d12021d5OSS1740364163.png", + "releasedAt": 1740142800000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/174015019945.m3u8", + "raw": { + "id": "ef2f26d9aa60655fd68ef9c1023e8bd4", + "title": "2025-02-21 七十二家房客:造反的马仔", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.gdtv.cn/image/202502/0.1090813978284113159369e4494d12021d5OSS1740364163.png", + "contentType": 3, + "releasedAt": 1740142800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/174015019945.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "934ce9e22bcff85d8a8d8d3675b09f26", + "title": "2025-02-20 七十二家房客:托孤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/d3518c5f5c47957077875fb8e49a96ac.jpg", + "releasedAt": 1740056400000, + "timeLength": 1324, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/174006512053.m3u8", + "raw": { + "id": "934ce9e22bcff85d8a8d8d3675b09f26", + "title": "2025-02-20 七十二家房客:托孤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/d3518c5f5c47957077875fb8e49a96ac.jpg", + "contentType": 3, + "releasedAt": 1740056400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/174006512053.m3u8\"}", + "timeLength": 1324, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a92d896a65c3f0e3d0d375712d497dac", + "title": "2025-02-20 七十二家房客:托孤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/a4c1c00a608673a84939e2912f9759ab.jpg", + "releasedAt": 1740056400000, + "timeLength": 1417, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/174006504011.m3u8", + "raw": { + "id": "a92d896a65c3f0e3d0d375712d497dac", + "title": "2025-02-20 七十二家房客:托孤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/a4c1c00a608673a84939e2912f9759ab.jpg", + "contentType": 3, + "releasedAt": 1740056400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/174006504011.m3u8\"}", + "timeLength": 1417, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "abea952bd9d9fdbc68d126cfdbc12b33", + "title": "2025-02-19 七十二家房客:过气特工(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/fce32fa4e8e1755e7b947e39fb61d680.jpg", + "releasedAt": 1739972108000, + "timeLength": 1262, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173997951561.m3u8", + "raw": { + "id": "abea952bd9d9fdbc68d126cfdbc12b33", + "title": "2025-02-19 七十二家房客:过气特工(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/fce32fa4e8e1755e7b947e39fb61d680.jpg", + "contentType": 3, + "releasedAt": 1739972108000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173997951561.m3u8\"}", + "timeLength": 1262, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6dd0fcebc0d77427325f64f1f3f281b9", + "title": "2025-02-19 七十二家房客:过气特工(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/14f6b3ddd1dcbdd27feef87fb3cbd0aa.jpg", + "releasedAt": 1739970000000, + "timeLength": 1417, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173997950839.m3u8", + "raw": { + "id": "6dd0fcebc0d77427325f64f1f3f281b9", + "title": "2025-02-19 七十二家房客:过气特工(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/14f6b3ddd1dcbdd27feef87fb3cbd0aa.jpg", + "contentType": 3, + "releasedAt": 1739970000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173997950839.m3u8\"}", + "timeLength": 1417, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56fae066539587cc773fd1ef57606360", + "title": "2025-02-18 七十二家房客:特派专员(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/10639a5dfa2a431a6c72e29f25387856.jpg", + "releasedAt": 1739885690000, + "timeLength": 1307, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173988898438.m3u8", + "raw": { + "id": "56fae066539587cc773fd1ef57606360", + "title": "2025-02-18 七十二家房客:特派专员(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/10639a5dfa2a431a6c72e29f25387856.jpg", + "contentType": 3, + "releasedAt": 1739885690000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173988898438.m3u8\"}", + "timeLength": 1307, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0435d6a8d7ebdef08469933a916cfc3b", + "title": "2025-02-18 七十二家房客:特派专员(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/873cd5d4deb25ca10827e81669748525.jpg", + "releasedAt": 1739883600000, + "timeLength": 1413, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173988873577.m3u8", + "raw": { + "id": "0435d6a8d7ebdef08469933a916cfc3b", + "title": "2025-02-18 七十二家房客:特派专员(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/873cd5d4deb25ca10827e81669748525.jpg", + "contentType": 3, + "releasedAt": 1739883600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173988873577.m3u8\"}", + "timeLength": 1413, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6e3f4872d6d0a992bf6fe9611df3fe09", + "title": "2025-02-17 七十二家房客:明明白白我的心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/250ec502cc32b8a430a41f53f915d669.jpg", + "releasedAt": 1739799305000, + "timeLength": 1315, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173980546886.m3u8", + "raw": { + "id": "6e3f4872d6d0a992bf6fe9611df3fe09", + "title": "2025-02-17 七十二家房客:明明白白我的心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/250ec502cc32b8a430a41f53f915d669.jpg", + "contentType": 3, + "releasedAt": 1739799305000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173980546886.m3u8\"}", + "timeLength": 1315, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9c951960580d7afa9f3147d8607b9133", + "title": "2025-02-17 七十二家房客:明明白白我的心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/7d9dbf42bf55356bfe403d415e90020b.jpg", + "releasedAt": 1739797200000, + "timeLength": 1414, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173980548253.m3u8", + "raw": { + "id": "9c951960580d7afa9f3147d8607b9133", + "title": "2025-02-17 七十二家房客:明明白白我的心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/7d9dbf42bf55356bfe403d415e90020b.jpg", + "contentType": 3, + "releasedAt": 1739797200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173980548253.m3u8\"}", + "timeLength": 1414, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cbffd5e7901f663f9a09e8f2a87fd5a1", + "title": "2025-02-16 七十二家房客:养女阿竹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/89bfb03cce1df2bbb5193fd497461492.jpg", + "releasedAt": 1739710800000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173972492546.m3u8", + "raw": { + "id": "cbffd5e7901f663f9a09e8f2a87fd5a1", + "title": "2025-02-16 七十二家房客:养女阿竹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/89bfb03cce1df2bbb5193fd497461492.jpg", + "contentType": 3, + "releasedAt": 1739710800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173972492546.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "886106a44bed382d9a5caa47c117b6eb", + "title": "2025-02-16 七十二家房客:养女阿竹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/bade143b5e3b50fd0a86b15237ac962e.jpg", + "releasedAt": 1739710800000, + "timeLength": 1424, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173972493070.m3u8", + "raw": { + "id": "886106a44bed382d9a5caa47c117b6eb", + "title": "2025-02-16 七十二家房客:养女阿竹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/bade143b5e3b50fd0a86b15237ac962e.jpg", + "contentType": 3, + "releasedAt": 1739710800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173972493070.m3u8\"}", + "timeLength": 1424, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9a7d12d2207c29ad822024ba218cc35c", + "title": "2025-02-15 七十二家房客:孤寒财主(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/9b9185884e8790449104f7da34d7e1e7.jpg", + "releasedAt": 1739626225000, + "timeLength": 1323, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173963600995.m3u8", + "raw": { + "id": "9a7d12d2207c29ad822024ba218cc35c", + "title": "2025-02-15 七十二家房客:孤寒财主(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/9b9185884e8790449104f7da34d7e1e7.jpg", + "contentType": 3, + "releasedAt": 1739626225000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173963600995.m3u8\"}", + "timeLength": 1323, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5e3c2e4bc34e15d654fd68d10710fce4", + "title": "2025-02-15 七十二家房客:孤寒财主(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/7980874fbb34c7985880af7dfab95c64.jpg", + "releasedAt": 1739624400000, + "timeLength": 1417, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173963601360.m3u8", + "raw": { + "id": "5e3c2e4bc34e15d654fd68d10710fce4", + "title": "2025-02-15 七十二家房客:孤寒财主(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/7980874fbb34c7985880af7dfab95c64.jpg", + "contentType": 3, + "releasedAt": 1739624400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173963601360.m3u8\"}", + "timeLength": 1417, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad077e1cd81e8df1c51ce526a2766649", + "title": "2025-02-14 七十二家房客:偏向虎山行(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/b41c7fd157cb568217ced139d1192e7f.jpg", + "releasedAt": 1739538000000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173954654636.m3u8", + "raw": { + "id": "ad077e1cd81e8df1c51ce526a2766649", + "title": "2025-02-14 七十二家房客:偏向虎山行(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/b41c7fd157cb568217ced139d1192e7f.jpg", + "contentType": 3, + "releasedAt": 1739538000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173954654636.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5a8d6baad85bb78ef242818dbf07d04f", + "title": "2025-02-14 七十二家房客:偏向虎山行(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/442219a44c08a4247d12678c92ff239b.jpg", + "releasedAt": 1739538000000, + "timeLength": 1246, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173954654572.m3u8", + "raw": { + "id": "5a8d6baad85bb78ef242818dbf07d04f", + "title": "2025-02-14 七十二家房客:偏向虎山行(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/442219a44c08a4247d12678c92ff239b.jpg", + "contentType": 3, + "releasedAt": 1739538000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173954654572.m3u8\"}", + "timeLength": 1246, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ca60a3d094959a01c087a76bc749f281", + "title": "2025-02-13 七十二家房客:合伙单车", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/846001ae6b4c7a9181e6841372174f9d.jpg", + "releasedAt": 1739451600000, + "timeLength": 1317, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173945879082.m3u8", + "raw": { + "id": "ca60a3d094959a01c087a76bc749f281", + "title": "2025-02-13 七十二家房客:合伙单车", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/846001ae6b4c7a9181e6841372174f9d.jpg", + "contentType": 3, + "releasedAt": 1739451600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173945879082.m3u8\"}", + "timeLength": 1317, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c2293951d2497e7ebdb519e70234454f", + "title": "2025-02-13 七十二家房客:一字千金", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/1305a14ed878478bef5f5fe1826350c6.jpg", + "releasedAt": 1739451600000, + "timeLength": 1405, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173945877889.m3u8", + "raw": { + "id": "c2293951d2497e7ebdb519e70234454f", + "title": "2025-02-13 七十二家房客:一字千金", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/1305a14ed878478bef5f5fe1826350c6.jpg", + "contentType": 3, + "releasedAt": 1739451600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173945877889.m3u8\"}", + "timeLength": 1405, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "24d53ca674664ee536b80031b2c3c272", + "title": "2025-02-12 七十二家房客:为善之门(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/6c1c724e7b72a2252e729bac535c151f.jpg", + "releasedAt": 1739367299000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173937680186.m3u8", + "raw": { + "id": "24d53ca674664ee536b80031b2c3c272", + "title": "2025-02-12 七十二家房客:为善之门(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/6c1c724e7b72a2252e729bac535c151f.jpg", + "contentType": 3, + "releasedAt": 1739367299000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173937680186.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0d6a648cb254024998b4a1e4547e17f5", + "title": "2025-02-12 七十二家房客:为善之门(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/c5cc31da8d34f79e4e200e28240daecc.jpg", + "releasedAt": 1739365200000, + "timeLength": 1402, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173937680326.m3u8", + "raw": { + "id": "0d6a648cb254024998b4a1e4547e17f5", + "title": "2025-02-12 七十二家房客:为善之门(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/c5cc31da8d34f79e4e200e28240daecc.jpg", + "contentType": 3, + "releasedAt": 1739365200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173937680326.m3u8\"}", + "timeLength": 1402, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c1383f1c5ba52c740a921dfd36b7309e", + "title": "2025-02-11 七十二家房客:前辈与晚辈(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/1bafe87929a94827d131c437127a1634.jpg", + "releasedAt": 1739278800000, + "timeLength": 1396, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173928528238.m3u8", + "raw": { + "id": "c1383f1c5ba52c740a921dfd36b7309e", + "title": "2025-02-11 七十二家房客:前辈与晚辈(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/1bafe87929a94827d131c437127a1634.jpg", + "contentType": 3, + "releasedAt": 1739278800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173928528238.m3u8\"}", + "timeLength": 1396, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5da0cb89cf20c2627507e68566a57edd", + "title": "2025-02-10 七十二家房客:与虎谋皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/6abc9159d1dfa55378a91fd3146de42b.jpg", + "releasedAt": 1739194517000, + "timeLength": 1316, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173919814666.m3u8", + "raw": { + "id": "5da0cb89cf20c2627507e68566a57edd", + "title": "2025-02-10 七十二家房客:与虎谋皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/6abc9159d1dfa55378a91fd3146de42b.jpg", + "contentType": 3, + "releasedAt": 1739194517000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173919814666.m3u8\"}", + "timeLength": 1316, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dce6c8efebd08c409640453c6b0b9160", + "title": "2025-02-10 七十二家房客:与虎谋皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/3d27855234842beaaa2bc02bb28e17bd.jpg", + "releasedAt": 1739192400000, + "timeLength": 1415, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173919817546.m3u8", + "raw": { + "id": "dce6c8efebd08c409640453c6b0b9160", + "title": "2025-02-10 七十二家房客:与虎谋皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/3d27855234842beaaa2bc02bb28e17bd.jpg", + "contentType": 3, + "releasedAt": 1739192400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173919817546.m3u8\"}", + "timeLength": 1415, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "58428a78427a0cd00957812c207746cd", + "title": "2025-02-09 七十二家房客:寄居蟹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/5cd6393ebb0f70b667be06ec7ac6352c.jpg", + "releasedAt": 1739106000000, + "timeLength": 1417, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173911372426.m3u8", + "raw": { + "id": "58428a78427a0cd00957812c207746cd", + "title": "2025-02-09 七十二家房客:寄居蟹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/5cd6393ebb0f70b667be06ec7ac6352c.jpg", + "contentType": 3, + "releasedAt": 1739106000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173911372426.m3u8\"}", + "timeLength": 1417, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "94500329c018b7e3b0996cbbd5f72d34", + "title": "2025-02-09 七十二家房客:寄居蟹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/f9bdeb60365d9be88437dd43789d3a60.jpg", + "releasedAt": 1739106000000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173911373645.m3u8", + "raw": { + "id": "94500329c018b7e3b0996cbbd5f72d34", + "title": "2025-02-09 七十二家房客:寄居蟹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/f9bdeb60365d9be88437dd43789d3a60.jpg", + "contentType": 3, + "releasedAt": 1739106000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173911373645.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "572206677f02830840ac7c11835b04e9", + "title": "2025-02-08 七十二家房客:酒局风波(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/ceedfecc0ccb1476aa267feb05f42514.jpg", + "releasedAt": 1739019600000, + "timeLength": 1308, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173911669519.m3u8", + "raw": { + "id": "572206677f02830840ac7c11835b04e9", + "title": "2025-02-08 七十二家房客:酒局风波(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/ceedfecc0ccb1476aa267feb05f42514.jpg", + "contentType": 3, + "releasedAt": 1739019600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173911669519.m3u8\"}", + "timeLength": 1308, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b038a6be6fbec0806754215a4580e45e", + "title": "2025-02-08 七十二家房客:酒局风波(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/d8536801c1bd5d22f49f3fca1b02b972.jpg", + "releasedAt": 1739019600000, + "timeLength": 1414, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173911666529.m3u8", + "raw": { + "id": "b038a6be6fbec0806754215a4580e45e", + "title": "2025-02-08 七十二家房客:酒局风波(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/d8536801c1bd5d22f49f3fca1b02b972.jpg", + "contentType": 3, + "releasedAt": 1739019600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173911666529.m3u8\"}", + "timeLength": 1414, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "085243cd4ffe47049cebaf25132720cc", + "title": "2025-02-07 七十二家房客:江湖疑凶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/3afe55cb992db7b37f6ffd11a983e745.jpg", + "releasedAt": 1738933200000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173894130937.m3u8", + "raw": { + "id": "085243cd4ffe47049cebaf25132720cc", + "title": "2025-02-07 七十二家房客:江湖疑凶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/3afe55cb992db7b37f6ffd11a983e745.jpg", + "contentType": 3, + "releasedAt": 1738933200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173894130937.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "028ba116e48d0e8612a4634ee8a84542", + "title": "2025-02-07 七十二家房客:江湖疑凶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/a99e56c562172c2fe79887ac32b2134a.jpg", + "releasedAt": 1738933200000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173894308040.m3u8", + "raw": { + "id": "028ba116e48d0e8612a4634ee8a84542", + "title": "2025-02-07 七十二家房客:江湖疑凶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/a99e56c562172c2fe79887ac32b2134a.jpg", + "contentType": 3, + "releasedAt": 1738933200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173894308040.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f4d3976a7323194a2d32b0a19d1ec3ef", + "title": "2025-02-06 七十二家房客:我不是神经病(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/56a8bfac64a1d4991ebc6a6a2021f1de.jpg", + "releasedAt": 1738848902000, + "timeLength": 1307, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173885565434.m3u8", + "raw": { + "id": "f4d3976a7323194a2d32b0a19d1ec3ef", + "title": "2025-02-06 七十二家房客:我不是神经病(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/56a8bfac64a1d4991ebc6a6a2021f1de.jpg", + "contentType": 3, + "releasedAt": 1738848902000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173885565434.m3u8\"}", + "timeLength": 1307, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dfa27f053bd9b6573efbac9d874fc97e", + "title": "2025-02-06 七十二家房客:我不是神经病(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/849cfb13a5a4f02f0fe246359e2c479f.jpg", + "releasedAt": 1738846800000, + "timeLength": 1407, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173885565439.m3u8", + "raw": { + "id": "dfa27f053bd9b6573efbac9d874fc97e", + "title": "2025-02-06 七十二家房客:我不是神经病(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/849cfb13a5a4f02f0fe246359e2c479f.jpg", + "contentType": 3, + "releasedAt": 1738846800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173885565439.m3u8\"}", + "timeLength": 1407, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "79574becd64a04a3b074c9e46bf8a843", + "title": "2025-02-05 七十二家房客:怒火街头", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/55fca2b697fbdedc2804d7e41161e675.jpg", + "releasedAt": 1738760392000, + "timeLength": 1409, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173876881114.m3u8", + "raw": { + "id": "79574becd64a04a3b074c9e46bf8a843", + "title": "2025-02-05 七十二家房客:怒火街头", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/55fca2b697fbdedc2804d7e41161e675.jpg", + "contentType": 3, + "releasedAt": 1738760392000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173876881114.m3u8\"}", + "timeLength": 1409, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "96057d9dd41cc48b6db985103a443fa7", + "title": "2025-02-05 七十二家房客:土地庙", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/142a5782cc760bf5c6893ede043172c8.jpg", + "releasedAt": 1738760392000, + "timeLength": 1390, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173876887162.m3u8", + "raw": { + "id": "96057d9dd41cc48b6db985103a443fa7", + "title": "2025-02-05 七十二家房客:土地庙", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/142a5782cc760bf5c6893ede043172c8.jpg", + "contentType": 3, + "releasedAt": 1738760392000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173876887162.m3u8\"}", + "timeLength": 1390, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e2d5799b9d84fb05f3485f518c55023a", + "title": "2025-02-04 七十二家房客:左右为难(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/c6aa3f0d5c106940c73292134b6b0aec.jpg", + "releasedAt": 1738676112000, + "timeLength": 1318, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173868221981.m3u8", + "raw": { + "id": "e2d5799b9d84fb05f3485f518c55023a", + "title": "2025-02-04 七十二家房客:左右为难(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/c6aa3f0d5c106940c73292134b6b0aec.jpg", + "contentType": 3, + "releasedAt": 1738676112000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173868221981.m3u8\"}", + "timeLength": 1318, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91c62bed0834db35609fc3bd38ef8817", + "title": "2025-02-04 七十二家房客:左右为难(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/091ac587884d080fcf3677b1555f0d6e.jpg", + "releasedAt": 1738674000000, + "timeLength": 1421, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173868218948.m3u8", + "raw": { + "id": "91c62bed0834db35609fc3bd38ef8817", + "title": "2025-02-04 七十二家房客:左右为难(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/091ac587884d080fcf3677b1555f0d6e.jpg", + "contentType": 3, + "releasedAt": 1738674000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173868218948.m3u8\"}", + "timeLength": 1421, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "32a07a0dc5b713a2935ac2b49cf8b283", + "title": "2025-02-03 七十二家房客:臭味相投(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/fff911ba7a2d6cba52c0fbdad53b0891.jpg", + "releasedAt": 1738587600000, + "timeLength": 1406, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173859688873.m3u8", + "raw": { + "id": "32a07a0dc5b713a2935ac2b49cf8b283", + "title": "2025-02-03 七十二家房客:臭味相投(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/fff911ba7a2d6cba52c0fbdad53b0891.jpg", + "contentType": 3, + "releasedAt": 1738587600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173859688873.m3u8\"}", + "timeLength": 1406, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e2ce94974faf4590455cee246a9e4e5f", + "title": "2025-02-02 七十二家房客:阿香的成长", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/cd8a94cc0285312b0b823922cb6e0f78.jpg", + "releasedAt": 1738502957000, + "timeLength": 1325, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173851058283.m3u8", + "raw": { + "id": "e2ce94974faf4590455cee246a9e4e5f", + "title": "2025-02-02 七十二家房客:阿香的成长", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/cd8a94cc0285312b0b823922cb6e0f78.jpg", + "contentType": 3, + "releasedAt": 1738502957000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173851058283.m3u8\"}", + "timeLength": 1325, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ec40ca73eedac86973e6e92ffb732339", + "title": "2025-02-01 七十二家房客:杏林育新技(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/bd0242e9e96ad0ea20adc2f0f6c85abf.jpg", + "releasedAt": 1738416586000, + "timeLength": 1316, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173868222778.m3u8", + "raw": { + "id": "ec40ca73eedac86973e6e92ffb732339", + "title": "2025-02-01 七十二家房客:杏林育新技(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/bd0242e9e96ad0ea20adc2f0f6c85abf.jpg", + "contentType": 3, + "releasedAt": 1738416586000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173868222778.m3u8\"}", + "timeLength": 1316, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1b18a970b49d5010b89e523d09ae90c7", + "title": "2025-02-01 七十二家房客:杏林育新技(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/178f0945da423cab93ebe2560a413f27.jpg", + "releasedAt": 1738414800000, + "timeLength": 1418, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173868222398.m3u8", + "raw": { + "id": "1b18a970b49d5010b89e523d09ae90c7", + "title": "2025-02-01 七十二家房客:杏林育新技(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/02/178f0945da423cab93ebe2560a413f27.jpg", + "contentType": 3, + "releasedAt": 1738414800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173868222398.m3u8\"}", + "timeLength": 1418, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0eb254fa2be0418170903a632e12c6f5", + "title": "2025-01-31 七十二家房客:生子疑团(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/23379e3be7a78fed5213b66a7d5075b2.jpg", + "releasedAt": 1738328400000, + "timeLength": 1412, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173833499445.m3u8", + "raw": { + "id": "0eb254fa2be0418170903a632e12c6f5", + "title": "2025-01-31 七十二家房客:生子疑团(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/23379e3be7a78fed5213b66a7d5075b2.jpg", + "contentType": 3, + "releasedAt": 1738328400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173833499445.m3u8\"}", + "timeLength": 1412, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2926524b218a353ca74cc90abafa7dc3", + "title": "2025-01-31 七十二家房客:生子疑团(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/f7d42ca9a337d5fe4cdf840fdc3cba16.jpg", + "releasedAt": 1738328400000, + "timeLength": 1311, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173833499563.m3u8", + "raw": { + "id": "2926524b218a353ca74cc90abafa7dc3", + "title": "2025-01-31 七十二家房客:生子疑团(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/f7d42ca9a337d5fe4cdf840fdc3cba16.jpg", + "contentType": 3, + "releasedAt": 1738328400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173833499563.m3u8\"}", + "timeLength": 1311, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "20c7964476bdf728af18ea3176874469", + "title": "2025-01-29 七十二家房客:抽签游戏", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/99bcaadbfe27fbbe9a6053c86a57b6f0.jpg", + "releasedAt": 1738157650000, + "timeLength": 1306, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173816552036.m3u8", + "raw": { + "id": "20c7964476bdf728af18ea3176874469", + "title": "2025-01-29 七十二家房客:抽签游戏", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/99bcaadbfe27fbbe9a6053c86a57b6f0.jpg", + "contentType": 3, + "releasedAt": 1738157650000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173816552036.m3u8\"}", + "timeLength": 1306, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8bfa1a12bd1d864851e16bfb8ad085ca", + "title": "2025-01-29 七十二家房客:私密照片", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/654fce1cac0e9839c0499cf5bacb7f61.jpg", + "releasedAt": 1738155600000, + "timeLength": 1413, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173816548684.m3u8", + "raw": { + "id": "8bfa1a12bd1d864851e16bfb8ad085ca", + "title": "2025-01-29 七十二家房客:私密照片", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/654fce1cac0e9839c0499cf5bacb7f61.jpg", + "contentType": 3, + "releasedAt": 1738155600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173816548684.m3u8\"}", + "timeLength": 1413, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7e5e1262df72c9eb4bdc744e3a2850cd", + "title": "2025-01-28 七十二家房客:自黑记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/455da3ebabc19817d82230ffcb4d337b.jpg", + "releasedAt": 1738071278000, + "timeLength": 1325, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173808113324.m3u8", + "raw": { + "id": "7e5e1262df72c9eb4bdc744e3a2850cd", + "title": "2025-01-28 七十二家房客:自黑记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/455da3ebabc19817d82230ffcb4d337b.jpg", + "contentType": 3, + "releasedAt": 1738071278000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173808113324.m3u8\"}", + "timeLength": 1325, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6072f69444cfee27effa9b7df0cf1703", + "title": "2025-01-28 七十二家房客:茶室乐园", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/a0ba09aa94a2248c8f56ff0c3948ddf0.jpg", + "releasedAt": 1738069200000, + "timeLength": 1424, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173808110548.m3u8", + "raw": { + "id": "6072f69444cfee27effa9b7df0cf1703", + "title": "2025-01-28 七十二家房客:茶室乐园", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/a0ba09aa94a2248c8f56ff0c3948ddf0.jpg", + "contentType": 3, + "releasedAt": 1738069200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173808110548.m3u8\"}", + "timeLength": 1424, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "15fb170508fb6b8f5626dd5fc31e98c9", + "title": "2025-01-26 七十二家房客:草药(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/685cbce7ade7113752e29936174c2e32.jpg", + "releasedAt": 1737898248000, + "timeLength": 1312, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173790234923.m3u8", + "raw": { + "id": "15fb170508fb6b8f5626dd5fc31e98c9", + "title": "2025-01-26 七十二家房客:草药(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/685cbce7ade7113752e29936174c2e32.jpg", + "contentType": 3, + "releasedAt": 1737898248000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173790234923.m3u8\"}", + "timeLength": 1312, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6e92aff32c9aba68ac78e6ccfd29418f", + "title": "2025-01-26 七十二家房客:草药(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/13223605820f3aa4a21fde56522d8c05.jpg", + "releasedAt": 1737896400000, + "timeLength": 1400, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173790161331.m3u8", + "raw": { + "id": "6e92aff32c9aba68ac78e6ccfd29418f", + "title": "2025-01-26 七十二家房客:草药(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/13223605820f3aa4a21fde56522d8c05.jpg", + "contentType": 3, + "releasedAt": 1737896400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173790161331.m3u8\"}", + "timeLength": 1400, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c12b6dbeea548073d892a14ef2b115bd", + "title": "2025-01-25 七十二家房客:最后一批通行证(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/503667dd0260e10876d1ad4c94c6e8e4.jpg", + "releasedAt": 1737811865000, + "timeLength": 1315, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173781646932.m3u8", + "raw": { + "id": "c12b6dbeea548073d892a14ef2b115bd", + "title": "2025-01-25 七十二家房客:最后一批通行证(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/503667dd0260e10876d1ad4c94c6e8e4.jpg", + "contentType": 3, + "releasedAt": 1737811865000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173781646932.m3u8\"}", + "timeLength": 1315, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8e880e72824147bc0cf3966c4d6fed6e", + "title": "2025-01-25 七十二家房客:最后一批通行证(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/91384e434eb938c49f1227633b726160.jpg", + "releasedAt": 1737810000000, + "timeLength": 1423, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173781408992.m3u8", + "raw": { + "id": "8e880e72824147bc0cf3966c4d6fed6e", + "title": "2025-01-25 七十二家房客:最后一批通行证(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/91384e434eb938c49f1227633b726160.jpg", + "contentType": 3, + "releasedAt": 1737810000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173781408992.m3u8\"}", + "timeLength": 1423, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3685a98d74d6d0e2d6ee847452f7c144", + "title": "2025-01-24 七十二家房客:理解万岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/e76d9a33dce05c37cd03308ef18dcfb9.jpg", + "releasedAt": 1737725738000, + "timeLength": 1323, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173781409049.m3u8", + "raw": { + "id": "3685a98d74d6d0e2d6ee847452f7c144", + "title": "2025-01-24 七十二家房客:理解万岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/e76d9a33dce05c37cd03308ef18dcfb9.jpg", + "contentType": 3, + "releasedAt": 1737725738000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173781409049.m3u8\"}", + "timeLength": 1323, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e0a94c1ffdd221445bccfd0b076325df", + "title": "2025-01-24 七十二家房客:理解万岁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/04abe7f383ea4cc0355d44fb02512072.jpg", + "releasedAt": 1737723600000, + "timeLength": 1404, + "videoUrl": "https://vod.gdtv.cn/m3u8/202502/173781409827.m3u8", + "raw": { + "id": "e0a94c1ffdd221445bccfd0b076325df", + "title": "2025-01-24 七十二家房客:理解万岁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/04abe7f383ea4cc0355d44fb02512072.jpg", + "contentType": 3, + "releasedAt": 1737723600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202502/173781409827.m3u8\"}", + "timeLength": 1404, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8a94206ed31729a2bff0cdbe2c5f4a24", + "title": "2025-01-23 七十二家房客:到嘴的鸭子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/cab01c4c218de59a41df6a532306c344.jpg", + "releasedAt": 1737639347000, + "timeLength": 1316, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173765141327.m3u8", + "raw": { + "id": "8a94206ed31729a2bff0cdbe2c5f4a24", + "title": "2025-01-23 七十二家房客:到嘴的鸭子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/cab01c4c218de59a41df6a532306c344.jpg", + "contentType": 3, + "releasedAt": 1737639347000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173765141327.m3u8\"}", + "timeLength": 1316, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c0fe7de05143de90a74c147d10203b86", + "title": "2025-01-23 七十二家房客:到嘴的鸭子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/91a2cf90b12c809a6544330baaa9ad80.jpg", + "releasedAt": 1737637200000, + "timeLength": 1417, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173765142947.m3u8", + "raw": { + "id": "c0fe7de05143de90a74c147d10203b86", + "title": "2025-01-23 七十二家房客:到嘴的鸭子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/91a2cf90b12c809a6544330baaa9ad80.jpg", + "contentType": 3, + "releasedAt": 1737637200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173765142947.m3u8\"}", + "timeLength": 1417, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c7fef9f898ec3b91aed1372420fe4e0c", + "title": "2025-01-22 七十二家房客:放鹰计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/9bff45e33165963d2c22d7bd34b2deb8.jpg", + "releasedAt": 1737550800000, + "timeLength": 1320, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173755884234.m3u8", + "raw": { + "id": "c7fef9f898ec3b91aed1372420fe4e0c", + "title": "2025-01-22 七十二家房客:放鹰计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/9bff45e33165963d2c22d7bd34b2deb8.jpg", + "contentType": 3, + "releasedAt": 1737550800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173755884234.m3u8\"}", + "timeLength": 1320, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "005bb3586cfa2a9eec6d8809e6b12147", + "title": "2025-01-22 七十二家房客:放鹰计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3cdec3089e3071367e1810828fd04443.jpg", + "releasedAt": 1737550800000, + "timeLength": 1421, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173755887242.m3u8", + "raw": { + "id": "005bb3586cfa2a9eec6d8809e6b12147", + "title": "2025-01-22 七十二家房客:放鹰计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3cdec3089e3071367e1810828fd04443.jpg", + "contentType": 3, + "releasedAt": 1737550800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173755887242.m3u8\"}", + "timeLength": 1421, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "48caffa3a96edd1a479b673ccd003eb5", + "title": "2025-01-21 七十二家房客:妇女救星(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/0974c0a3c0d774c32ab53b8f0e03a8aa.jpg", + "releasedAt": 1737466562000, + "timeLength": 1308, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173747081554.m3u8", + "raw": { + "id": "48caffa3a96edd1a479b673ccd003eb5", + "title": "2025-01-21 七十二家房客:妇女救星(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/0974c0a3c0d774c32ab53b8f0e03a8aa.jpg", + "contentType": 3, + "releasedAt": 1737466562000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173747081554.m3u8\"}", + "timeLength": 1308, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b5ebd40d5bf9494d8ca7c336bed9bcca", + "title": "2025-01-21 七十二家房客:妇女救星(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/ee247469c45a58a6bbe64f9266ddd9ad.jpg", + "releasedAt": 1737464400000, + "timeLength": 1423, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173746949717.m3u8", + "raw": { + "id": "b5ebd40d5bf9494d8ca7c336bed9bcca", + "title": "2025-01-21 七十二家房客:妇女救星(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/ee247469c45a58a6bbe64f9266ddd9ad.jpg", + "contentType": 3, + "releasedAt": 1737464400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173746949717.m3u8\"}", + "timeLength": 1423, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "74835689e95d356deaf8652b3dea5a0e", + "title": "2025-01-20 七十二家房客:温暖的送别", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/f414b6c22a90c1771801b7bdcae36cdb.jpg", + "releasedAt": 1737378000000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173738566727.m3u8", + "raw": { + "id": "74835689e95d356deaf8652b3dea5a0e", + "title": "2025-01-20 七十二家房客:温暖的送别", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/f414b6c22a90c1771801b7bdcae36cdb.jpg", + "contentType": 3, + "releasedAt": 1737378000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173738566727.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0664d6c43737c8213b914240e123e24b", + "title": "2025-01-20 七十二家房客:祸福香炉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3faa2b8f9a02526290c768b5ea772aef.jpg", + "releasedAt": 1737378000000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173738565965.m3u8", + "raw": { + "id": "0664d6c43737c8213b914240e123e24b", + "title": "2025-01-20 七十二家房客:祸福香炉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3faa2b8f9a02526290c768b5ea772aef.jpg", + "contentType": 3, + "releasedAt": 1737378000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173738565965.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d20636861dbaf620599c9682c5434c18", + "title": "2025-01-19 七十二家房客:闹剧(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/e90ac20a7639a593abd741ada2ac8d18.jpg", + "releasedAt": 1737293414000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173730300617.m3u8", + "raw": { + "id": "d20636861dbaf620599c9682c5434c18", + "title": "2025-01-19 七十二家房客:闹剧(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/e90ac20a7639a593abd741ada2ac8d18.jpg", + "contentType": 3, + "releasedAt": 1737293414000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173730300617.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8df0c86e0c2373468658140dc08d093e", + "title": "2025-01-19 七十二家房客:闹剧(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/c6c597bd352fe4a674b3a1967581e8d2.jpg", + "releasedAt": 1737291600000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173730302196.m3u8", + "raw": { + "id": "8df0c86e0c2373468658140dc08d093e", + "title": "2025-01-19 七十二家房客:闹剧(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/c6c597bd352fe4a674b3a1967581e8d2.jpg", + "contentType": 3, + "releasedAt": 1737291600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173730302196.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f1245cd8b11114355a25b74c41f1b208", + "title": "2025-01-18 七十二家房客:女人心计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/45b28db29570a963f745abf8bf78390e.jpg", + "releasedAt": 1737207020000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173721169690.m3u8", + "raw": { + "id": "f1245cd8b11114355a25b74c41f1b208", + "title": "2025-01-18 七十二家房客:女人心计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/45b28db29570a963f745abf8bf78390e.jpg", + "contentType": 3, + "releasedAt": 1737207020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173721169690.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "12a5ed894d76a97a39009c10d8f100f1", + "title": "2025-01-18 七十二家房客:女人心计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/ce9281cdd2d1298cfcbab54b1cdfefbb.jpg", + "releasedAt": 1737205200000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173721168845.m3u8", + "raw": { + "id": "12a5ed894d76a97a39009c10d8f100f1", + "title": "2025-01-18 七十二家房客:女人心计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/ce9281cdd2d1298cfcbab54b1cdfefbb.jpg", + "contentType": 3, + "releasedAt": 1737205200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173721168845.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1a7ad9252cd3aeeb3e21ebce2f0347ad", + "title": "2025-01-17 七十二家房客:过房儿子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/ff255400f88b135a2581d11b1c24244c.jpg", + "releasedAt": 1737120744000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173713317471.m3u8", + "raw": { + "id": "1a7ad9252cd3aeeb3e21ebce2f0347ad", + "title": "2025-01-17 七十二家房客:过房儿子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/ff255400f88b135a2581d11b1c24244c.jpg", + "contentType": 3, + "releasedAt": 1737120744000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173713317471.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1d25bca762060cb11fcabdf4f818f7f0", + "title": "2025-01-17 七十二家房客:过房儿子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3e4fd723e0d333530c7b25fb19ac77e6.jpg", + "releasedAt": 1737118800000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173713317533.m3u8", + "raw": { + "id": "1d25bca762060cb11fcabdf4f818f7f0", + "title": "2025-01-17 七十二家房客:过房儿子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3e4fd723e0d333530c7b25fb19ac77e6.jpg", + "contentType": 3, + "releasedAt": 1737118800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173713317533.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8535c259818399d1f4f2194b084d4efa", + "title": "2025-01-16 七十二家房客:黄梨梦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/23ff7f38004366ba26766d32cb113cfc.jpg", + "releasedAt": 1737034340000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173704212048.m3u8", + "raw": { + "id": "8535c259818399d1f4f2194b084d4efa", + "title": "2025-01-16 七十二家房客:黄梨梦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/23ff7f38004366ba26766d32cb113cfc.jpg", + "contentType": 3, + "releasedAt": 1737034340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173704212048.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1ddcfe11e6d86acd3730a1a4b2da3fa0", + "title": "2025-01-16 七十二家房客:黄梨梦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/066d149ee0dd2f4f9127df939a0128f4.jpg", + "releasedAt": 1737032400000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173704211933.m3u8", + "raw": { + "id": "1ddcfe11e6d86acd3730a1a4b2da3fa0", + "title": "2025-01-16 七十二家房客:黄梨梦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/066d149ee0dd2f4f9127df939a0128f4.jpg", + "contentType": 3, + "releasedAt": 1737032400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173704211933.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "84edce5bee6d9d39d6c6815b6beab12b", + "title": "2025-01-15 七十二家房客:媒人福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/114e8a3265ae92d40d488bc443da52e3.jpg", + "releasedAt": 1736947959000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173695221923.m3u8", + "raw": { + "id": "84edce5bee6d9d39d6c6815b6beab12b", + "title": "2025-01-15 七十二家房客:媒人福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/114e8a3265ae92d40d488bc443da52e3.jpg", + "contentType": 3, + "releasedAt": 1736947959000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173695221923.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1177471992ae6366a7ad800cc230e956", + "title": "2025-01-15 七十二家房客:造反的马仔", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/eb10c0a08a3a743421f72ff9d613bde2.jpg", + "releasedAt": 1736946000000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173695221746.m3u8", + "raw": { + "id": "1177471992ae6366a7ad800cc230e956", + "title": "2025-01-15 七十二家房客:造反的马仔", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/eb10c0a08a3a743421f72ff9d613bde2.jpg", + "contentType": 3, + "releasedAt": 1736946000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173695221746.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "763f82abf430e4787367f6dda9983543", + "title": "2025-01-14 七十二家房客:托孤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/cdd7ce10dbef01dfc5e9f37d28ee079f.jpg", + "releasedAt": 1736861544000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173686613643.m3u8", + "raw": { + "id": "763f82abf430e4787367f6dda9983543", + "title": "2025-01-14 七十二家房客:托孤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/cdd7ce10dbef01dfc5e9f37d28ee079f.jpg", + "contentType": 3, + "releasedAt": 1736861544000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173686613643.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "931c9330f9254cb05aff871745c5b4ff", + "title": "2025-01-14 七十二家房客:托孤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/67867872cadc5bbaaf5e78fb387cc44c.jpg", + "releasedAt": 1736859600000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173686612894.m3u8", + "raw": { + "id": "931c9330f9254cb05aff871745c5b4ff", + "title": "2025-01-14 七十二家房客:托孤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/67867872cadc5bbaaf5e78fb387cc44c.jpg", + "contentType": 3, + "releasedAt": 1736859600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173686612894.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56f50d7d7274feb31ea16abe13be5726", + "title": "2025-01-13 七十二家房客:过气特工(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/1a7f144d2b9ca740bd0ed738d07876a3.jpg", + "releasedAt": 1736773200000, + "timeLength": 1227, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173678144618.m3u8", + "raw": { + "id": "56f50d7d7274feb31ea16abe13be5726", + "title": "2025-01-13 七十二家房客:过气特工(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/1a7f144d2b9ca740bd0ed738d07876a3.jpg", + "contentType": 3, + "releasedAt": 1736773200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173678144618.m3u8\"}", + "timeLength": 1227, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d36b7383dfa7f3b046fb5cc8de6a77de", + "title": "2025-01-13 七十二家房客:过气特工(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/e931ee1813d9404b94b9989451c77159.jpg", + "releasedAt": 1736773200000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173678147296.m3u8", + "raw": { + "id": "d36b7383dfa7f3b046fb5cc8de6a77de", + "title": "2025-01-13 七十二家房客:过气特工(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/e931ee1813d9404b94b9989451c77159.jpg", + "contentType": 3, + "releasedAt": 1736773200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173678147296.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "80b032a229751fc6eaae03be6126a5f0", + "title": "2025-01-12 七十二家房客:特派专员(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/74c1e9e1a8ba33dd0995f2f90eed5670.jpg", + "releasedAt": 1736688629000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173669212935.m3u8", + "raw": { + "id": "80b032a229751fc6eaae03be6126a5f0", + "title": "2025-01-12 七十二家房客:特派专员(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/74c1e9e1a8ba33dd0995f2f90eed5670.jpg", + "contentType": 3, + "releasedAt": 1736688629000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173669212935.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f7ab9bbbcaa116488ecb84e5eec17208", + "title": "2025-01-12 七十二家房客:特派专员(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/01f3050bcd08fa2c3f01cf200833b2dd.jpg", + "releasedAt": 1736686800000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173669212933.m3u8", + "raw": { + "id": "f7ab9bbbcaa116488ecb84e5eec17208", + "title": "2025-01-12 七十二家房客:特派专员(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/01f3050bcd08fa2c3f01cf200833b2dd.jpg", + "contentType": 3, + "releasedAt": 1736686800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173669212933.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "092d19fe595bb88ef9fa2d08f18aea1a", + "title": "2025-01-11 七十二家房客:明明白白我的心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/dae419032e950acc320f0917232b1bcd.jpg", + "releasedAt": 1736602223000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173660496774.m3u8", + "raw": { + "id": "092d19fe595bb88ef9fa2d08f18aea1a", + "title": "2025-01-11 七十二家房客:明明白白我的心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/dae419032e950acc320f0917232b1bcd.jpg", + "contentType": 3, + "releasedAt": 1736602223000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173660496774.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a7e7b5f559f7c954867d7d55107f1b1d", + "title": "2025-01-11 七十二家房客:明明白白我的心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/41dd7da99778b73f8184d25727a04b69.jpg", + "releasedAt": 1736600400000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173660439769.m3u8", + "raw": { + "id": "a7e7b5f559f7c954867d7d55107f1b1d", + "title": "2025-01-11 七十二家房客:明明白白我的心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/41dd7da99778b73f8184d25727a04b69.jpg", + "contentType": 3, + "releasedAt": 1736600400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173660439769.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3598d948985c239f83f83c937916c4bd", + "title": "2025-01-10 七十二家房客:养女阿竹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/21f7113627259854705746b9066edeff.jpg", + "releasedAt": 1736515992000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173652152258.m3u8", + "raw": { + "id": "3598d948985c239f83f83c937916c4bd", + "title": "2025-01-10 七十二家房客:养女阿竹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/21f7113627259854705746b9066edeff.jpg", + "contentType": 3, + "releasedAt": 1736515992000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173652152258.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c5afa5f4708515bdb5a4cddbe8dcfa0c", + "title": "2025-01-10 七十二家房客:养女阿竹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/21d3f2697e1e735c997f1a349d77e1a8.jpg", + "releasedAt": 1736514000000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173652152792.m3u8", + "raw": { + "id": "c5afa5f4708515bdb5a4cddbe8dcfa0c", + "title": "2025-01-10 七十二家房客:养女阿竹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/21d3f2697e1e735c997f1a349d77e1a8.jpg", + "contentType": 3, + "releasedAt": 1736514000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173652152792.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4b93128dd2e21e2d4c41fb684cbf294d", + "title": "2025-01-09 七十二家房客:孤寒财主(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/554de8b1bd7749b02f7cdfa9cb5b4d1e.jpg", + "releasedAt": 1736429566000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173643984027.m3u8", + "raw": { + "id": "4b93128dd2e21e2d4c41fb684cbf294d", + "title": "2025-01-09 七十二家房客:孤寒财主(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/554de8b1bd7749b02f7cdfa9cb5b4d1e.jpg", + "contentType": 3, + "releasedAt": 1736429566000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173643984027.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a1a78a71802ab8bc3c251e24d1c8120", + "title": "2025-01-09 七十二家房客:孤寒财主(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/642aa65088e49d18269182b288974460.jpg", + "releasedAt": 1736427600000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173643984522.m3u8", + "raw": { + "id": "6a1a78a71802ab8bc3c251e24d1c8120", + "title": "2025-01-09 七十二家房客:孤寒财主(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/642aa65088e49d18269182b288974460.jpg", + "contentType": 3, + "releasedAt": 1736427600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173643984522.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "139a8d40af5c3e8f7ea6df688a1d9312", + "title": "2025-01-08 七十二家房客:偏向虎山行(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/935c0098fac8e7f91f0e9032d65744ab.jpg", + "releasedAt": 1736343168000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173634919121.m3u8", + "raw": { + "id": "139a8d40af5c3e8f7ea6df688a1d9312", + "title": "2025-01-08 七十二家房客:偏向虎山行(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/935c0098fac8e7f91f0e9032d65744ab.jpg", + "contentType": 3, + "releasedAt": 1736343168000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173634919121.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "169c19ff1c627de11da10c55ee647052", + "title": "2025-01-08 七十二家房客:偏向虎山行(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/42dc8f0dc21e28dc38d3a6306ff11fb7.jpg", + "releasedAt": 1736341200000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173634697482.m3u8", + "raw": { + "id": "169c19ff1c627de11da10c55ee647052", + "title": "2025-01-08 七十二家房客:偏向虎山行(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/42dc8f0dc21e28dc38d3a6306ff11fb7.jpg", + "contentType": 3, + "releasedAt": 1736341200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173634697482.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "147eee25271b5a7901233b95b53c090c", + "title": "2025-01-07 七十二家房客:合伙单车", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/5727a16b42e28b7febc7a2753dfa395d.jpg", + "releasedAt": 1736256749000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173634411459.m3u8", + "raw": { + "id": "147eee25271b5a7901233b95b53c090c", + "title": "2025-01-07 七十二家房客:合伙单车", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/5727a16b42e28b7febc7a2753dfa395d.jpg", + "contentType": 3, + "releasedAt": 1736256749000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173634411459.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d85d0a17218d4c3849efd3195874619c", + "title": "2025-01-07 七十二家房客:一字千金", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/589ef0433e1a0ddf4f5162b8df2baa44.jpg", + "releasedAt": 1736254800000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173626031498.m3u8", + "raw": { + "id": "d85d0a17218d4c3849efd3195874619c", + "title": "2025-01-07 七十二家房客:一字千金", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/589ef0433e1a0ddf4f5162b8df2baa44.jpg", + "contentType": 3, + "releasedAt": 1736254800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173626031498.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aa8e6d1c428c943b8ce3c0edd6e33bc0", + "title": "2025-01-06 七十二家房客:为善之门(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/369178005b5fd14539cd57c470d4930c.jpg", + "releasedAt": 1736168400000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173617506515.m3u8", + "raw": { + "id": "aa8e6d1c428c943b8ce3c0edd6e33bc0", + "title": "2025-01-06 七十二家房客:为善之门(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/369178005b5fd14539cd57c470d4930c.jpg", + "contentType": 3, + "releasedAt": 1736168400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173617506515.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ccd15c9601c8cd6534944aad7d4e9657", + "title": "2025-01-06 七十二家房客:为善之门(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/d112757a1d57b679e19b108a6ee6d15a.jpg", + "releasedAt": 1736168400000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173617507311.m3u8", + "raw": { + "id": "ccd15c9601c8cd6534944aad7d4e9657", + "title": "2025-01-06 七十二家房客:为善之门(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/d112757a1d57b679e19b108a6ee6d15a.jpg", + "contentType": 3, + "releasedAt": 1736168400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173617507311.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0921959cb1a896f0f0c67268624c3b8b", + "title": "2025-01-05 七十二家房客:前辈与晚辈(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/5bb7a3b9e784ea4fd98759083b953431.jpg", + "releasedAt": 1736082000000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173609071231.m3u8", + "raw": { + "id": "0921959cb1a896f0f0c67268624c3b8b", + "title": "2025-01-05 七十二家房客:前辈与晚辈(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/5bb7a3b9e784ea4fd98759083b953431.jpg", + "contentType": 3, + "releasedAt": 1736082000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173609071231.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "345cf7eebce787bdd2261889d5ed5e18", + "title": "2025-01-05 七十二家房客:前辈与晚辈(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/413244e186b01182428da18aec32da59.jpg", + "releasedAt": 1736082000000, + "timeLength": 1330, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173609070238.m3u8", + "raw": { + "id": "345cf7eebce787bdd2261889d5ed5e18", + "title": "2025-01-05 七十二家房客:前辈与晚辈(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/413244e186b01182428da18aec32da59.jpg", + "contentType": 3, + "releasedAt": 1736082000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173609070238.m3u8\"}", + "timeLength": 1330, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "164641353f60315a7a7daf03cd5b8ad3", + "title": "2025-01-04 七十二家房客:与虎谋皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/2f254044b7d44eb1b3d1f2f489afee01.jpg", + "releasedAt": 1735997445000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173601467469.m3u8", + "raw": { + "id": "164641353f60315a7a7daf03cd5b8ad3", + "title": "2025-01-04 七十二家房客:与虎谋皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/2f254044b7d44eb1b3d1f2f489afee01.jpg", + "contentType": 3, + "releasedAt": 1735997445000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173601467469.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba5872d9dde385b554e7b18a717bc451", + "title": "2025-01-04 七十二家房客:与虎谋皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/decd271c1e0d34649deb22ebaf063a44.jpg", + "releasedAt": 1735995600000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173601467816.m3u8", + "raw": { + "id": "ba5872d9dde385b554e7b18a717bc451", + "title": "2025-01-04 七十二家房客:与虎谋皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/decd271c1e0d34649deb22ebaf063a44.jpg", + "contentType": 3, + "releasedAt": 1735995600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173601467816.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0d05f5b009d9d0b43f3e3359ca0d7a71", + "title": "2025-01-02 七十二家房客:酒局风波(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/a9d8ef996cc36ec7e2527ea9c49bd25b.jpg", + "releasedAt": 1735824803000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173583590681.m3u8", + "raw": { + "id": "0d05f5b009d9d0b43f3e3359ca0d7a71", + "title": "2025-01-02 七十二家房客:酒局风波(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/a9d8ef996cc36ec7e2527ea9c49bd25b.jpg", + "contentType": 3, + "releasedAt": 1735824803000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173583590681.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99cf7346204b30981d6d332014245ea4", + "title": "2025-01-02 七十二家房客:酒局风波(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/b9860a9f0fb0a691de6f1e1a92e32085.jpg", + "releasedAt": 1735822800000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173583591085.m3u8", + "raw": { + "id": "99cf7346204b30981d6d332014245ea4", + "title": "2025-01-02 七十二家房客:酒局风波(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/b9860a9f0fb0a691de6f1e1a92e32085.jpg", + "contentType": 3, + "releasedAt": 1735822800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173583591085.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99f09dc96bf910bfb9538c6b4dc43008", + "title": "2025-01-01 七十二家房客:江湖疑凶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/2f301bf1213f54adc1648d1d9575c171.jpg", + "releasedAt": 1735736400000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173574604274.m3u8", + "raw": { + "id": "99f09dc96bf910bfb9538c6b4dc43008", + "title": "2025-01-01 七十二家房客:江湖疑凶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/2f301bf1213f54adc1648d1d9575c171.jpg", + "contentType": 3, + "releasedAt": 1735736400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173574604274.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2aea9a37f41fb8efd9a9f1ad237327e5", + "title": "2025-01-01 七十二家房客:江湖疑凶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3eb602060c82a5a253d4021aee95f27a.jpg", + "releasedAt": 1735736400000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173574605321.m3u8", + "raw": { + "id": "2aea9a37f41fb8efd9a9f1ad237327e5", + "title": "2025-01-01 七十二家房客:江湖疑凶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2025/01/3eb602060c82a5a253d4021aee95f27a.jpg", + "contentType": 3, + "releasedAt": 1735736400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173574605321.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7f012566d7827b5046de9f92a4d7e159", + "title": "2024-12-31 七十二家房客:我不是神经病(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1fd654d5bf9a1a62ed279745751b9882.jpg", + "releasedAt": 1735650000000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173565574215.m3u8", + "raw": { + "id": "7f012566d7827b5046de9f92a4d7e159", + "title": "2024-12-31 七十二家房客:我不是神经病(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1fd654d5bf9a1a62ed279745751b9882.jpg", + "contentType": 3, + "releasedAt": 1735650000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173565574215.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5727000a2dda3c3111ea3d491ea6bd95", + "title": "2024-12-30 七十二家房客:土地庙", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/24cab152c5d04f91dad442a5afa4c145.jpg", + "releasedAt": 1735563600000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173557313724.m3u8", + "raw": { + "id": "5727000a2dda3c3111ea3d491ea6bd95", + "title": "2024-12-30 七十二家房客:土地庙", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/24cab152c5d04f91dad442a5afa4c145.jpg", + "contentType": 3, + "releasedAt": 1735563600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173557313724.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7dda2fe7472998c263cf769648c89b88", + "title": "2024-12-30 七十二家房客:怒火街头", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/d8e4e9ef63b274ba67564e0166f8f2b5.jpg", + "releasedAt": 1735563600000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173557313739.m3u8", + "raw": { + "id": "7dda2fe7472998c263cf769648c89b88", + "title": "2024-12-30 七十二家房客:怒火街头", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/d8e4e9ef63b274ba67564e0166f8f2b5.jpg", + "contentType": 3, + "releasedAt": 1735563600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173557313739.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bafd7c4d7237af8d0fa619f0f5fb4e53", + "title": "2024-12-29 七十二家房客:左右为难(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/fc10f02658955186f19af07d583f6430.jpg", + "releasedAt": 1735477200000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173548608096.m3u8", + "raw": { + "id": "bafd7c4d7237af8d0fa619f0f5fb4e53", + "title": "2024-12-29 七十二家房客:左右为难(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/fc10f02658955186f19af07d583f6430.jpg", + "contentType": 3, + "releasedAt": 1735477200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173548608096.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9b5f585e08b79ada5f8d44e827a33774", + "title": "2024-12-29 七十二家房客:左右为难(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/f6e65c2b18f7071f2ed8eccf4b1494e2.jpg", + "releasedAt": 1735477200000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173548608146.m3u8", + "raw": { + "id": "9b5f585e08b79ada5f8d44e827a33774", + "title": "2024-12-29 七十二家房客:左右为难(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/f6e65c2b18f7071f2ed8eccf4b1494e2.jpg", + "contentType": 3, + "releasedAt": 1735477200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173548608146.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e8f2e85385b90c2cdffa29623a54aec4", + "title": "2024-12-28 七十二家房客:臭味相投(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/36ab571ccc32c593129bfa3869714e6e.jpg", + "releasedAt": 1735392561000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173540085371.m3u8", + "raw": { + "id": "e8f2e85385b90c2cdffa29623a54aec4", + "title": "2024-12-28 七十二家房客:臭味相投(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/36ab571ccc32c593129bfa3869714e6e.jpg", + "contentType": 3, + "releasedAt": 1735392561000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173540085371.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f2e402a4f50f725087a0ee8e1374e397", + "title": "2024-12-28 七十二家房客:臭味相投(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/aac4b775664467c512e5241389610e65.jpg", + "releasedAt": 1735390800000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173540079978.m3u8", + "raw": { + "id": "f2e402a4f50f725087a0ee8e1374e397", + "title": "2024-12-28 七十二家房客:臭味相投(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/aac4b775664467c512e5241389610e65.jpg", + "contentType": 3, + "releasedAt": 1735390800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173540079978.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d8d2621591c3a055389686fac32256b3", + "title": "2024-12-27 七十二家房客:送汤记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/462c9820ce721c601d76660a5c78e879.jpg", + "releasedAt": 1735300800000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173531440325.m3u8", + "raw": { + "id": "d8d2621591c3a055389686fac32256b3", + "title": "2024-12-27 七十二家房客:送汤记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/462c9820ce721c601d76660a5c78e879.jpg", + "contentType": 3, + "releasedAt": 1735300800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173531440325.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f1a863d14dc51e845bdf67c2f7e6c6fa", + "title": "2024-12-26 七十二家房客:杏林育新技(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/42c62911e17aa840cfaf81ba9e9afd1c.jpg", + "releasedAt": 1735219911000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173522992158.m3u8", + "raw": { + "id": "f1a863d14dc51e845bdf67c2f7e6c6fa", + "title": "2024-12-26 七十二家房客:杏林育新技(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/42c62911e17aa840cfaf81ba9e9afd1c.jpg", + "contentType": 3, + "releasedAt": 1735219911000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173522992158.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4456021568914d7065ec91b0d65cc5ce", + "title": "2024-12-26 七十二家房客:杏林育新技(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/7d1c18a035a538ae901a887a52574da9.jpg", + "releasedAt": 1735218000000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173522990689.m3u8", + "raw": { + "id": "4456021568914d7065ec91b0d65cc5ce", + "title": "2024-12-26 七十二家房客:杏林育新技(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/7d1c18a035a538ae901a887a52574da9.jpg", + "contentType": 3, + "releasedAt": 1735218000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173522990689.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a4eff4d84b5688f412d7acbed54219d8", + "title": "2024-12-25 七十二家房客:生子疑团(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/4eb2eaa398118286b1581e95070e1fe0.jpg", + "releasedAt": 1735133514000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173513968155.m3u8", + "raw": { + "id": "a4eff4d84b5688f412d7acbed54219d8", + "title": "2024-12-25 七十二家房客:生子疑团(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/4eb2eaa398118286b1581e95070e1fe0.jpg", + "contentType": 3, + "releasedAt": 1735133514000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173513968155.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b6d423ec9ff1c3e5ab77aa36995e2655", + "title": "2024-12-25 七十二家房客:生子疑团(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/5c2a405c8c2d22b40338fecb9907e673.jpg", + "releasedAt": 1735131600000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202501/173513971151.m3u8", + "raw": { + "id": "b6d423ec9ff1c3e5ab77aa36995e2655", + "title": "2024-12-25 七十二家房客:生子疑团(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/5c2a405c8c2d22b40338fecb9907e673.jpg", + "contentType": 3, + "releasedAt": 1735131600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202501/173513971151.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e119bbf3633dbb03f98f191f992c6eea", + "title": "2024-12-23 七十二家房客:私密照片", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/16541e1a0ce3c025d80cf14ce0ed369e.jpg", + "releasedAt": 1734958800000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173496546242.m3u8", + "raw": { + "id": "e119bbf3633dbb03f98f191f992c6eea", + "title": "2024-12-23 七十二家房客:私密照片", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/16541e1a0ce3c025d80cf14ce0ed369e.jpg", + "contentType": 3, + "releasedAt": 1734958800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173496546242.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8c4228d00091f86331ee1c3da90c5de3", + "title": "2024-12-23 七十二家房客:抽签游戏", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/22eb16e033a349f62dc7453c0beb81f7.jpg", + "releasedAt": 1734958800000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173496552037.m3u8", + "raw": { + "id": "8c4228d00091f86331ee1c3da90c5de3", + "title": "2024-12-23 七十二家房客:抽签游戏", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/22eb16e033a349f62dc7453c0beb81f7.jpg", + "contentType": 3, + "releasedAt": 1734958800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173496552037.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7ddebf8e11b9221660eeb1685f3abb96", + "title": "2024-12-22 七十二家房客:茶室乐园", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/6b66a89540a3caac346d4374afc45f00.jpg", + "releasedAt": 1734872400000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173488498928.m3u8", + "raw": { + "id": "7ddebf8e11b9221660eeb1685f3abb96", + "title": "2024-12-22 七十二家房客:茶室乐园", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/6b66a89540a3caac346d4374afc45f00.jpg", + "contentType": 3, + "releasedAt": 1734872400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173488498928.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9d760870a9bca28a86e58cb6643fc70a", + "title": "2024-12-22 七十二家房客:自黑记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/a5ac417cd39a8175cc2392e830403cff.jpg", + "releasedAt": 1734872400000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173488497986.m3u8", + "raw": { + "id": "9d760870a9bca28a86e58cb6643fc70a", + "title": "2024-12-22 七十二家房客:自黑记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/a5ac417cd39a8175cc2392e830403cff.jpg", + "contentType": 3, + "releasedAt": 1734872400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173488497986.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0ec40a3eef8a27a2acc86b3f36abbfb3", + "title": "2024-12-21 七十二家房客:各显神通(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1cd4bd728b2d8390e31f99c07170bc51.jpg", + "releasedAt": 1734787712000, + "timeLength": 1268, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173479404032.m3u8", + "raw": { + "id": "0ec40a3eef8a27a2acc86b3f36abbfb3", + "title": "2024-12-21 七十二家房客:各显神通(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1cd4bd728b2d8390e31f99c07170bc51.jpg", + "contentType": 3, + "releasedAt": 1734787712000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173479404032.m3u8\"}", + "timeLength": 1268, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99bd943166e89f336808120b7d7408e7", + "title": "2024-12-21 七十二家房客:各显神通(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/f23a621aa245e831b79815ba6e9aba28.jpg", + "releasedAt": 1734786000000, + "timeLength": 1315, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173479407482.m3u8", + "raw": { + "id": "99bd943166e89f336808120b7d7408e7", + "title": "2024-12-21 七十二家房客:各显神通(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/f23a621aa245e831b79815ba6e9aba28.jpg", + "contentType": 3, + "releasedAt": 1734786000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173479407482.m3u8\"}", + "timeLength": 1315, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "06c27697509e1f7b40be94702ca5adb5", + "title": "2024-12-20 七十二家房客:草药(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1823a949ab41e15b68a8a7cf66a9793b.jpg", + "releasedAt": 1734699600000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173470989897.m3u8", + "raw": { + "id": "06c27697509e1f7b40be94702ca5adb5", + "title": "2024-12-20 七十二家房客:草药(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1823a949ab41e15b68a8a7cf66a9793b.jpg", + "contentType": 3, + "releasedAt": 1734699600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173470989897.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a0b3105e652e71fbeebb429682ae3967", + "title": "2024-12-20 七十二家房客:草药(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/c0bc82f3737b278e5846a83dba03809f.jpg", + "releasedAt": 1734699600000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173470989952.m3u8", + "raw": { + "id": "a0b3105e652e71fbeebb429682ae3967", + "title": "2024-12-20 七十二家房客:草药(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/c0bc82f3737b278e5846a83dba03809f.jpg", + "contentType": 3, + "releasedAt": 1734699600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173470989952.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f583533b7535f0663cd4ea5698087b49", + "title": "2024-12-19 七十二家房客:最后一批通行证(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/8000f12528182640fc7cfd5260dd2c1f.jpg", + "releasedAt": 1734615129000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173461966181.m3u8", + "raw": { + "id": "f583533b7535f0663cd4ea5698087b49", + "title": "2024-12-19 七十二家房客:最后一批通行证(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/8000f12528182640fc7cfd5260dd2c1f.jpg", + "contentType": 3, + "releasedAt": 1734615129000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173461966181.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4a48bebd4b4fa059b81b1bd6afaf1d1c", + "title": "2024-12-19 七十二家房客:最后一批通行证(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/42acc765e29898b0006f354f4bd8ae94.jpg", + "releasedAt": 1734613200000, + "timeLength": 1357, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173461966130.m3u8", + "raw": { + "id": "4a48bebd4b4fa059b81b1bd6afaf1d1c", + "title": "2024-12-19 七十二家房客:最后一批通行证(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/42acc765e29898b0006f354f4bd8ae94.jpg", + "contentType": 3, + "releasedAt": 1734613200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173461966130.m3u8\"}", + "timeLength": 1357, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3dca26a3e0c5e2764c00ba823f00a03b", + "title": "2024-12-18 七十二家房客:理解万岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/9b33d105c00ac7aa83a8fb452b018485.jpg", + "releasedAt": 1734528683000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173454861355.m3u8", + "raw": { + "id": "3dca26a3e0c5e2764c00ba823f00a03b", + "title": "2024-12-18 七十二家房客:理解万岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/9b33d105c00ac7aa83a8fb452b018485.jpg", + "contentType": 3, + "releasedAt": 1734528683000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173454861355.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "417b0197d90e5a3bb6670b455fa9688e", + "title": "2024-12-18 七十二家房客:理解万岁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/fc54bf673a931d97aeb963b27c0f7739.jpg", + "releasedAt": 1734526800000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173454861527.m3u8", + "raw": { + "id": "417b0197d90e5a3bb6670b455fa9688e", + "title": "2024-12-18 七十二家房客:理解万岁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/fc54bf673a931d97aeb963b27c0f7739.jpg", + "contentType": 3, + "releasedAt": 1734526800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173454861527.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d2475bf30b25e977d1993c3331e097f", + "title": "2024-12-17 七十二家房客:到嘴的鸭子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/987248f6ea924b516977738658a38bf3.jpg", + "releasedAt": 1734442321000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173444650133.m3u8", + "raw": { + "id": "4d2475bf30b25e977d1993c3331e097f", + "title": "2024-12-17 七十二家房客:到嘴的鸭子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/987248f6ea924b516977738658a38bf3.jpg", + "contentType": 3, + "releasedAt": 1734442321000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173444650133.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "545b1ae35f0879098a1c44f0e972dda3", + "title": "2024-12-17 七十二家房客:到嘴的鸭子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/549e8eba6534ce99e90949f1668abb72.jpg", + "releasedAt": 1734440400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173444652864.m3u8", + "raw": { + "id": "545b1ae35f0879098a1c44f0e972dda3", + "title": "2024-12-17 七十二家房客:到嘴的鸭子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/549e8eba6534ce99e90949f1668abb72.jpg", + "contentType": 3, + "releasedAt": 1734440400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173444652864.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9619d3053a692be5ca15c0f97ecd5254", + "title": "2024-12-16 七十二家房客:放鹰计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/2f447d0487d3bc24335ce4dde270ac8a.jpg", + "releasedAt": 1734354000000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173436281714.m3u8", + "raw": { + "id": "9619d3053a692be5ca15c0f97ecd5254", + "title": "2024-12-16 七十二家房客:放鹰计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/2f447d0487d3bc24335ce4dde270ac8a.jpg", + "contentType": 3, + "releasedAt": 1734354000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173436281714.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a702c5ae9f3df80947d3857a64c56254", + "title": "2024-12-16 七十二家房客:放鹰计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/0e269441cc8d96a236bc915b2f19ceb4.jpg", + "releasedAt": 1734354000000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173436280625.m3u8", + "raw": { + "id": "a702c5ae9f3df80947d3857a64c56254", + "title": "2024-12-16 七十二家房客:放鹰计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/0e269441cc8d96a236bc915b2f19ceb4.jpg", + "contentType": 3, + "releasedAt": 1734354000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173436280625.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fc189e7171b8ffedcfe432d06331027b", + "title": "2024-12-15 七十二家房客:妇女救星(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/a035f9992d2043b92eaaf4eb1a3e6308.jpg", + "releasedAt": 1734267600000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173427620736.m3u8", + "raw": { + "id": "fc189e7171b8ffedcfe432d06331027b", + "title": "2024-12-15 七十二家房客:妇女救星(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/a035f9992d2043b92eaaf4eb1a3e6308.jpg", + "contentType": 3, + "releasedAt": 1734267600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173427620736.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e442af2ba911c493dbdd03586a93c9d2", + "title": "2024-12-15 七十二家房客:妇女救星(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2024/12/99358f123f3b328cd8fdafe251c2d2eb.png", + "releasedAt": 1734267600000, + "timeLength": 1357, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173427620988.m3u8", + "raw": { + "id": "e442af2ba911c493dbdd03586a93c9d2", + "title": "2024-12-15 七十二家房客:妇女救星(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2024/12/99358f123f3b328cd8fdafe251c2d2eb.png", + "contentType": 3, + "releasedAt": 1734267600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173427620988.m3u8\"}", + "timeLength": 1357, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91e57b29cf6edf2d9949d191e086ab8a", + "title": "2024-12-14 七十二家房客:寸草心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/c46f33f293c16371d84a38d251d817af.jpg", + "releasedAt": 1734182940000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173419507546.m3u8", + "raw": { + "id": "91e57b29cf6edf2d9949d191e086ab8a", + "title": "2024-12-14 七十二家房客:寸草心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/c46f33f293c16371d84a38d251d817af.jpg", + "contentType": 3, + "releasedAt": 1734182940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173419507546.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7b4429e0f3fd468b3ba625b40861cc97", + "title": "2024-12-14 七十二家房客:寸草心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/802e1fe4fa5ac8ce99af762fd31b686e.jpg", + "releasedAt": 1734177600000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173419501615.m3u8", + "raw": { + "id": "7b4429e0f3fd468b3ba625b40861cc97", + "title": "2024-12-14 七十二家房客:寸草心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/802e1fe4fa5ac8ce99af762fd31b686e.jpg", + "contentType": 3, + "releasedAt": 1734177600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173419501615.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5c625d514a4473064e4dbfdd3a76edf9", + "title": "2024-12-13 七十二家房客:才女悲歌", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/17e3f8b894cbc6f13935dc84c64942ed.jpg", + "releasedAt": 1734096702000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173410446824.m3u8", + "raw": { + "id": "5c625d514a4473064e4dbfdd3a76edf9", + "title": "2024-12-13 七十二家房客:才女悲歌", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/17e3f8b894cbc6f13935dc84c64942ed.jpg", + "contentType": 3, + "releasedAt": 1734096702000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173410446824.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "678e3037732a3c76394340a1b6b30128", + "title": "2024-12-12 七十二家房客:师出同门(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/0b45ce752a6369bd7406fbdc834a0221.jpg", + "releasedAt": 1734010362000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173401412184.m3u8", + "raw": { + "id": "678e3037732a3c76394340a1b6b30128", + "title": "2024-12-12 七十二家房客:师出同门(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/0b45ce752a6369bd7406fbdc834a0221.jpg", + "contentType": 3, + "releasedAt": 1734010362000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173401412184.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "500c385d2ef75c232794d68b554d9e93", + "title": "2024-12-12 七十二家房客:师出同门(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/0b6c523bfdff42b7a41cf87ca668ae5d.jpg", + "releasedAt": 1734008400000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173401412939.m3u8", + "raw": { + "id": "500c385d2ef75c232794d68b554d9e93", + "title": "2024-12-12 七十二家房客:师出同门(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/0b6c523bfdff42b7a41cf87ca668ae5d.jpg", + "contentType": 3, + "releasedAt": 1734008400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173401412939.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "116db35b0ab48140f6254daab7c4aa12", + "title": "2024-12-11 七十二家房客:师出同门(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/6a4ebe1d0a2e402b2daac8d46f5052a5.jpg", + "releasedAt": 1733923963000, + "timeLength": 1266, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173405704072.m3u8", + "raw": { + "id": "116db35b0ab48140f6254daab7c4aa12", + "title": "2024-12-11 七十二家房客:师出同门(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/6a4ebe1d0a2e402b2daac8d46f5052a5.jpg", + "contentType": 3, + "releasedAt": 1733923963000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173405704072.m3u8\"}", + "timeLength": 1266, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba2fb3838fe1fa3cd07b7e3b65ebecf9", + "title": "2024-12-11 七十二家房客:师出同门(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/5b5815481e43e4011593518612b2ff7d.jpg", + "releasedAt": 1733922000000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173405706968.m3u8", + "raw": { + "id": "ba2fb3838fe1fa3cd07b7e3b65ebecf9", + "title": "2024-12-11 七十二家房客:师出同门(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/5b5815481e43e4011593518612b2ff7d.jpg", + "contentType": 3, + "releasedAt": 1733922000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173405706968.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5f6e3d21d8fed9147ddb8c2b4addbee7", + "title": "2024-12-10 七十二家房客:扎灯笼(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/ea46347d01db5c35cf0d929d8c970e1b.jpg", + "releasedAt": 1733837535000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173384155390.m3u8", + "raw": { + "id": "5f6e3d21d8fed9147ddb8c2b4addbee7", + "title": "2024-12-10 七十二家房客:扎灯笼(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/ea46347d01db5c35cf0d929d8c970e1b.jpg", + "contentType": 3, + "releasedAt": 1733837535000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173384155390.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "04ea50669be7caa4dec62840050dee49", + "title": "2024-12-10 七十二家房客:扎灯笼(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1bc4f6133fd27e87d66413c4934f140f.jpg", + "releasedAt": 1733835600000, + "timeLength": 1330, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173384155461.m3u8", + "raw": { + "id": "04ea50669be7caa4dec62840050dee49", + "title": "2024-12-10 七十二家房客:扎灯笼(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/1bc4f6133fd27e87d66413c4934f140f.jpg", + "contentType": 3, + "releasedAt": 1733835600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173384155461.m3u8\"}", + "timeLength": 1330, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "04acd4829d9422909bfe3e1bd13a891d", + "title": "2024-12-09 七十二家房客:胆战心惊(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/ccfb118da0a5f3b97706958ac66cb432.jpg", + "releasedAt": 1733749200000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173375626473.m3u8", + "raw": { + "id": "04acd4829d9422909bfe3e1bd13a891d", + "title": "2024-12-09 七十二家房客:胆战心惊(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/ccfb118da0a5f3b97706958ac66cb432.jpg", + "contentType": 3, + "releasedAt": 1733749200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173375626473.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a675236e10a70dc5fc3ab8a3a5b19888", + "title": "2024-12-09 七十二家房客:胆战心惊(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/05e1f4c909dd58d416c5a27bb112fba3.jpg", + "releasedAt": 1733749200000, + "timeLength": 1270, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173375626872.m3u8", + "raw": { + "id": "a675236e10a70dc5fc3ab8a3a5b19888", + "title": "2024-12-09 七十二家房客:胆战心惊(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/05e1f4c909dd58d416c5a27bb112fba3.jpg", + "contentType": 3, + "releasedAt": 1733749200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173375626872.m3u8\"}", + "timeLength": 1270, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "09683e4801b0760e13d7f300eecfeded", + "title": "2024-12-08 七十二家房客:假红娘(下)", + "coverUrl": "https://img.gdtv.cn/image/202412/0.0655644404964599340bcf1a1bfba031126OSS1734400569.png", + "releasedAt": 1733662800000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173367241658.m3u8", + "raw": { + "id": "09683e4801b0760e13d7f300eecfeded", + "title": "2024-12-08 七十二家房客:假红娘(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.gdtv.cn/image/202412/0.0655644404964599340bcf1a1bfba031126OSS1734400569.png", + "contentType": 3, + "releasedAt": 1733662800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173367241658.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "387703470fd3fb2acd7b51dfeab77df3", + "title": "2024-12-08 七十二家房客:假红娘(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/d5b3dac89762e60f12328b48bfddec9c.jpg", + "releasedAt": 1733662800000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173367241451.m3u8", + "raw": { + "id": "387703470fd3fb2acd7b51dfeab77df3", + "title": "2024-12-08 七十二家房客:假红娘(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/d5b3dac89762e60f12328b48bfddec9c.jpg", + "contentType": 3, + "releasedAt": 1733662800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173367241451.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "934fa06feeb255de247088301dd3174f", + "title": "2024-12-07 七十二家房客:不是有情郎(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/39c35cbee78977eacff1165f53fb7777.jpg", + "releasedAt": 1733578214000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173358615431.m3u8", + "raw": { + "id": "934fa06feeb255de247088301dd3174f", + "title": "2024-12-07 七十二家房客:不是有情郎(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/39c35cbee78977eacff1165f53fb7777.jpg", + "contentType": 3, + "releasedAt": 1733578214000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173358615431.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f9cc16d31131cfaea47dad55a61453f7", + "title": "2024-12-07 七十二家房客:不是有情郎(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/cb8c65fad4dc53b43206721a4c1d6b69.jpg", + "releasedAt": 1733576400000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173358612332.m3u8", + "raw": { + "id": "f9cc16d31131cfaea47dad55a61453f7", + "title": "2024-12-07 七十二家房客:不是有情郎(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/cb8c65fad4dc53b43206721a4c1d6b69.jpg", + "contentType": 3, + "releasedAt": 1733576400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173358612332.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f83e7387538aa7fbe046f98a894be929", + "title": "2024-12-06 七十二家房客:真假好人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/458262d2f4729c58dd73e0ce8ad92739.jpg", + "releasedAt": 1733491940000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173349752657.m3u8", + "raw": { + "id": "f83e7387538aa7fbe046f98a894be929", + "title": "2024-12-06 七十二家房客:真假好人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/458262d2f4729c58dd73e0ce8ad92739.jpg", + "contentType": 3, + "releasedAt": 1733491940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173349752657.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c775ba7266766795fb7b5a71362b96b4", + "title": "2024-12-06 七十二家房客:真假好人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/99e6002afb22ec33d545ca59f67489a0.jpg", + "releasedAt": 1733490000000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173349755561.m3u8", + "raw": { + "id": "c775ba7266766795fb7b5a71362b96b4", + "title": "2024-12-06 七十二家房客:真假好人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/99e6002afb22ec33d545ca59f67489a0.jpg", + "contentType": 3, + "releasedAt": 1733490000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173349755561.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5611bd787ff05a4681effc9b93ce026c", + "title": "2024-12-05 七十二家房客:师弟来了(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/4d05da28e305ff3542d70f3304a44ca3.jpg", + "releasedAt": 1733403600000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173341144487.m3u8", + "raw": { + "id": "5611bd787ff05a4681effc9b93ce026c", + "title": "2024-12-05 七十二家房客:师弟来了(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/4d05da28e305ff3542d70f3304a44ca3.jpg", + "contentType": 3, + "releasedAt": 1733403600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173341144487.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6852e4d206cc901cbce86a80a48a78cf", + "title": "2024-12-05 七十二家房客:师弟来了(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/4dd726cbba782e7446179d4d740272d1.jpg", + "releasedAt": 1733403600000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173341420034.m3u8", + "raw": { + "id": "6852e4d206cc901cbce86a80a48a78cf", + "title": "2024-12-05 七十二家房客:师弟来了(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/4dd726cbba782e7446179d4d740272d1.jpg", + "contentType": 3, + "releasedAt": 1733403600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173341420034.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "78d597a7d0efe9f2900a77b99c791d8f", + "title": "2024-12-04 七十二家房客:沽名钓誉(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/31714d4ebbe4f8c53afc17421fad0a0f.jpg", + "releasedAt": 1733319159000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173339595450.m3u8", + "raw": { + "id": "78d597a7d0efe9f2900a77b99c791d8f", + "title": "2024-12-04 七十二家房客:沽名钓誉(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/31714d4ebbe4f8c53afc17421fad0a0f.jpg", + "contentType": 3, + "releasedAt": 1733319159000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173339595450.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f7bad0741ea3010dd13a1e94daa12a78", + "title": "2024-12-04 七十二家房客:沽名钓誉(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/5695d01597e39db4d28eeb5ed927720b.jpg", + "releasedAt": 1733317200000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173339595266.m3u8", + "raw": { + "id": "f7bad0741ea3010dd13a1e94daa12a78", + "title": "2024-12-04 七十二家房客:沽名钓誉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/5695d01597e39db4d28eeb5ed927720b.jpg", + "contentType": 3, + "releasedAt": 1733317200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173339595266.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6fbb24953bc310a24b29a8e6d58d31e4", + "title": "2024-12-03 七十二家房客:夺命船(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/ce483e9d13c34d2a1935f033214c0d1e.jpg", + "releasedAt": 1733232756000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173330558812.m3u8", + "raw": { + "id": "6fbb24953bc310a24b29a8e6d58d31e4", + "title": "2024-12-03 七十二家房客:夺命船(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/ce483e9d13c34d2a1935f033214c0d1e.jpg", + "contentType": 3, + "releasedAt": 1733232756000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173330558812.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ca36dac57253c748cd14dfeba3639405", + "title": "2024-12-03 七十二家房客:夺命船(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/dd177496c1e0455fd526f779f6c15112.jpg", + "releasedAt": 1733230800000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173330558838.m3u8", + "raw": { + "id": "ca36dac57253c748cd14dfeba3639405", + "title": "2024-12-03 七十二家房客:夺命船(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/dd177496c1e0455fd526f779f6c15112.jpg", + "contentType": 3, + "releasedAt": 1733230800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173330558838.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e29d958c56931824d5cb432abd2fe4be", + "title": "2024-12-02 七十二家房客:炳的宴席", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/d75c71f5e2c6fba078e7ca0ca8f0b00f.jpg", + "releasedAt": 1733144400000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173315070478.m3u8", + "raw": { + "id": "e29d958c56931824d5cb432abd2fe4be", + "title": "2024-12-02 七十二家房客:炳的宴席", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/d75c71f5e2c6fba078e7ca0ca8f0b00f.jpg", + "contentType": 3, + "releasedAt": 1733144400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173315070478.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a6aa97f01ef426bf9567cb98c5dd18e", + "title": "2024-12-02 七十二家房客:一笔私藏钱", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/e83a42a7c3f2f31fd88035c8f8d11235.jpg", + "releasedAt": 1733144400000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173315070191.m3u8", + "raw": { + "id": "6a6aa97f01ef426bf9567cb98c5dd18e", + "title": "2024-12-02 七十二家房客:一笔私藏钱", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/e83a42a7c3f2f31fd88035c8f8d11235.jpg", + "contentType": 3, + "releasedAt": 1733144400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173315070191.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0612ad63971bf008aaaba3a1df819b14", + "title": "2024-12-01 七十二家房客:不请自来(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/a9dacdb888d93a1ea271eae8a057375f.jpg", + "releasedAt": 1733054400000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173306952938.m3u8", + "raw": { + "id": "0612ad63971bf008aaaba3a1df819b14", + "title": "2024-12-01 七十二家房客:不请自来(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/a9dacdb888d93a1ea271eae8a057375f.jpg", + "contentType": 3, + "releasedAt": 1733054400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173306952938.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "61752e0c568b4c03391eee6612a50285", + "title": "2024-12-01 七十二家房客:不请自来(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/169ac7fae34f848449549b00495b1e39.jpg", + "releasedAt": 1733054400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173306950831.m3u8", + "raw": { + "id": "61752e0c568b4c03391eee6612a50285", + "title": "2024-12-01 七十二家房客:不请自来(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/12/169ac7fae34f848449549b00495b1e39.jpg", + "contentType": 3, + "releasedAt": 1733054400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173306950831.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "19163aa5c57340e02674bd65b137657b", + "title": "2024-11-30 七十二家房客:匹配者(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/95fe0cfd9c17a68f168bd3e5e8a710e3.jpg", + "releasedAt": 1732973361000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173298084689.m3u8", + "raw": { + "id": "19163aa5c57340e02674bd65b137657b", + "title": "2024-11-30 七十二家房客:匹配者(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/95fe0cfd9c17a68f168bd3e5e8a710e3.jpg", + "contentType": 3, + "releasedAt": 1732973361000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173298084689.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "03278b6770698ca740707fb1707c2767", + "title": "2024-11-30 七十二家房客:匹配者(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/208224d14e94d5f7be69b798f923c11b.jpg", + "releasedAt": 1732971600000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173298084645.m3u8", + "raw": { + "id": "03278b6770698ca740707fb1707c2767", + "title": "2024-11-30 七十二家房客:匹配者(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/208224d14e94d5f7be69b798f923c11b.jpg", + "contentType": 3, + "releasedAt": 1732971600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173298084645.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "490a78d58d449893ff06aab44fea369c", + "title": "2024-11-29 七十二家房客:有惊无险(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7981987ec434c62fa637f7b11ab8abe7.jpg", + "releasedAt": 1732885200000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173289656685.m3u8", + "raw": { + "id": "490a78d58d449893ff06aab44fea369c", + "title": "2024-11-29 七十二家房客:有惊无险(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7981987ec434c62fa637f7b11ab8abe7.jpg", + "contentType": 3, + "releasedAt": 1732885200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173289656685.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "23574dec20471c31cdc2a2f12e050a55", + "title": "2024-11-29 七十二家房客:有惊无险(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7a5a59ae7853710eec90dfea2f07bbf9.jpg", + "releasedAt": 1732885200000, + "timeLength": 1333, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173289656136.m3u8", + "raw": { + "id": "23574dec20471c31cdc2a2f12e050a55", + "title": "2024-11-29 七十二家房客:有惊无险(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7a5a59ae7853710eec90dfea2f07bbf9.jpg", + "contentType": 3, + "releasedAt": 1732885200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173289656136.m3u8\"}", + "timeLength": 1333, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9c40f84419cd1d5666a5798e49ededba", + "title": "2024-11-28 七十二家房客:八姑酸梅鹅", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6a29f3845e28118420931d9cc650c14b.jpg", + "releasedAt": 1732800720000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173280819341.m3u8", + "raw": { + "id": "9c40f84419cd1d5666a5798e49ededba", + "title": "2024-11-28 七十二家房客:八姑酸梅鹅", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6a29f3845e28118420931d9cc650c14b.jpg", + "contentType": 3, + "releasedAt": 1732800720000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173280819341.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ae4f61f519a392cb0513ff4ba477f66a", + "title": "2024-11-28 七十二家房客:服旧如新", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6131cbea5e5c59ccfca518200967bb2f.jpg", + "releasedAt": 1732798800000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173280822682.m3u8", + "raw": { + "id": "ae4f61f519a392cb0513ff4ba477f66a", + "title": "2024-11-28 七十二家房客:服旧如新", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6131cbea5e5c59ccfca518200967bb2f.jpg", + "contentType": 3, + "releasedAt": 1732798800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173280822682.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "188b99427a26cf52cb32e98cf24a7de0", + "title": "2024-11-27 七十二家房客:情暖童心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/12a710843a028969a3b1617fa8a9b313.jpg", + "releasedAt": 1732714295000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173272517781.m3u8", + "raw": { + "id": "188b99427a26cf52cb32e98cf24a7de0", + "title": "2024-11-27 七十二家房客:情暖童心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/12a710843a028969a3b1617fa8a9b313.jpg", + "contentType": 3, + "releasedAt": 1732714295000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173272517781.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "253fd7f2d0e852b473dd6e594462339f", + "title": "2024-11-27 七十二家房客:情暖童心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b31b6e2bd7c82984e054c1be0a26c5b5.jpg", + "releasedAt": 1732712400000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173272518344.m3u8", + "raw": { + "id": "253fd7f2d0e852b473dd6e594462339f", + "title": "2024-11-27 七十二家房客:情暖童心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b31b6e2bd7c82984e054c1be0a26c5b5.jpg", + "contentType": 3, + "releasedAt": 1732712400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173272518344.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2f2c2c2863323b300f22345aff82254b", + "title": "2024-11-26 七十二家房客:失踪的阿香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/87cabb8965c666f054fe3c5d4ebab6bd.jpg", + "releasedAt": 1732627940000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173263500093.m3u8", + "raw": { + "id": "2f2c2c2863323b300f22345aff82254b", + "title": "2024-11-26 七十二家房客:失踪的阿香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/87cabb8965c666f054fe3c5d4ebab6bd.jpg", + "contentType": 3, + "releasedAt": 1732627940000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173263500093.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2e5dade5668ef49d52bcc5f8ce77eb33", + "title": "2024-11-26 七十二家房客:失踪的阿香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/83fd93adf10f36da605d58fbddcfe5a4.jpg", + "releasedAt": 1732626000000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173263500038.m3u8", + "raw": { + "id": "2e5dade5668ef49d52bcc5f8ce77eb33", + "title": "2024-11-26 七十二家房客:失踪的阿香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/83fd93adf10f36da605d58fbddcfe5a4.jpg", + "contentType": 3, + "releasedAt": 1732626000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173263500038.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0a7b18222b7dba1c086d706352858d59", + "title": "2024-11-25 七十二家房客:荷兰水", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b7882cbc7e6c5ee40583d6fac0085b69.jpg", + "releasedAt": 1732539600000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173254606435.m3u8", + "raw": { + "id": "0a7b18222b7dba1c086d706352858d59", + "title": "2024-11-25 七十二家房客:荷兰水", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b7882cbc7e6c5ee40583d6fac0085b69.jpg", + "contentType": 3, + "releasedAt": 1732539600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173254606435.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "65dddd45178df633d670ff4b55337925", + "title": "2024-11-25 七十二家房客:顾家女人", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b6b53de0ff58c5f7017899447b61ea2c.jpg", + "releasedAt": 1732539600000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173254609233.m3u8", + "raw": { + "id": "65dddd45178df633d670ff4b55337925", + "title": "2024-11-25 七十二家房客:顾家女人", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b6b53de0ff58c5f7017899447b61ea2c.jpg", + "contentType": 3, + "releasedAt": 1732539600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173254609233.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2822b6f7cc122ba4c520c62e7f8df356", + "title": "2024-11-24 七十二家房客:寻人启事(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/fd88469ee104f7d20c6d975d7311d2ad.jpg", + "releasedAt": 1732453200000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173246363814.m3u8", + "raw": { + "id": "2822b6f7cc122ba4c520c62e7f8df356", + "title": "2024-11-24 七十二家房客:寻人启事(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/fd88469ee104f7d20c6d975d7311d2ad.jpg", + "contentType": 3, + "releasedAt": 1732453200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173246363814.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "33036e7c498ba7a68324dd5feb4173b0", + "title": "2024-11-24 七十二家房客:寻人启事(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/3280be0a88866e91ea9fbbde2a0abeee.jpg", + "releasedAt": 1732453200000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173246363764.m3u8", + "raw": { + "id": "33036e7c498ba7a68324dd5feb4173b0", + "title": "2024-11-24 七十二家房客:寻人启事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/3280be0a88866e91ea9fbbde2a0abeee.jpg", + "contentType": 3, + "releasedAt": 1732453200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173246363764.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6284aab24438edc2dd7a820bea0599de", + "title": "2024-11-23 七十二家房客:无畏(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7536b85bdd51d522a1ff074af6587a70.jpg", + "releasedAt": 1732368584000, + "timeLength": 1268, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173237703533.m3u8", + "raw": { + "id": "6284aab24438edc2dd7a820bea0599de", + "title": "2024-11-23 七十二家房客:无畏(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7536b85bdd51d522a1ff074af6587a70.jpg", + "contentType": 3, + "releasedAt": 1732368584000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173237703533.m3u8\"}", + "timeLength": 1268, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "19a2bec28342441d449e4e8c0980c86b", + "title": "2024-11-23 七十二家房客:无畏(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/0f6aedd1f3b219e49c6765d28db0e0f5.jpg", + "releasedAt": 1732366800000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173237706566.m3u8", + "raw": { + "id": "19a2bec28342441d449e4e8c0980c86b", + "title": "2024-11-23 七十二家房客:无畏(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/0f6aedd1f3b219e49c6765d28db0e0f5.jpg", + "contentType": 3, + "releasedAt": 1732366800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173237706566.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a6f7bd7ec874a8c831931291ab1873a8", + "title": "2024-11-22 七十二家房客:人穷志不短", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/30dd0536ba2a2683e8d1022235fbcd78.jpg", + "releasedAt": 1732280400000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173228885347.m3u8", + "raw": { + "id": "a6f7bd7ec874a8c831931291ab1873a8", + "title": "2024-11-22 七十二家房客:人穷志不短", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/30dd0536ba2a2683e8d1022235fbcd78.jpg", + "contentType": 3, + "releasedAt": 1732280400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173228885347.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a63a28aabff910c0491eaf38d606ff59", + "title": "2024-11-22 七十二家房客:我要阿香", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/ceff15dda31180ffc585b795af98b9ab.jpg", + "releasedAt": 1732280400000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173228885092.m3u8", + "raw": { + "id": "a63a28aabff910c0491eaf38d606ff59", + "title": "2024-11-22 七十二家房客:我要阿香", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/ceff15dda31180ffc585b795af98b9ab.jpg", + "contentType": 3, + "releasedAt": 1732280400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173228885092.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d69ac361eae6f1b7e85b71f34e04bd4e", + "title": "2024-11-21 七十二家房客:女学徒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/580d558e7018e825e706d5b71a080ee1.jpg", + "releasedAt": 1732195922000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173220321232.m3u8", + "raw": { + "id": "d69ac361eae6f1b7e85b71f34e04bd4e", + "title": "2024-11-21 七十二家房客:女学徒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/580d558e7018e825e706d5b71a080ee1.jpg", + "contentType": 3, + "releasedAt": 1732195922000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173220321232.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bc248b132492be362cd08c339422e8f2", + "title": "2024-11-21 七十二家房客:女学徒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/907a50801c6bf47d58f1b5ba171f5f39.jpg", + "releasedAt": 1732194000000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173220321388.m3u8", + "raw": { + "id": "bc248b132492be362cd08c339422e8f2", + "title": "2024-11-21 七十二家房客:女学徒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/907a50801c6bf47d58f1b5ba171f5f39.jpg", + "contentType": 3, + "releasedAt": 1732194000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173220321388.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "655f97abd34fb4915644e3527a2ed7d5", + "title": "2024-11-20 七十二家房客:返工啦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6a69191878704d6ffe739b65a193d4bc.jpg", + "releasedAt": 1732109525000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173211795749.m3u8", + "raw": { + "id": "655f97abd34fb4915644e3527a2ed7d5", + "title": "2024-11-20 七十二家房客:返工啦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6a69191878704d6ffe739b65a193d4bc.jpg", + "contentType": 3, + "releasedAt": 1732109525000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173211795749.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9efe4700743ca9a5886ba4a73acd1c27", + "title": "2024-11-20 七十二家房客:返工啦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/27d67874390c2f35afa32c1edec37bd5.jpg", + "releasedAt": 1732107600000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173211792665.m3u8", + "raw": { + "id": "9efe4700743ca9a5886ba4a73acd1c27", + "title": "2024-11-20 七十二家房客:返工啦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/27d67874390c2f35afa32c1edec37bd5.jpg", + "contentType": 3, + "releasedAt": 1732107600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173211792665.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "991123bbef2e7a1877ea0c39112ab002", + "title": "2024-11-19 七十二家房客:婆媳怨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/83c458852ed21d8ea7508d86dcb2a8aa.jpg", + "releasedAt": 1732023137000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173202804472.m3u8", + "raw": { + "id": "991123bbef2e7a1877ea0c39112ab002", + "title": "2024-11-19 七十二家房客:婆媳怨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/83c458852ed21d8ea7508d86dcb2a8aa.jpg", + "contentType": 3, + "releasedAt": 1732023137000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173202804472.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "eb4fc6efa9f42312150554cf80b1ff97", + "title": "2024-11-19 七十二家房客:婆媳怨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7df41d014ddf22e5cd82af00d6fefb37.jpg", + "releasedAt": 1732021200000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173202792938.m3u8", + "raw": { + "id": "eb4fc6efa9f42312150554cf80b1ff97", + "title": "2024-11-19 七十二家房客:婆媳怨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/7df41d014ddf22e5cd82af00d6fefb37.jpg", + "contentType": 3, + "releasedAt": 1732021200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173202792938.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "48546cf415859dcec6b3b8066c9d8c2d", + "title": "2024-11-18 七十二家房客:暗度(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/610b9faf8572dca5d46458af54046416.jpg", + "releasedAt": 1731934800000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173194137518.m3u8", + "raw": { + "id": "48546cf415859dcec6b3b8066c9d8c2d", + "title": "2024-11-18 七十二家房客:暗度(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/610b9faf8572dca5d46458af54046416.jpg", + "contentType": 3, + "releasedAt": 1731934800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173194137518.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3026c79b32fb54be82272cb30f0ea48d", + "title": "2024-11-18 七十二家房客:暗度(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/467cb1bbaf641f9ed36423a86a8bab7a.jpg", + "releasedAt": 1731934800000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173194135743.m3u8", + "raw": { + "id": "3026c79b32fb54be82272cb30f0ea48d", + "title": "2024-11-18 七十二家房客:暗度(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/467cb1bbaf641f9ed36423a86a8bab7a.jpg", + "contentType": 3, + "releasedAt": 1731934800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173194135743.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d1500a5c19528561cccc57784c18e205", + "title": "2024-11-17 七十二家房客:间谍之王(下)", + "coverUrl": "https://img.gdtv.cn/image/202412/0.586891730821146341b14335f5251182bcOSS1734400687.png", + "releasedAt": 1731848400000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173185677370.m3u8", + "raw": { + "id": "d1500a5c19528561cccc57784c18e205", + "title": "2024-11-17 七十二家房客:间谍之王(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.gdtv.cn/image/202412/0.586891730821146341b14335f5251182bcOSS1734400687.png", + "contentType": 3, + "releasedAt": 1731848400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173185677370.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b8bcaf2d37ac32707f4f66f88d2aa28d", + "title": "2024-11-17 七十二家房客:间谍之王(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/95db6889395b91eb61d565e4c007a5cb.jpg", + "releasedAt": 1731848400000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173185680270.m3u8", + "raw": { + "id": "b8bcaf2d37ac32707f4f66f88d2aa28d", + "title": "2024-11-17 七十二家房客:间谍之王(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/95db6889395b91eb61d565e4c007a5cb.jpg", + "contentType": 3, + "releasedAt": 1731848400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173185680270.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "73fd12594eeddf121a445fc50918a662", + "title": "2024-11-16 七十二家房客:老公的事(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/358b274bea409165551b79c90cdc2a89.jpg", + "releasedAt": 1731763753000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173177180252.m3u8", + "raw": { + "id": "73fd12594eeddf121a445fc50918a662", + "title": "2024-11-16 七十二家房客:老公的事(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/358b274bea409165551b79c90cdc2a89.jpg", + "contentType": 3, + "releasedAt": 1731763753000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173177180252.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "90dbe59499abf2bcf793e38ddb118478", + "title": "2024-11-16 七十二家房客:老公的事(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/81645a3078c408e732e3a775d7eb9419.jpg", + "releasedAt": 1731762000000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173177180366.m3u8", + "raw": { + "id": "90dbe59499abf2bcf793e38ddb118478", + "title": "2024-11-16 七十二家房客:老公的事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/81645a3078c408e732e3a775d7eb9419.jpg", + "contentType": 3, + "releasedAt": 1731762000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173177180366.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "11c59baf21cf327dc58271dc3dea8e32", + "title": "2024-11-15 七十二家房客:悲惨世界(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/bb0b627f7cfc0db518eac74561051f7b.jpg", + "releasedAt": 1731675600000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173168108618.m3u8", + "raw": { + "id": "11c59baf21cf327dc58271dc3dea8e32", + "title": "2024-11-15 七十二家房客:悲惨世界(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/bb0b627f7cfc0db518eac74561051f7b.jpg", + "contentType": 3, + "releasedAt": 1731675600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173168108618.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dabb70e25afb7cf8a395032571ad8329", + "title": "2024-11-15 七十二家房客:悲惨世界(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/c67e151452a38a5ebc1d350bccc01ba2.jpg", + "releasedAt": 1731675600000, + "timeLength": 1264, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173168109780.m3u8", + "raw": { + "id": "dabb70e25afb7cf8a395032571ad8329", + "title": "2024-11-15 七十二家房客:悲惨世界(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/c67e151452a38a5ebc1d350bccc01ba2.jpg", + "contentType": 3, + "releasedAt": 1731675600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173168109780.m3u8\"}", + "timeLength": 1264, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4b6f068b9d204b4245706cbec83f4663", + "title": "2024-11-14 七十二家房客:白云猪手(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/a01b52db5080b949be4e7094c6d484c7.jpg", + "releasedAt": 1731591100000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173160075138.m3u8", + "raw": { + "id": "4b6f068b9d204b4245706cbec83f4663", + "title": "2024-11-14 七十二家房客:白云猪手(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/a01b52db5080b949be4e7094c6d484c7.jpg", + "contentType": 3, + "releasedAt": 1731591100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173160075138.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "48352fce23322f7e180946d8c2c55eef", + "title": "2024-11-14 七十二家房客:白云猪手(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/8b3b17bf6c2fc476c409b454b9d4b1c1.jpg", + "releasedAt": 1731589200000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173160074984.m3u8", + "raw": { + "id": "48352fce23322f7e180946d8c2c55eef", + "title": "2024-11-14 七十二家房客:白云猪手(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/8b3b17bf6c2fc476c409b454b9d4b1c1.jpg", + "contentType": 3, + "releasedAt": 1731589200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173160074984.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f36bca6e4f15a9124af7564c9bf7ef84", + "title": "2024-11-13 七十二家房客:自灸", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/3531f0e4708955f1510052d1f46b1e5b.jpg", + "releasedAt": 1731504730000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173150879555.m3u8", + "raw": { + "id": "f36bca6e4f15a9124af7564c9bf7ef84", + "title": "2024-11-13 七十二家房客:自灸", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/3531f0e4708955f1510052d1f46b1e5b.jpg", + "contentType": 3, + "releasedAt": 1731504730000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173150879555.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9497373b6650360a5649c130bdd58ac1", + "title": "2024-11-13 七十二家房客:绵羊发威", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/880cea75b1d14fd4bc6a2f64027cc781.jpg", + "releasedAt": 1731502800000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173150879739.m3u8", + "raw": { + "id": "9497373b6650360a5649c130bdd58ac1", + "title": "2024-11-13 七十二家房客:绵羊发威", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/880cea75b1d14fd4bc6a2f64027cc781.jpg", + "contentType": 3, + "releasedAt": 1731502800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173150879739.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3be062d78c2a20c90accf5b3da23f7dd", + "title": "2024-11-12 七十二家房客:大炮禄(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/0765b2a620bb034d5e3432f3365fda71.jpg", + "releasedAt": 1731418351000, + "timeLength": 1261, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173142287639.m3u8", + "raw": { + "id": "3be062d78c2a20c90accf5b3da23f7dd", + "title": "2024-11-12 七十二家房客:大炮禄(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/0765b2a620bb034d5e3432f3365fda71.jpg", + "contentType": 3, + "releasedAt": 1731418351000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173142287639.m3u8\"}", + "timeLength": 1261, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "802aefac74ba39c14a19337becb832fe", + "title": "2024-11-12 七十二家房客:大炮禄(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/64369948e9f7533a4146dd69af952f6c.jpg", + "releasedAt": 1731416400000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173142260630.m3u8", + "raw": { + "id": "802aefac74ba39c14a19337becb832fe", + "title": "2024-11-12 七十二家房客:大炮禄(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/64369948e9f7533a4146dd69af952f6c.jpg", + "contentType": 3, + "releasedAt": 1731416400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173142260630.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b8cbd3186caca0298f7811e1a5a8dc38", + "title": "2024-11-11 七十二家房客:销赃(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6106b8e051eab363e046d40a6a840609.jpg", + "releasedAt": 1731330000000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173133585439.m3u8", + "raw": { + "id": "b8cbd3186caca0298f7811e1a5a8dc38", + "title": "2024-11-11 七十二家房客:销赃(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/6106b8e051eab363e046d40a6a840609.jpg", + "contentType": 3, + "releasedAt": 1731330000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173133585439.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "62c7b850d0ae995199262ee423aaf6f3", + "title": "2024-11-11 七十二家房客:销赃(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/1f861853a2a1406b685d32e4e2cc418f.jpg", + "releasedAt": 1731330000000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173133585350.m3u8", + "raw": { + "id": "62c7b850d0ae995199262ee423aaf6f3", + "title": "2024-11-11 七十二家房客:销赃(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/1f861853a2a1406b685d32e4e2cc418f.jpg", + "contentType": 3, + "releasedAt": 1731330000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173133585350.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "323e547d3b9762990ca5b7ca155f0257", + "title": "2024-11-10 七十二家房客:新爸爸的烦恼(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/dd47ddb3b55c8a9923cb4aaf9c46d3e3.jpg", + "releasedAt": 1731243600000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173124923073.m3u8", + "raw": { + "id": "323e547d3b9762990ca5b7ca155f0257", + "title": "2024-11-10 七十二家房客:新爸爸的烦恼(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/dd47ddb3b55c8a9923cb4aaf9c46d3e3.jpg", + "contentType": 3, + "releasedAt": 1731243600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173124923073.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1432283be3d581cf3e9443d82904889b", + "title": "2024-11-10 七十二家房客:新爸爸的烦恼(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/bcf2a85d5031a031ead81cb169921b9f.jpg", + "releasedAt": 1731243600000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202412/173124922263.m3u8", + "raw": { + "id": "1432283be3d581cf3e9443d82904889b", + "title": "2024-11-10 七十二家房客:新爸爸的烦恼(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/bcf2a85d5031a031ead81cb169921b9f.jpg", + "contentType": 3, + "releasedAt": 1731243600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202412/173124922263.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fca964e23d3281f52b23e8f8bf817a2f", + "title": "2024-11-09 七十二家房客:灵媒奇案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/711e6287de78f0572acfee48088653d4.jpg", + "releasedAt": 1731158814000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173116693386.m3u8", + "raw": { + "id": "fca964e23d3281f52b23e8f8bf817a2f", + "title": "2024-11-09 七十二家房客:灵媒奇案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/711e6287de78f0572acfee48088653d4.jpg", + "contentType": 3, + "releasedAt": 1731158814000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173116693386.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9eff43635c4aab83a5a4a42854a0085d", + "title": "2024-11-09 七十二家房客:灵媒奇案(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b7a420d0f3d065913994a8a997fd717a.jpg", + "releasedAt": 1731153600000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173116693233.m3u8", + "raw": { + "id": "9eff43635c4aab83a5a4a42854a0085d", + "title": "2024-11-09 七十二家房客:灵媒奇案(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b7a420d0f3d065913994a8a997fd717a.jpg", + "contentType": 3, + "releasedAt": 1731153600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173116693233.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "83536d5f2c957ddab2e536320e4c6155", + "title": "2024-11-08 七十二家房客:泥潭记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/1435b069812a5ab5957f3e39bed645f6.jpg", + "releasedAt": 1731072775000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173108050946.m3u8", + "raw": { + "id": "83536d5f2c957ddab2e536320e4c6155", + "title": "2024-11-08 七十二家房客:泥潭记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/1435b069812a5ab5957f3e39bed645f6.jpg", + "contentType": 3, + "releasedAt": 1731072775000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173108050946.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "82771a3239b6789fe1e3dbdee27a0979", + "title": "2024-11-08 七十二家房客:泥潭记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/0ebe2acb19c9c744e9191b9625e13457.jpg", + "releasedAt": 1731070800000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173108054015.m3u8", + "raw": { + "id": "82771a3239b6789fe1e3dbdee27a0979", + "title": "2024-11-08 七十二家房客:泥潭记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/0ebe2acb19c9c744e9191b9625e13457.jpg", + "contentType": 3, + "releasedAt": 1731070800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173108054015.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d53280e2f347842ee6589198177474ed", + "title": "2024-11-07 七十二家房客:十月螺肉香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/ce895509bca34c50ce96b0db658b23ae.jpg", + "releasedAt": 1730986358000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173099058192.m3u8", + "raw": { + "id": "d53280e2f347842ee6589198177474ed", + "title": "2024-11-07 七十二家房客:十月螺肉香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/ce895509bca34c50ce96b0db658b23ae.jpg", + "contentType": 3, + "releasedAt": 1730986358000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173099058192.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5363877a2b1f98004019e1f734a50694", + "title": "2024-11-07 七十二家房客:十月螺肉香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/388a347d8bbbc23a4ede500e52872479.jpg", + "releasedAt": 1730984400000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173099057993.m3u8", + "raw": { + "id": "5363877a2b1f98004019e1f734a50694", + "title": "2024-11-07 七十二家房客:十月螺肉香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/388a347d8bbbc23a4ede500e52872479.jpg", + "contentType": 3, + "releasedAt": 1730984400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173099057993.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8eb17c75c81ea30203272ba1eb377cfa", + "title": "2024-11-06 七十二家房客:取之有道(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/23ed7ba8001a02045f5d506a38704c00.jpg", + "releasedAt": 1730899982000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173090945423.m3u8", + "raw": { + "id": "8eb17c75c81ea30203272ba1eb377cfa", + "title": "2024-11-06 七十二家房客:取之有道(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/23ed7ba8001a02045f5d506a38704c00.jpg", + "contentType": 3, + "releasedAt": 1730899982000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173090945423.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e6c1be342443615f230b76e7c9dc7863", + "title": "2024-11-06 七十二家房客:取之有道(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/21d2cd792c87bad7e8ee9292723c088a.jpg", + "releasedAt": 1730898000000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173090945267.m3u8", + "raw": { + "id": "e6c1be342443615f230b76e7c9dc7863", + "title": "2024-11-06 七十二家房客:取之有道(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/21d2cd792c87bad7e8ee9292723c088a.jpg", + "contentType": 3, + "releasedAt": 1730898000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173090945267.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4b114a87afc47150b6d359b5b9414a2b", + "title": "2024-11-05 七十二家房客:苦肉计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b8e2904b39b7f30eca283b0da578710e.jpg", + "releasedAt": 1730813546000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173081823633.m3u8", + "raw": { + "id": "4b114a87afc47150b6d359b5b9414a2b", + "title": "2024-11-05 七十二家房客:苦肉计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/b8e2904b39b7f30eca283b0da578710e.jpg", + "contentType": 3, + "releasedAt": 1730813546000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173081823633.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b58499834982f7b846c90118636b704a", + "title": "2024-11-05 七十二家房客:苦肉计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/9b68ff27065f1d38897fe6f2352a01ea.jpg", + "releasedAt": 1730811600000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173081824025.m3u8", + "raw": { + "id": "b58499834982f7b846c90118636b704a", + "title": "2024-11-05 七十二家房客:苦肉计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/9b68ff27065f1d38897fe6f2352a01ea.jpg", + "contentType": 3, + "releasedAt": 1730811600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173081824025.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a6f73c8b04992515c88e59b8d5af096a", + "title": "2024-11-04 七十二家房客:红鸡蛋与合卺酒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/542caf970cdcac89f1449c0125c24d2e.jpg", + "releasedAt": 1730725200000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173073129615.m3u8", + "raw": { + "id": "a6f73c8b04992515c88e59b8d5af096a", + "title": "2024-11-04 七十二家房客:红鸡蛋与合卺酒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/542caf970cdcac89f1449c0125c24d2e.jpg", + "contentType": 3, + "releasedAt": 1730725200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173073129615.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "82dc5f4ff03f732354ff6b2474828a09", + "title": "2024-11-04 七十二家房客:红鸡蛋与合卺酒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/9e86768c4d450b8724a49aec73aab2b3.jpg", + "releasedAt": 1730725200000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173073143943.m3u8", + "raw": { + "id": "82dc5f4ff03f732354ff6b2474828a09", + "title": "2024-11-04 七十二家房客:红鸡蛋与合卺酒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/9e86768c4d450b8724a49aec73aab2b3.jpg", + "contentType": 3, + "releasedAt": 1730725200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173073143943.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99e8fc95de66911329d49e111c8b41b4", + "title": "2024-11-03 七十二家房客:身份之谜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/e4af818ca3202d9663a11a73800d0d61.jpg", + "releasedAt": 1730638800000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173064888857.m3u8", + "raw": { + "id": "99e8fc95de66911329d49e111c8b41b4", + "title": "2024-11-03 七十二家房客:身份之谜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/e4af818ca3202d9663a11a73800d0d61.jpg", + "contentType": 3, + "releasedAt": 1730638800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173064888857.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f52d75561298211903575eaf39cf5552", + "title": "2024-11-03 七十二家房客:身份之谜(上)", + "coverUrl": "https://img.gdtv.cn/image/202412/0.20938047181684039428aa0609308568a61OSS1734400864.png", + "releasedAt": 1730638800000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173064888185.m3u8", + "raw": { + "id": "f52d75561298211903575eaf39cf5552", + "title": "2024-11-03 七十二家房客:身份之谜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.gdtv.cn/image/202412/0.20938047181684039428aa0609308568a61OSS1734400864.png", + "contentType": 3, + "releasedAt": 1730638800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173064888185.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "70cd3c5cefea85246f87f132c94830e7", + "title": "2024-11-02 七十二家房客:孙锦珍的报复(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/553deb439f1884e63d22b55b418d40b6.jpg", + "releasedAt": 1730554124000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173056233658.m3u8", + "raw": { + "id": "70cd3c5cefea85246f87f132c94830e7", + "title": "2024-11-02 七十二家房客:孙锦珍的报复(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/553deb439f1884e63d22b55b418d40b6.jpg", + "contentType": 3, + "releasedAt": 1730554124000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173056233658.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "74d6c0ef73ea89cdb2aff27e83f0bb47", + "title": "2024-11-02 七十二家房客:孙锦珍的报复(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/40925400fa2f04f86079c48c60db4fb4.jpg", + "releasedAt": 1730552400000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173056233718.m3u8", + "raw": { + "id": "74d6c0ef73ea89cdb2aff27e83f0bb47", + "title": "2024-11-02 七十二家房客:孙锦珍的报复(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/40925400fa2f04f86079c48c60db4fb4.jpg", + "contentType": 3, + "releasedAt": 1730552400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173056233718.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f820f1d5a08b435644cf6e2012e0ef0c", + "title": "2024-11-01 七十二家房客:孙锦珍的报复(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/e41f614fc955030b489a13bde9c9c874.jpg", + "releasedAt": 1730467989000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173047229860.m3u8", + "raw": { + "id": "f820f1d5a08b435644cf6e2012e0ef0c", + "title": "2024-11-01 七十二家房客:孙锦珍的报复(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/e41f614fc955030b489a13bde9c9c874.jpg", + "contentType": 3, + "releasedAt": 1730467989000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173047229860.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b21b1b1b96b37df43790bc6e34317278", + "title": "2024-11-01 七十二家房客:孙锦珍的报复(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/c480b01ee74b07ad773f8a0ed83acddb.jpg", + "releasedAt": 1730466000000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173047226713.m3u8", + "raw": { + "id": "b21b1b1b96b37df43790bc6e34317278", + "title": "2024-11-01 七十二家房客:孙锦珍的报复(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/c480b01ee74b07ad773f8a0ed83acddb.jpg", + "contentType": 3, + "releasedAt": 1730466000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173047226713.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a424f196d0ff24ec118e15f6f8e7b5e1", + "title": "2024-10-31 七十二家房客:猪脚姜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/81382c847a5546da093251a84b237f86.jpg", + "releasedAt": 1730379600000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173039081031.m3u8", + "raw": { + "id": "a424f196d0ff24ec118e15f6f8e7b5e1", + "title": "2024-10-31 七十二家房客:猪脚姜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/11/81382c847a5546da093251a84b237f86.jpg", + "contentType": 3, + "releasedAt": 1730379600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173039081031.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0ea17e45a08f1883c489693bcc637e63", + "title": "2024-10-30 七十二家房客:乌龙产子记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/62a28ee691f9043eab6e6083e55878dc.jpg", + "releasedAt": 1730295105000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173029886682.m3u8", + "raw": { + "id": "0ea17e45a08f1883c489693bcc637e63", + "title": "2024-10-30 七十二家房客:乌龙产子记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/62a28ee691f9043eab6e6083e55878dc.jpg", + "contentType": 3, + "releasedAt": 1730295105000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173029886682.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c9bb8e79de4a9e402faf722263299078", + "title": "2024-10-30 七十二家房客:乌龙产子记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e2a3ab483b87397ebf26e520e9d3e38e.jpg", + "releasedAt": 1730293200000, + "timeLength": 1327, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173029891758.m3u8", + "raw": { + "id": "c9bb8e79de4a9e402faf722263299078", + "title": "2024-10-30 七十二家房客:乌龙产子记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e2a3ab483b87397ebf26e520e9d3e38e.jpg", + "contentType": 3, + "releasedAt": 1730293200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173029891758.m3u8\"}", + "timeLength": 1327, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4a5c9d2d677d3eb96d0580ee148fdabe", + "title": "2024-10-29 七十二家房客:撬墙角(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a7ef2a9c584cd2f9ce8780d9e925b208.jpg", + "releasedAt": 1730208732000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173021400677.m3u8", + "raw": { + "id": "4a5c9d2d677d3eb96d0580ee148fdabe", + "title": "2024-10-29 七十二家房客:撬墙角(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a7ef2a9c584cd2f9ce8780d9e925b208.jpg", + "contentType": 3, + "releasedAt": 1730208732000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173021400677.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d01a35ca6cbf245c4221d40c2852edf7", + "title": "2024-10-29 七十二家房客:撬墙角(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/87280e72ebc56c553b6fb5957b61d5a7.jpg", + "releasedAt": 1730206800000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173021399254.m3u8", + "raw": { + "id": "d01a35ca6cbf245c4221d40c2852edf7", + "title": "2024-10-29 七十二家房客:撬墙角(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/87280e72ebc56c553b6fb5957b61d5a7.jpg", + "contentType": 3, + "releasedAt": 1730206800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173021399254.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dfb417cf7fb608bbddc8dd7c4c958889", + "title": "2024-10-28 七十二家房客:广州大钟楼", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/de3ced97f3f20e83eaba49f9a3265a2e.jpg", + "releasedAt": 1730120400000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173012714524.m3u8", + "raw": { + "id": "dfb417cf7fb608bbddc8dd7c4c958889", + "title": "2024-10-28 七十二家房客:广州大钟楼", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/de3ced97f3f20e83eaba49f9a3265a2e.jpg", + "contentType": 3, + "releasedAt": 1730120400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173012714524.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "da4725626acbf4a37c51d29e9dad683e", + "title": "2024-10-27 七十二家房客:陈皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e86df37a22161efda772536f262bc90b.jpg", + "releasedAt": 1730034000000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173004200932.m3u8", + "raw": { + "id": "da4725626acbf4a37c51d29e9dad683e", + "title": "2024-10-27 七十二家房客:陈皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e86df37a22161efda772536f262bc90b.jpg", + "contentType": 3, + "releasedAt": 1730034000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173004200932.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2c85b6220dced49879d99a6bc13ca669", + "title": "2024-10-27 七十二家房客:陈皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/2cbf4f8dee53f4905f5a779ecaaadd0a.jpg", + "releasedAt": 1730034000000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/173004198652.m3u8", + "raw": { + "id": "2c85b6220dced49879d99a6bc13ca669", + "title": "2024-10-27 七十二家房客:陈皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/2cbf4f8dee53f4905f5a779ecaaadd0a.jpg", + "contentType": 3, + "releasedAt": 1730034000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/173004198652.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aef3a63982d5ddd7512d5c88f19bd040", + "title": "2024-10-26 七十二家房客:谁是内奸(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/edb5128e3a8c2c878abfd7bc1e877780.jpg", + "releasedAt": 1729947600000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/172995819715.m3u8", + "raw": { + "id": "aef3a63982d5ddd7512d5c88f19bd040", + "title": "2024-10-26 七十二家房客:谁是内奸(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/edb5128e3a8c2c878abfd7bc1e877780.jpg", + "contentType": 3, + "releasedAt": 1729947600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/172995819715.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "57b5cfabb649a445065aa27a49725c95", + "title": "2024-10-26 七十二家房客:谁是内奸(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f4cf9d81624bd3b1db2ae99300d6f25f.jpg", + "releasedAt": 1729947600000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/172995818996.m3u8", + "raw": { + "id": "57b5cfabb649a445065aa27a49725c95", + "title": "2024-10-26 七十二家房客:谁是内奸(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f4cf9d81624bd3b1db2ae99300d6f25f.jpg", + "contentType": 3, + "releasedAt": 1729947600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/172995818996.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e47f7315526d7f65b0a713f716ada1fc", + "title": "2024-10-25 七十二家房客:舞厅新人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/d0731a31ea2f1a24fea9a1ad1db59e40.jpg", + "releasedAt": 1729863153000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/172986915841.m3u8", + "raw": { + "id": "e47f7315526d7f65b0a713f716ada1fc", + "title": "2024-10-25 七十二家房客:舞厅新人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/d0731a31ea2f1a24fea9a1ad1db59e40.jpg", + "contentType": 3, + "releasedAt": 1729863153000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/172986915841.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aee48d3aa1d464ef60d119b79e5b9dbb", + "title": "2024-10-25 七十二家房客:舞厅新人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e8971042c779728d2ff03c249ffa26aa.jpg", + "releasedAt": 1729861200000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/172986915623.m3u8", + "raw": { + "id": "aee48d3aa1d464ef60d119b79e5b9dbb", + "title": "2024-10-25 七十二家房客:舞厅新人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e8971042c779728d2ff03c249ffa26aa.jpg", + "contentType": 3, + "releasedAt": 1729861200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/172986915623.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "542a13fb3be6cd3ef35470c2cac788fc", + "title": "2024-10-24 七十二家房客:深水食堂", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/c24fb7a205b6452e619cecafd459b0f7.jpg", + "releasedAt": 1729776769000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/172978558991.m3u8", + "raw": { + "id": "542a13fb3be6cd3ef35470c2cac788fc", + "title": "2024-10-24 七十二家房客:深水食堂", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/c24fb7a205b6452e619cecafd459b0f7.jpg", + "contentType": 3, + "releasedAt": 1729776769000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/172978558991.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8233a3b795899eccba7841da963a0514", + "title": "2024-10-24 七十二家房客:迟来的道歉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/ce8f65dd0b1a03fb15ca8585ad3994f8.jpg", + "releasedAt": 1729774800000, + "timeLength": 1357, + "videoUrl": "https://vod.gdtv.cn/m3u8/202411/172978563826.m3u8", + "raw": { + "id": "8233a3b795899eccba7841da963a0514", + "title": "2024-10-24 七十二家房客:迟来的道歉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/ce8f65dd0b1a03fb15ca8585ad3994f8.jpg", + "contentType": 3, + "releasedAt": 1729774800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202411/172978563826.m3u8\"}", + "timeLength": 1357, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e63c49c3dc3ff146be7986c935e0eda0", + "title": "2024-10-23 七十二家房客:绑架案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/99657961e10ea4cc602e17257e04a16c.jpg", + "releasedAt": 1729690380000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172969378047.m3u8", + "raw": { + "id": "e63c49c3dc3ff146be7986c935e0eda0", + "title": "2024-10-23 七十二家房客:绑架案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/99657961e10ea4cc602e17257e04a16c.jpg", + "contentType": 3, + "releasedAt": 1729690380000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172969378047.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd29f7fb9472b3179de37187a0ba5cb2", + "title": "2024-10-23 七十二家房客:绑架案(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a698dd91fc57e27fc630604bce1a398c.jpg", + "releasedAt": 1729688400000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172969378243.m3u8", + "raw": { + "id": "dd29f7fb9472b3179de37187a0ba5cb2", + "title": "2024-10-23 七十二家房客:绑架案(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a698dd91fc57e27fc630604bce1a398c.jpg", + "contentType": 3, + "releasedAt": 1729688400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172969378243.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9da5a85056a1bb9dae69bd956adc9ef1", + "title": "2024-10-22 七十二家房客:冒牌房东", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/038f0288dc24aa246a3849d3815097ad.jpg", + "releasedAt": 1729602000000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172960890620.m3u8", + "raw": { + "id": "9da5a85056a1bb9dae69bd956adc9ef1", + "title": "2024-10-22 七十二家房客:冒牌房东", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/038f0288dc24aa246a3849d3815097ad.jpg", + "contentType": 3, + "releasedAt": 1729602000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172960890620.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fb4f655ecd51dcc704a1ac0a760554e6", + "title": "2024-10-22 七十二家房客:八姑下厨", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/29e2e0e277d3be00b85d4401260aadee.jpg", + "releasedAt": 1729602000000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172960746776.m3u8", + "raw": { + "id": "fb4f655ecd51dcc704a1ac0a760554e6", + "title": "2024-10-22 七十二家房客:八姑下厨", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/29e2e0e277d3be00b85d4401260aadee.jpg", + "contentType": 3, + "releasedAt": 1729602000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172960746776.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7941d9c11e0903346a34f9a90fd814a0", + "title": "2024-10-21 七十二家房客:嫉妒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/11be7c1de8fcb100fa8a6b1baa5bdbf6.jpg", + "releasedAt": 1729517531000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172954173674.m3u8", + "raw": { + "id": "7941d9c11e0903346a34f9a90fd814a0", + "title": "2024-10-21 七十二家房客:嫉妒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/11be7c1de8fcb100fa8a6b1baa5bdbf6.jpg", + "contentType": 3, + "releasedAt": 1729517531000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172954173674.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6e1bc6b4d5106e74f4db0f7a62d175e7", + "title": "2024-10-21 七十二家房客:嫉妒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/26aa42da5eb2ea631ed099a42e755c81.jpg", + "releasedAt": 1729515600000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172954170736.m3u8", + "raw": { + "id": "6e1bc6b4d5106e74f4db0f7a62d175e7", + "title": "2024-10-21 七十二家房客:嫉妒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/26aa42da5eb2ea631ed099a42e755c81.jpg", + "contentType": 3, + "releasedAt": 1729515600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172954170736.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "26fb6d9579fae834db8d466c4686bfac", + "title": "2024-10-20 七十二家房客:刻薄的家婆", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/188f08d1760c7dc19516da59206b5f3e.jpg", + "releasedAt": 1729429200000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172943700894.m3u8", + "raw": { + "id": "26fb6d9579fae834db8d466c4686bfac", + "title": "2024-10-20 七十二家房客:刻薄的家婆", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/188f08d1760c7dc19516da59206b5f3e.jpg", + "contentType": 3, + "releasedAt": 1729429200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172943700894.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1315c52d1630d5c54c9b2845bc18e6f4", + "title": "2024-10-20 七十二家房客:都是存单惹的祸", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a8267953fff98fccbb118750e27f9aad.jpg", + "releasedAt": 1729429200000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172943696655.m3u8", + "raw": { + "id": "1315c52d1630d5c54c9b2845bc18e6f4", + "title": "2024-10-20 七十二家房客:都是存单惹的祸", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a8267953fff98fccbb118750e27f9aad.jpg", + "contentType": 3, + "releasedAt": 1729429200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172943696655.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d4e0699fd68acb193c42a0bd830646f", + "title": "2024-10-19 七十二家房客:竹篮打水(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/238d920d28ffe7bd4adc15f090f35d2f.jpg", + "releasedAt": 1729344555000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172935185726.m3u8", + "raw": { + "id": "4d4e0699fd68acb193c42a0bd830646f", + "title": "2024-10-19 七十二家房客:竹篮打水(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/238d920d28ffe7bd4adc15f090f35d2f.jpg", + "contentType": 3, + "releasedAt": 1729344555000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172935185726.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "16ef56e9d5bce916a4ffadbe57c9e9fc", + "title": "2024-10-19 七十二家房客:竹篮打水(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/7008c76be0e1b8849167bf4eb4e60a56.jpg", + "releasedAt": 1729342800000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172935185560.m3u8", + "raw": { + "id": "16ef56e9d5bce916a4ffadbe57c9e9fc", + "title": "2024-10-19 七十二家房客:竹篮打水(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/7008c76be0e1b8849167bf4eb4e60a56.jpg", + "contentType": 3, + "releasedAt": 1729342800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172935185560.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a6eb87681b6e9ccb348bdbdf2c70b97c", + "title": "2024-10-18 七十二家房客:缩水富翁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8b9403e0e93b86a127a04ee40e6df007.jpg", + "releasedAt": 1729258368000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172926627653.m3u8", + "raw": { + "id": "a6eb87681b6e9ccb348bdbdf2c70b97c", + "title": "2024-10-18 七十二家房客:缩水富翁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8b9403e0e93b86a127a04ee40e6df007.jpg", + "contentType": 3, + "releasedAt": 1729258368000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172926627653.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6ed9929e7f2c55acc7788b84f4abd24c", + "title": "2024-10-18 七十二家房客:缩水富翁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8db8521a73270e3b9de27675a6ae0e19.jpg", + "releasedAt": 1729256400000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172926627364.m3u8", + "raw": { + "id": "6ed9929e7f2c55acc7788b84f4abd24c", + "title": "2024-10-18 七十二家房客:缩水富翁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8db8521a73270e3b9de27675a6ae0e19.jpg", + "contentType": 3, + "releasedAt": 1729256400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172926627364.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "301f800b3c31ca4ceebf733e33f5d8cb", + "title": "2024-10-17 七十二家房客:摆花街(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f27f5f5d5afcb32c925722f959031e02.jpg", + "releasedAt": 1729171974000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172917735637.m3u8", + "raw": { + "id": "301f800b3c31ca4ceebf733e33f5d8cb", + "title": "2024-10-17 七十二家房客:摆花街(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f27f5f5d5afcb32c925722f959031e02.jpg", + "contentType": 3, + "releasedAt": 1729171974000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172917735637.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "79d32129d6813254bee105d6701e27ae", + "title": "2024-10-17 七十二家房客:摆花街(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e27142720d0a23872d986a9ce989b099.jpg", + "releasedAt": 1729170000000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172917731668.m3u8", + "raw": { + "id": "79d32129d6813254bee105d6701e27ae", + "title": "2024-10-17 七十二家房客:摆花街(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e27142720d0a23872d986a9ce989b099.jpg", + "contentType": 3, + "releasedAt": 1729170000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172917731668.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f6447f9fb91361adce443a541d334880", + "title": "2024-10-16 七十二家房客:丁财炮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8bd37f0373be69c5ef65e4739ee1194f.jpg", + "releasedAt": 1729085557000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172908928728.m3u8", + "raw": { + "id": "f6447f9fb91361adce443a541d334880", + "title": "2024-10-16 七十二家房客:丁财炮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8bd37f0373be69c5ef65e4739ee1194f.jpg", + "contentType": 3, + "releasedAt": 1729085557000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172908928728.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "01f42e458a7421ec87a91c3959c75bdb", + "title": "2024-10-16 七十二家房客:丁财炮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a44cc159d0c10cd7a71452a8db76594e.jpg", + "releasedAt": 1729083600000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172908928734.m3u8", + "raw": { + "id": "01f42e458a7421ec87a91c3959c75bdb", + "title": "2024-10-16 七十二家房客:丁财炮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a44cc159d0c10cd7a71452a8db76594e.jpg", + "contentType": 3, + "releasedAt": 1729083600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172908928734.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6de04b4a79b735b081025bd22e5deab7", + "title": "2024-10-15 七十二家房客:痴男怨女(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/4b345b9f9e8f6c19d31e0c6699aa3d7c.jpg", + "releasedAt": 1728997200000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172900444641.m3u8", + "raw": { + "id": "6de04b4a79b735b081025bd22e5deab7", + "title": "2024-10-15 七十二家房客:痴男怨女(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/4b345b9f9e8f6c19d31e0c6699aa3d7c.jpg", + "contentType": 3, + "releasedAt": 1728997200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172900444641.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd29aec67c2dc838df924c4954eea92b", + "title": "2024-10-15 七十二家房客:痴男怨女(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/eb495ab5203086cbe7dc4d0650beed1f.jpg", + "releasedAt": 1728997200000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172900445234.m3u8", + "raw": { + "id": "dd29aec67c2dc838df924c4954eea92b", + "title": "2024-10-15 七十二家房客:痴男怨女(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/eb495ab5203086cbe7dc4d0650beed1f.jpg", + "contentType": 3, + "releasedAt": 1728997200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172900445234.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d8d2170a49a0050f03d144d8d48016c1", + "title": "2024-10-14 七十二家房客:不分胜负(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/d17c04fc8a2b11ccebffe174ecb1cd9c.jpg", + "releasedAt": 1728912756000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172891729727.m3u8", + "raw": { + "id": "d8d2170a49a0050f03d144d8d48016c1", + "title": "2024-10-14 七十二家房客:不分胜负(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/d17c04fc8a2b11ccebffe174ecb1cd9c.jpg", + "contentType": 3, + "releasedAt": 1728912756000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172891729727.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "abd709e136ebbaee050f7f2c004e8c59", + "title": "2024-10-14 七十二家房客:不分胜负(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/4e72f85e07cb3cd5381959b2b0d97e75.jpg", + "releasedAt": 1728910800000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172891729544.m3u8", + "raw": { + "id": "abd709e136ebbaee050f7f2c004e8c59", + "title": "2024-10-14 七十二家房客:不分胜负(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/4e72f85e07cb3cd5381959b2b0d97e75.jpg", + "contentType": 3, + "releasedAt": 1728910800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172891729544.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4c2a23ae78ac3dda8516e669c2665f87", + "title": "2024-10-13 七十二家房客:寻宝(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e360ff43c55003c434a5479d8a7f7450.jpg", + "releasedAt": 1728824400000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172883010083.m3u8", + "raw": { + "id": "4c2a23ae78ac3dda8516e669c2665f87", + "title": "2024-10-13 七十二家房客:寻宝(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e360ff43c55003c434a5479d8a7f7450.jpg", + "contentType": 3, + "releasedAt": 1728824400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172883010083.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ebd65de818f75ee42cdeb731cc4f2918", + "title": "2024-10-13 七十二家房客:寻宝(上)", + "coverUrl": "https://img.gdtv.cn/image/202412/0.65504765700843764381f2fb748bb495b0OSS1734401009.png", + "releasedAt": 1728824400000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172883009871.m3u8", + "raw": { + "id": "ebd65de818f75ee42cdeb731cc4f2918", + "title": "2024-10-13 七十二家房客:寻宝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.gdtv.cn/image/202412/0.65504765700843764381f2fb748bb495b0OSS1734401009.png", + "contentType": 3, + "releasedAt": 1728824400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172883009871.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad131fca4fc2d87fc5ebfe908abeeb19", + "title": "2024-10-12 七十二家房客:我的拍档(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8ca3df58fa62d866ec68210ac2007a8d.jpg", + "releasedAt": 1728739758000, + "timeLength": 1270, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172874778581.m3u8", + "raw": { + "id": "ad131fca4fc2d87fc5ebfe908abeeb19", + "title": "2024-10-12 七十二家房客:我的拍档(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8ca3df58fa62d866ec68210ac2007a8d.jpg", + "contentType": 3, + "releasedAt": 1728739758000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172874778581.m3u8\"}", + "timeLength": 1270, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "32196cad2adf8e4054378c72a5867572", + "title": "2024-10-12 七十二家房客:我的拍档(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/ada9785bbce585af7381c3192647aab3.jpg", + "releasedAt": 1728738000000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172874777995.m3u8", + "raw": { + "id": "32196cad2adf8e4054378c72a5867572", + "title": "2024-10-12 七十二家房客:我的拍档(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/ada9785bbce585af7381c3192647aab3.jpg", + "contentType": 3, + "releasedAt": 1728738000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172874777995.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b6893040e13ad13d2fe78dee178db935", + "title": "2024-10-11 七十二家房客:心中有杆秤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f5720bc2712a549e7510ab8a28aec09d.jpg", + "releasedAt": 1728653509000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172865976613.m3u8", + "raw": { + "id": "b6893040e13ad13d2fe78dee178db935", + "title": "2024-10-11 七十二家房客:心中有杆秤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f5720bc2712a549e7510ab8a28aec09d.jpg", + "contentType": 3, + "releasedAt": 1728653509000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172865976613.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c6e1daf661b72a05a8ccb143b59db2c6", + "title": "2024-10-11 七十二家房客:心中有杆秤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/4b51ad6519bfb26c7da5c47e3a66cdfe.jpg", + "releasedAt": 1728651600000, + "timeLength": 1336, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172865977688.m3u8", + "raw": { + "id": "c6e1daf661b72a05a8ccb143b59db2c6", + "title": "2024-10-11 七十二家房客:心中有杆秤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/4b51ad6519bfb26c7da5c47e3a66cdfe.jpg", + "contentType": 3, + "releasedAt": 1728651600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172865977688.m3u8\"}", + "timeLength": 1336, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "64772aa6351354095c7a32431e5d78a9", + "title": "2024-10-10 七十二家房客:局中局(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/fb3e6fecd57a71a6c6f1444a28981a7c.jpg", + "releasedAt": 1728565200000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172857487050.m3u8", + "raw": { + "id": "64772aa6351354095c7a32431e5d78a9", + "title": "2024-10-10 七十二家房客:局中局(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/fb3e6fecd57a71a6c6f1444a28981a7c.jpg", + "contentType": 3, + "releasedAt": 1728565200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172857487050.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7175b80da749f8f6f5a23240e96da7b3", + "title": "2024-10-10 七十二家房客:局中局(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/fb5d4032651faff6d030f27715fc2cf5.jpg", + "releasedAt": 1728565200000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172857487681.m3u8", + "raw": { + "id": "7175b80da749f8f6f5a23240e96da7b3", + "title": "2024-10-10 七十二家房客:局中局(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/fb5d4032651faff6d030f27715fc2cf5.jpg", + "contentType": 3, + "releasedAt": 1728565200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172857487681.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4f39bd6c39806761b9de65704e7813d0", + "title": "2024-10-09 七十二家房客:捉女婿(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/1130422445df672e2bbf12ce2a87b25d.jpg", + "releasedAt": 1728480724000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172848444273.m3u8", + "raw": { + "id": "4f39bd6c39806761b9de65704e7813d0", + "title": "2024-10-09 七十二家房客:捉女婿(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/1130422445df672e2bbf12ce2a87b25d.jpg", + "contentType": 3, + "releasedAt": 1728480724000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172848444273.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "04cac4299e58807e4050cf4d98a8aa0d", + "title": "2024-10-09 七十二家房客:捉女婿(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/2c864dcd897f74d32500f41fa741383e.jpg", + "releasedAt": 1728478800000, + "timeLength": 1329, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172848444935.m3u8", + "raw": { + "id": "04cac4299e58807e4050cf4d98a8aa0d", + "title": "2024-10-09 七十二家房客:捉女婿(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/2c864dcd897f74d32500f41fa741383e.jpg", + "contentType": 3, + "releasedAt": 1728478800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172848444935.m3u8\"}", + "timeLength": 1329, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b804750cd3bd0f08374a9631fc368ced", + "title": "2024-10-08 七十二家房客:既定计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/9946a1d8a6656fa4882224caa8631f46.jpg", + "releasedAt": 1728392400000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172839887223.m3u8", + "raw": { + "id": "b804750cd3bd0f08374a9631fc368ced", + "title": "2024-10-08 七十二家房客:既定计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/9946a1d8a6656fa4882224caa8631f46.jpg", + "contentType": 3, + "releasedAt": 1728392400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172839887223.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "673e2f258e9a546e55893406ae3f15f2", + "title": "2024-10-08 七十二家房客:既定计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/02916c77ceba707565e34bc6eeb0d2f2.jpg", + "releasedAt": 1728392400000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172839887289.m3u8", + "raw": { + "id": "673e2f258e9a546e55893406ae3f15f2", + "title": "2024-10-08 七十二家房客:既定计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/02916c77ceba707565e34bc6eeb0d2f2.jpg", + "contentType": 3, + "releasedAt": 1728392400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172839887289.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9d18a4109341ad60db1a1166aa8aca00", + "title": "2024-10-07 七十二家房客:黑白恩怨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/d9d65da625c452cee385edbb8981b778.jpg", + "releasedAt": 1728307902000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172831095593.m3u8", + "raw": { + "id": "9d18a4109341ad60db1a1166aa8aca00", + "title": "2024-10-07 七十二家房客:黑白恩怨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/d9d65da625c452cee385edbb8981b778.jpg", + "contentType": 3, + "releasedAt": 1728307902000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172831095593.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ac0f161448a2311b0ba17724a4f235da", + "title": "2024-10-07 七十二家房客:黑白恩怨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/169b4e6809092cc13c91b07f44d7cb51.jpg", + "releasedAt": 1728306000000, + "timeLength": 1335, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172831095388.m3u8", + "raw": { + "id": "ac0f161448a2311b0ba17724a4f235da", + "title": "2024-10-07 七十二家房客:黑白恩怨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/169b4e6809092cc13c91b07f44d7cb51.jpg", + "contentType": 3, + "releasedAt": 1728306000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172831095388.m3u8\"}", + "timeLength": 1335, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5fe06a899e311518f736cf9adabf65df", + "title": "2024-10-06 七十二家房客:理失心不安(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e2f66c45a168782e9654c7bb94da15ed.jpg", + "releasedAt": 1728221286000, + "timeLength": 1261, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172822856873.m3u8", + "raw": { + "id": "5fe06a899e311518f736cf9adabf65df", + "title": "2024-10-06 七十二家房客:理失心不安(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/e2f66c45a168782e9654c7bb94da15ed.jpg", + "contentType": 3, + "releasedAt": 1728221286000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172822856873.m3u8\"}", + "timeLength": 1261, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "88e215459e223986cb04c7ac82f9d1da", + "title": "2024-10-06 七十二家房客:理失心不安(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a4e53ca8ff3bae6e9fa9f3d82ad66e64.jpg", + "releasedAt": 1728219600000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172822856531.m3u8", + "raw": { + "id": "88e215459e223986cb04c7ac82f9d1da", + "title": "2024-10-06 七十二家房客:理失心不安(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/a4e53ca8ff3bae6e9fa9f3d82ad66e64.jpg", + "contentType": 3, + "releasedAt": 1728219600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172822856531.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d0afc598dd1e7e5e1ebe9b64345a8e3", + "title": "2024-10-05 七十二家房客:苦命奇冤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/72cfbdfd5fbfd06c68c04e7256790d04.jpg", + "releasedAt": 1728134922000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172814177939.m3u8", + "raw": { + "id": "4d0afc598dd1e7e5e1ebe9b64345a8e3", + "title": "2024-10-05 七十二家房客:苦命奇冤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/72cfbdfd5fbfd06c68c04e7256790d04.jpg", + "contentType": 3, + "releasedAt": 1728134922000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172814177939.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba0f07735b43c62fd3272c7bc5f38a34", + "title": "2024-10-05 七十二家房客:苦命奇冤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8ed23f524acea1326f47d0e16776f449.jpg", + "releasedAt": 1728133200000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172814172280.m3u8", + "raw": { + "id": "ba0f07735b43c62fd3272c7bc5f38a34", + "title": "2024-10-05 七十二家房客:苦命奇冤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/8ed23f524acea1326f47d0e16776f449.jpg", + "contentType": 3, + "releasedAt": 1728133200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172814172280.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8ea1196fc0658f8ddd186a09242b6828", + "title": "2024-10-04 七十二家房客:老虎当病猫", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/306fbd888491f97452a92476109ef48e.jpg", + "releasedAt": 1728048750000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172805477055.m3u8", + "raw": { + "id": "8ea1196fc0658f8ddd186a09242b6828", + "title": "2024-10-04 七十二家房客:老虎当病猫", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/306fbd888491f97452a92476109ef48e.jpg", + "contentType": 3, + "releasedAt": 1728048750000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172805477055.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "085d0670cb7fd0f05bc225ea9b317df7", + "title": "2024-10-03 七十二家房客:磨心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/3572f0bf86e217049df55b91bb8281d2.jpg", + "releasedAt": 1727962336000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172805094825.m3u8", + "raw": { + "id": "085d0670cb7fd0f05bc225ea9b317df7", + "title": "2024-10-03 七十二家房客:磨心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/3572f0bf86e217049df55b91bb8281d2.jpg", + "contentType": 3, + "releasedAt": 1727962336000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172805094825.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91cded3a3b8f77f50c61b88c234ff8aa", + "title": "2024-10-03 七十二家房客:磨心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/9884c8a6b85c64fec037d391df1b599a.jpg", + "releasedAt": 1727960400000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172805091389.m3u8", + "raw": { + "id": "91cded3a3b8f77f50c61b88c234ff8aa", + "title": "2024-10-03 七十二家房客:磨心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/9884c8a6b85c64fec037d391df1b599a.jpg", + "contentType": 3, + "releasedAt": 1727960400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172805091389.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b47d1ba3b65e3f78488f000fb4ae3a80", + "title": "2024-10-02 七十二家房客:戏假情真(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f043d5aa4032c3a2107bd411aa8307dd.jpg", + "releasedAt": 1727875758000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172804812982.m3u8", + "raw": { + "id": "b47d1ba3b65e3f78488f000fb4ae3a80", + "title": "2024-10-02 七十二家房客:戏假情真(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/f043d5aa4032c3a2107bd411aa8307dd.jpg", + "contentType": 3, + "releasedAt": 1727875758000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172804812982.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2658f0bad5c147e39e7cd8e8fa505898", + "title": "2024-10-02 七十二家房客:戏假情真(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/996826a8317837afe936a482812a6bcc.jpg", + "releasedAt": 1727856000000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172804812531.m3u8", + "raw": { + "id": "2658f0bad5c147e39e7cd8e8fa505898", + "title": "2024-10-02 七十二家房客:戏假情真(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/996826a8317837afe936a482812a6bcc.jpg", + "contentType": 3, + "releasedAt": 1727856000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172804812531.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4aeefce994d9ac829ec520356b8dae17", + "title": "2024-10-01 七十二家房客:造物弄人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/60d28666aa34ed0cc3049a678cf583de.jpg", + "releasedAt": 1727793455000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172783508781.m3u8", + "raw": { + "id": "4aeefce994d9ac829ec520356b8dae17", + "title": "2024-10-01 七十二家房客:造物弄人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/60d28666aa34ed0cc3049a678cf583de.jpg", + "contentType": 3, + "releasedAt": 1727793455000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172783508781.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1a09282bbecceb66bb7ffd23b9d3f2e7", + "title": "2024-10-01 七十二家房客:木薯奇案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/2fc24ffc17ade9f6a37822e8a2d67f97.jpg", + "releasedAt": 1727792196000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172783509870.m3u8", + "raw": { + "id": "1a09282bbecceb66bb7ffd23b9d3f2e7", + "title": "2024-10-01 七十二家房客:木薯奇案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/10/2fc24ffc17ade9f6a37822e8a2d67f97.jpg", + "contentType": 3, + "releasedAt": 1727792196000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172783509870.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d15e96024ba629f3b5fab66ab1654113", + "title": "2024-09-30 七十二家房客:不能说的秘密(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/1c95d201af92314e90216ae82823c3d0.jpg", + "releasedAt": 1727703157000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172770864180.m3u8", + "raw": { + "id": "d15e96024ba629f3b5fab66ab1654113", + "title": "2024-09-30 七十二家房客:不能说的秘密(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/1c95d201af92314e90216ae82823c3d0.jpg", + "contentType": 3, + "releasedAt": 1727703157000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172770864180.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5202024033ae9cd84147bb6f74b668b1", + "title": "2024-09-30 七十二家房客:不能说的秘密(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/69667a5dca8d7fdbfcfde98bd300eca0.jpg", + "releasedAt": 1727701200000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172770865031.m3u8", + "raw": { + "id": "5202024033ae9cd84147bb6f74b668b1", + "title": "2024-09-30 七十二家房客:不能说的秘密(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/69667a5dca8d7fdbfcfde98bd300eca0.jpg", + "contentType": 3, + "releasedAt": 1727701200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172770865031.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "559958d6ca6a1da0e4e3e1025c4fb4ef", + "title": "2024-09-29 七十二家房客:边缘人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/eb127a6b9e21e7fd34c9f8c58e375085.jpg", + "releasedAt": 1727614800000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172762174428.m3u8", + "raw": { + "id": "559958d6ca6a1da0e4e3e1025c4fb4ef", + "title": "2024-09-29 七十二家房客:边缘人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/eb127a6b9e21e7fd34c9f8c58e375085.jpg", + "contentType": 3, + "releasedAt": 1727614800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172762174428.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bd560dabd462f5561c65987e78f6197a", + "title": "2024-09-29 七十二家房客:边缘人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c91dcb3b022d9e6872c37f9fee52fb0e.jpg", + "releasedAt": 1727614800000, + "timeLength": 1330, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172762172561.m3u8", + "raw": { + "id": "bd560dabd462f5561c65987e78f6197a", + "title": "2024-09-29 七十二家房客:边缘人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c91dcb3b022d9e6872c37f9fee52fb0e.jpg", + "contentType": 3, + "releasedAt": 1727614800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172762172561.m3u8\"}", + "timeLength": 1330, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "028ca595e159068fa866b29fe50a3aa9", + "title": "2024-09-28 七十二家房客:心魔(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/fb008fbfd8f3e9ffc84057d74c66418c.jpg", + "releasedAt": 1727530125000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172753907633.m3u8", + "raw": { + "id": "028ca595e159068fa866b29fe50a3aa9", + "title": "2024-09-28 七十二家房客:心魔(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/fb008fbfd8f3e9ffc84057d74c66418c.jpg", + "contentType": 3, + "releasedAt": 1727530125000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172753907633.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2d70e345453a375d2ab881e46f94bd72", + "title": "2024-09-28 七十二家房客:心魔(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/6dd94109547e753c693932f85ee16783.jpg", + "releasedAt": 1727528400000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172753911872.m3u8", + "raw": { + "id": "2d70e345453a375d2ab881e46f94bd72", + "title": "2024-09-28 七十二家房客:心魔(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/6dd94109547e753c693932f85ee16783.jpg", + "contentType": 3, + "releasedAt": 1727528400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172753911872.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9e74e7d954d6c503ab80ecc9cce8884f", + "title": "2024-09-27 七十二家房客:姜埋奶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/90d7774f0e1d877f8429ba9f3d89098a.jpg", + "releasedAt": 1727443932000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172745227533.m3u8", + "raw": { + "id": "9e74e7d954d6c503ab80ecc9cce8884f", + "title": "2024-09-27 七十二家房客:姜埋奶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/90d7774f0e1d877f8429ba9f3d89098a.jpg", + "contentType": 3, + "releasedAt": 1727443932000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172745227533.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5e99ef7e8ac25d8043ed9266fb72c9c8", + "title": "2024-09-27 七十二家房客:姜埋奶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/2033146f936a22c1576b29a526bcb042.jpg", + "releasedAt": 1727442000000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172745229893.m3u8", + "raw": { + "id": "5e99ef7e8ac25d8043ed9266fb72c9c8", + "title": "2024-09-27 七十二家房客:姜埋奶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/2033146f936a22c1576b29a526bcb042.jpg", + "contentType": 3, + "releasedAt": 1727442000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172745229893.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6af65d4266e936aa1bd5c27a633ef2ea", + "title": "2024-09-26 七十二家房客:筹码(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/649e847b22f405484d97531662e05a7b.jpg", + "releasedAt": 1727357551000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172736170619.m3u8", + "raw": { + "id": "6af65d4266e936aa1bd5c27a633ef2ea", + "title": "2024-09-26 七十二家房客:筹码(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/649e847b22f405484d97531662e05a7b.jpg", + "contentType": 3, + "releasedAt": 1727357551000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172736170619.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "332b194656ad6f71f51e5709c1eef8dd", + "title": "2024-09-26 七十二家房客:筹码(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/d02563b6015c1f559adc4fd108c6d3b3.jpg", + "releasedAt": 1727355600000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172736170591.m3u8", + "raw": { + "id": "332b194656ad6f71f51e5709c1eef8dd", + "title": "2024-09-26 七十二家房客:筹码(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/d02563b6015c1f559adc4fd108c6d3b3.jpg", + "contentType": 3, + "releasedAt": 1727355600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172736170591.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "531d58a20720f286de2b32aede7c729e", + "title": "2024-09-25 七十二家房客:温暖的送别", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/36c429094b79b730be1ec11d47ddec4b.jpg", + "releasedAt": 1727271151000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172727509729.m3u8", + "raw": { + "id": "531d58a20720f286de2b32aede7c729e", + "title": "2024-09-25 七十二家房客:温暖的送别", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/36c429094b79b730be1ec11d47ddec4b.jpg", + "contentType": 3, + "releasedAt": 1727271151000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172727509729.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "be3f49650293bb4eae265241e81c2d0e", + "title": "2024-09-25 七十二家房客:祸福香炉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/702a50cbc57cc5d88fa3bc60088fbe66.jpg", + "releasedAt": 1727269200000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172727508895.m3u8", + "raw": { + "id": "be3f49650293bb4eae265241e81c2d0e", + "title": "2024-09-25 七十二家房客:祸福香炉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/702a50cbc57cc5d88fa3bc60088fbe66.jpg", + "contentType": 3, + "releasedAt": 1727269200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172727508895.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fd61351c62e514f84b3e686d5e3c785d", + "title": "2024-09-24 七十二家房客:闹剧(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/dc760c994d5debac65afbd3cdf4c2ee3.jpg", + "releasedAt": 1727182800000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172718977460.m3u8", + "raw": { + "id": "fd61351c62e514f84b3e686d5e3c785d", + "title": "2024-09-24 七十二家房客:闹剧(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/dc760c994d5debac65afbd3cdf4c2ee3.jpg", + "contentType": 3, + "releasedAt": 1727182800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172718977460.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "30ad0bbd8b34af0f0f53c1f3eee6ea92", + "title": "2024-09-24 七十二家房客:闹剧(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/d8e6bb26362e4f2111000f233a3c5843.jpg", + "releasedAt": 1727182800000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202410/172718977310.m3u8", + "raw": { + "id": "30ad0bbd8b34af0f0f53c1f3eee6ea92", + "title": "2024-09-24 七十二家房客:闹剧(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/d8e6bb26362e4f2111000f233a3c5843.jpg", + "contentType": 3, + "releasedAt": 1727182800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202410/172718977310.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b227aeac932f066022cbab33b4b42454", + "title": "2024-09-23 七十二家房客:女人心计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/ffbf10650091f90daa8d034adecc9ed6.jpg", + "releasedAt": 1727098340000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172710361071.m3u8", + "raw": { + "id": "b227aeac932f066022cbab33b4b42454", + "title": "2024-09-23 七十二家房客:女人心计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/ffbf10650091f90daa8d034adecc9ed6.jpg", + "contentType": 3, + "releasedAt": 1727098340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172710361071.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b3d886dcf70b207492fa94447ff98743", + "title": "2024-09-23 七十二家房客:女人心计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/e701194550b3ad792afc163d2e3036c1.jpg", + "releasedAt": 1727096400000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172710361286.m3u8", + "raw": { + "id": "b3d886dcf70b207492fa94447ff98743", + "title": "2024-09-23 七十二家房客:女人心计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/e701194550b3ad792afc163d2e3036c1.jpg", + "contentType": 3, + "releasedAt": 1727096400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172710361286.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0b850b328b41754da15b924f625f6604", + "title": "2024-09-22 七十二家房客:过房儿子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/96272c7151760eb38f9ce4d1529166e6.jpg", + "releasedAt": 1727010000000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172701858433.m3u8", + "raw": { + "id": "0b850b328b41754da15b924f625f6604", + "title": "2024-09-22 七十二家房客:过房儿子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/96272c7151760eb38f9ce4d1529166e6.jpg", + "contentType": 3, + "releasedAt": 1727010000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172701858433.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7faad9d12cce31bfad9c7c70bddbda7b", + "title": "2024-09-22 七十二家房客:过房儿子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/85db87b4ddd6fd100cff049211043c09.jpg", + "releasedAt": 1727010000000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172701858848.m3u8", + "raw": { + "id": "7faad9d12cce31bfad9c7c70bddbda7b", + "title": "2024-09-22 七十二家房客:过房儿子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/85db87b4ddd6fd100cff049211043c09.jpg", + "contentType": 3, + "releasedAt": 1727010000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172701858848.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a91824202de0ec0007caac6595b8a38c", + "title": "2024-09-21 七十二家房客:黄梨梦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/cefa1b5ead7c8ca02bda2800b576c26a.jpg", + "releasedAt": 1726925322000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172693599170.m3u8", + "raw": { + "id": "a91824202de0ec0007caac6595b8a38c", + "title": "2024-09-21 七十二家房客:黄梨梦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/cefa1b5ead7c8ca02bda2800b576c26a.jpg", + "contentType": 3, + "releasedAt": 1726925322000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172693599170.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e3337d0f87102af9b5f28a27e9b4f666", + "title": "2024-09-21 七十二家房客:黄梨梦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/8d6e4b804222efe417933bfa8a04e2db.jpg", + "releasedAt": 1726923600000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172693602835.m3u8", + "raw": { + "id": "e3337d0f87102af9b5f28a27e9b4f666", + "title": "2024-09-21 七十二家房客:黄梨梦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/8d6e4b804222efe417933bfa8a04e2db.jpg", + "contentType": 3, + "releasedAt": 1726923600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172693602835.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1e033477927dd72ef7494e48b34e6609", + "title": "2024-09-20 七十二家房客:媒人福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7038377c54321272a7341930ad758db8.jpg", + "releasedAt": 1726839144000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172684579629.m3u8", + "raw": { + "id": "1e033477927dd72ef7494e48b34e6609", + "title": "2024-09-20 七十二家房客:媒人福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7038377c54321272a7341930ad758db8.jpg", + "contentType": 3, + "releasedAt": 1726839144000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172684579629.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f03a1d272060bb4c4416afb6d540192d", + "title": "2024-09-20 七十二家房客:造反的马仔", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/57a376090380def55c64e19571267c7a.jpg", + "releasedAt": 1726837200000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172684577934.m3u8", + "raw": { + "id": "f03a1d272060bb4c4416afb6d540192d", + "title": "2024-09-20 七十二家房客:造反的马仔", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/57a376090380def55c64e19571267c7a.jpg", + "contentType": 3, + "releasedAt": 1726837200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172684577934.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "befcf92ca91d575f1fd3099290bcf641", + "title": "2024-09-19 七十二家房客:托孤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c1bcaa33f28dc7612bc11f1d8beb06a9.jpg", + "releasedAt": 1726750800000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172675745792.m3u8", + "raw": { + "id": "befcf92ca91d575f1fd3099290bcf641", + "title": "2024-09-19 七十二家房客:托孤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c1bcaa33f28dc7612bc11f1d8beb06a9.jpg", + "contentType": 3, + "releasedAt": 1726750800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172675745792.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bf244c63db61160921b77082976f4b9b", + "title": "2024-09-19 七十二家房客:托孤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9f76b7713444a7e2766fa8d1345f1ce4.jpg", + "releasedAt": 1726750800000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172675749934.m3u8", + "raw": { + "id": "bf244c63db61160921b77082976f4b9b", + "title": "2024-09-19 七十二家房客:托孤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9f76b7713444a7e2766fa8d1345f1ce4.jpg", + "contentType": 3, + "releasedAt": 1726750800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172675749934.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "10d1b2d8b9157bee4aac6c7d3288a672", + "title": "2024-09-18 七十二家房客:过气特工(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/4f59d5fdaf087cd634d70d770a672f7a.jpg", + "releasedAt": 1726666360000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172671860992.m3u8", + "raw": { + "id": "10d1b2d8b9157bee4aac6c7d3288a672", + "title": "2024-09-18 七十二家房客:过气特工(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/4f59d5fdaf087cd634d70d770a672f7a.jpg", + "contentType": 3, + "releasedAt": 1726666360000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172671860992.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e27fcc879f032d127362d613b6fbe976", + "title": "2024-09-18 七十二家房客:过气特工(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/06dffa1e7cb36297f6043f5fc4ed794d.jpg", + "releasedAt": 1726664400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172671861098.m3u8", + "raw": { + "id": "e27fcc879f032d127362d613b6fbe976", + "title": "2024-09-18 七十二家房客:过气特工(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/06dffa1e7cb36297f6043f5fc4ed794d.jpg", + "contentType": 3, + "releasedAt": 1726664400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172671861098.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "243df9decc6087ee19a890b3b2b69efa", + "title": "2024-09-17 七十二家房客:特派专员(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/0e2560f92f6e613b9eefb723c72852bf.jpg", + "releasedAt": 1726579966000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172658487934.m3u8", + "raw": { + "id": "243df9decc6087ee19a890b3b2b69efa", + "title": "2024-09-17 七十二家房客:特派专员(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/0e2560f92f6e613b9eefb723c72852bf.jpg", + "contentType": 3, + "releasedAt": 1726579966000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172658487934.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "01a23050c1595a054ea02106051bc8aa", + "title": "2024-09-17 七十二家房客:特派专员(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/6d4cca2a3c5d09dda9b458ba1ee9b4bc.jpg", + "releasedAt": 1726578000000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172658487866.m3u8", + "raw": { + "id": "01a23050c1595a054ea02106051bc8aa", + "title": "2024-09-17 七十二家房客:特派专员(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/6d4cca2a3c5d09dda9b458ba1ee9b4bc.jpg", + "contentType": 3, + "releasedAt": 1726578000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172658487866.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e21ed2e7fb45c4a6ff1a09c0c9dbcc55", + "title": "2024-09-16 七十二家房客:明明白白我的心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/0923a98349bc92c70c8df3ee7626383c.jpg", + "releasedAt": 1726493548000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172650008424.m3u8", + "raw": { + "id": "e21ed2e7fb45c4a6ff1a09c0c9dbcc55", + "title": "2024-09-16 七十二家房客:明明白白我的心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/0923a98349bc92c70c8df3ee7626383c.jpg", + "contentType": 3, + "releasedAt": 1726493548000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172650008424.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6dc35e23575802b5fd4c0788fc99b15c", + "title": "2024-09-16 七十二家房客:明明白白我的心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c422ea29464cb457846ebd8e1049dbf0.jpg", + "releasedAt": 1726491600000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172650008913.m3u8", + "raw": { + "id": "6dc35e23575802b5fd4c0788fc99b15c", + "title": "2024-09-16 七十二家房客:明明白白我的心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c422ea29464cb457846ebd8e1049dbf0.jpg", + "contentType": 3, + "releasedAt": 1726491600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172650008913.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "858d64743aa5653610f726cae872d0e6", + "title": "2024-09-15 七十二家房客:养女阿竹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/87c10ca0d5ead2ce1fa15bb4895fa001.jpg", + "releasedAt": 1726405200000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172641262517.m3u8", + "raw": { + "id": "858d64743aa5653610f726cae872d0e6", + "title": "2024-09-15 七十二家房客:养女阿竹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/87c10ca0d5ead2ce1fa15bb4895fa001.jpg", + "contentType": 3, + "releasedAt": 1726405200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172641262517.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "98ba1e746d750963a8ed7786ba9a3db0", + "title": "2024-09-15 七十二家房客:养女阿竹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9a1becf7503838c6bdb45a4f45637e18.jpg", + "releasedAt": 1726405200000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172641406493.m3u8", + "raw": { + "id": "98ba1e746d750963a8ed7786ba9a3db0", + "title": "2024-09-15 七十二家房客:养女阿竹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9a1becf7503838c6bdb45a4f45637e18.jpg", + "contentType": 3, + "releasedAt": 1726405200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172641406493.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "05bd5834ec202a261b41537d62a4b42b", + "title": "2024-09-14 七十二家房客:孤寒财主(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/02aa54b32d250e7c29df3c246e22cdcb.jpg", + "releasedAt": 1726320493000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172632957645.m3u8", + "raw": { + "id": "05bd5834ec202a261b41537d62a4b42b", + "title": "2024-09-14 七十二家房客:孤寒财主(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/02aa54b32d250e7c29df3c246e22cdcb.jpg", + "contentType": 3, + "releasedAt": 1726320493000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172632957645.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d3806bb4f8b6477183de06fdf5fa561a", + "title": "2024-09-14 七十二家房客:孤寒财主(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/bfd3c0377cf2bf0ee913308a51044faa.jpg", + "releasedAt": 1726318800000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172632957487.m3u8", + "raw": { + "id": "d3806bb4f8b6477183de06fdf5fa561a", + "title": "2024-09-14 七十二家房客:孤寒财主(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/bfd3c0377cf2bf0ee913308a51044faa.jpg", + "contentType": 3, + "releasedAt": 1726318800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172632957487.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "acee6407fe854c1c8397c509f016052b", + "title": "2024-09-13 七十二家房客:偏向虎山行(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/597142c039b3fb5243e2245b68a4b520.jpg", + "releasedAt": 1726234352000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172623767399.m3u8", + "raw": { + "id": "acee6407fe854c1c8397c509f016052b", + "title": "2024-09-13 七十二家房客:偏向虎山行(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/597142c039b3fb5243e2245b68a4b520.jpg", + "contentType": 3, + "releasedAt": 1726234352000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172623767399.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b08600b824170af6120e1f9e4a1e9a34", + "title": "2024-09-13 七十二家房客:偏向虎山行(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/23202ed6f719e242a5acfe56d4ae887f.jpg", + "releasedAt": 1726232400000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172623706495.m3u8", + "raw": { + "id": "b08600b824170af6120e1f9e4a1e9a34", + "title": "2024-09-13 七十二家房客:偏向虎山行(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/23202ed6f719e242a5acfe56d4ae887f.jpg", + "contentType": 3, + "releasedAt": 1726232400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172623706495.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "caeb663cb807112d18a78679d8ad1f2d", + "title": "2024-09-12 七十二家房客:合伙单车", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/73f924b6f587c2bee3de08fd7c2f0737.jpg", + "releasedAt": 1726147936000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172622658629.m3u8", + "raw": { + "id": "caeb663cb807112d18a78679d8ad1f2d", + "title": "2024-09-12 七十二家房客:合伙单车", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/73f924b6f587c2bee3de08fd7c2f0737.jpg", + "contentType": 3, + "releasedAt": 1726147936000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172622658629.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cfec7fe4f0ff7bda4c5fb445954fb767", + "title": "2024-09-12 七十二家房客:一字千金", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/1ec237fbe0b49ec30480a5de4e9789a8.jpg", + "releasedAt": 1726146000000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172622659059.m3u8", + "raw": { + "id": "cfec7fe4f0ff7bda4c5fb445954fb767", + "title": "2024-09-12 七十二家房客:一字千金", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/1ec237fbe0b49ec30480a5de4e9789a8.jpg", + "contentType": 3, + "releasedAt": 1726146000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172622659059.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d132d29cbef6c75788a6126429cd6e81", + "title": "2024-09-11 七十二家房客:为善之门(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/a51b9f62bc83804298ea331576d5b247.jpg", + "releasedAt": 1726059600000, + "timeLength": 1252, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172606576942.m3u8", + "raw": { + "id": "d132d29cbef6c75788a6126429cd6e81", + "title": "2024-09-11 七十二家房客:为善之门(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/a51b9f62bc83804298ea331576d5b247.jpg", + "contentType": 3, + "releasedAt": 1726059600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172606576942.m3u8\"}", + "timeLength": 1252, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7d9781328c053f012c221bad4d983b05", + "title": "2024-09-11 七十二家房客:为善之门(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c841a0163eef00afe31dda8c2047816b.jpg", + "releasedAt": 1726059600000, + "timeLength": 1336, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172606576946.m3u8", + "raw": { + "id": "7d9781328c053f012c221bad4d983b05", + "title": "2024-09-11 七十二家房客:为善之门(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/c841a0163eef00afe31dda8c2047816b.jpg", + "contentType": 3, + "releasedAt": 1726059600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172606576946.m3u8\"}", + "timeLength": 1336, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "63983678f0961dc8d49c5ae81532e27f", + "title": "2024-09-10 七十二家房客:前辈与晚辈(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7c476a06b0d44de3f1737e650c1806e2.jpg", + "releasedAt": 1725975100000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172597875521.m3u8", + "raw": { + "id": "63983678f0961dc8d49c5ae81532e27f", + "title": "2024-09-10 七十二家房客:前辈与晚辈(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7c476a06b0d44de3f1737e650c1806e2.jpg", + "contentType": 3, + "releasedAt": 1725975100000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172597875521.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "72a1eb9f63b97fdc67d3429f034a5cc0", + "title": "2024-09-10 七十二家房客:前辈与晚辈(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7cec5df2605ae02f5ae3f67a22e7e73b.jpg", + "releasedAt": 1725973200000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172597875882.m3u8", + "raw": { + "id": "72a1eb9f63b97fdc67d3429f034a5cc0", + "title": "2024-09-10 七十二家房客:前辈与晚辈(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7cec5df2605ae02f5ae3f67a22e7e73b.jpg", + "contentType": 3, + "releasedAt": 1725973200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172597875882.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ac9f9c9f65bce63452e4104e6443a989", + "title": "2024-09-09 七十二家房客:与虎谋皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/3e5c4cf3330e1da1b6d7b1ce41c1d207.jpg", + "releasedAt": 1725888757000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172589484934.m3u8", + "raw": { + "id": "ac9f9c9f65bce63452e4104e6443a989", + "title": "2024-09-09 七十二家房客:与虎谋皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/3e5c4cf3330e1da1b6d7b1ce41c1d207.jpg", + "contentType": 3, + "releasedAt": 1725888757000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172589484934.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "691cfc2f961a6917fa68776bacdfbcbe", + "title": "2024-09-09 七十二家房客:与虎谋皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7af437e3164786c7e6e5ef926541a874.jpg", + "releasedAt": 1725886800000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172589484720.m3u8", + "raw": { + "id": "691cfc2f961a6917fa68776bacdfbcbe", + "title": "2024-09-09 七十二家房客:与虎谋皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7af437e3164786c7e6e5ef926541a874.jpg", + "contentType": 3, + "releasedAt": 1725886800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172589484720.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "70e8011fab25088d390a81e035cb37e5", + "title": "2024-09-08 七十二家房客:寄居蟹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/4fc49c535920f157de8d8449bca168c7.jpg", + "releasedAt": 1725802162000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172580926282.m3u8", + "raw": { + "id": "70e8011fab25088d390a81e035cb37e5", + "title": "2024-09-08 七十二家房客:寄居蟹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/4fc49c535920f157de8d8449bca168c7.jpg", + "contentType": 3, + "releasedAt": 1725802162000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172580926282.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a61b7d4396a2f0543a8346dbd50ccdbe", + "title": "2024-09-08 七十二家房客:寄居蟹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/223a1f2d7d58e871a6a0509c0702e275.jpg", + "releasedAt": 1725800400000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172580925531.m3u8", + "raw": { + "id": "a61b7d4396a2f0543a8346dbd50ccdbe", + "title": "2024-09-08 七十二家房客:寄居蟹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/223a1f2d7d58e871a6a0509c0702e275.jpg", + "contentType": 3, + "releasedAt": 1725800400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172580925531.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1f03b697355a4755cf8b47b9cda7d75c", + "title": "2024-09-07 七十二家房客:酒局风波(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/635c8273e199188935ecc7bb771bb93b.jpg", + "releasedAt": 1725714000000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172572263194.m3u8", + "raw": { + "id": "1f03b697355a4755cf8b47b9cda7d75c", + "title": "2024-09-07 七十二家房客:酒局风波(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/635c8273e199188935ecc7bb771bb93b.jpg", + "contentType": 3, + "releasedAt": 1725714000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172572263194.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "eaf8ed53cabba86918af9e68cb50eabf", + "title": "2024-09-07 七十二家房客:酒局风波(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/d3dae48ab84e10d93010a2eb6bbe2745.jpg", + "releasedAt": 1725714000000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172572273631.m3u8", + "raw": { + "id": "eaf8ed53cabba86918af9e68cb50eabf", + "title": "2024-09-07 七十二家房客:酒局风波(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/d3dae48ab84e10d93010a2eb6bbe2745.jpg", + "contentType": 3, + "releasedAt": 1725714000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172572273631.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "039ed78f562f1c06d1913bc8e05c8fff", + "title": "2024-09-06 七十二家房客:江湖疑凶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/a0d7e90c1ef075ca37d20dc712b0c3c7.jpg", + "releasedAt": 1725629613000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172564075914.m3u8", + "raw": { + "id": "039ed78f562f1c06d1913bc8e05c8fff", + "title": "2024-09-06 七十二家房客:江湖疑凶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/a0d7e90c1ef075ca37d20dc712b0c3c7.jpg", + "contentType": 3, + "releasedAt": 1725629613000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172564075914.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "778b78b8647eb95daf28bc1c5aef65f6", + "title": "2024-09-06 七十二家房客:江湖疑凶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/04155d63f6b22343616fcc560d60e83d.jpg", + "releasedAt": 1725627600000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172564074738.m3u8", + "raw": { + "id": "778b78b8647eb95daf28bc1c5aef65f6", + "title": "2024-09-06 七十二家房客:江湖疑凶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/04155d63f6b22343616fcc560d60e83d.jpg", + "contentType": 3, + "releasedAt": 1725627600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172564074738.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c8c8b109212743216e2c2a838e7acaa6", + "title": "2024-09-05 七十二家房客:我不是神经病(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/35e60b2114307a45fe428adcd31cfd53.jpg", + "releasedAt": 1725543173000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172554967693.m3u8", + "raw": { + "id": "c8c8b109212743216e2c2a838e7acaa6", + "title": "2024-09-05 七十二家房客:我不是神经病(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/35e60b2114307a45fe428adcd31cfd53.jpg", + "contentType": 3, + "releasedAt": 1725543173000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172554967693.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f8e154932ef39af8a7244db17dbbed0d", + "title": "2024-09-05 七十二家房客:我不是神经病(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/077017c7fef6e2827ef2098e544bda49.jpg", + "releasedAt": 1725541200000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172554969773.m3u8", + "raw": { + "id": "f8e154932ef39af8a7244db17dbbed0d", + "title": "2024-09-05 七十二家房客:我不是神经病(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/077017c7fef6e2827ef2098e544bda49.jpg", + "contentType": 3, + "releasedAt": 1725541200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172554969773.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1967b93fa62b9e70ceeef66244132712", + "title": "2024-09-04 七十二家房客:土地庙", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7fe84a823ed08144e0b4eaffb5e00e6e.jpg", + "releasedAt": 1725454800000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172546264470.m3u8", + "raw": { + "id": "1967b93fa62b9e70ceeef66244132712", + "title": "2024-09-04 七十二家房客:土地庙", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/7fe84a823ed08144e0b4eaffb5e00e6e.jpg", + "contentType": 3, + "releasedAt": 1725454800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172546264470.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d57ce612988466754c740c919cd87abf", + "title": "2024-09-04 七十二家房客:怒火街头", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9574ba6aaa05b728d238754bf4b4deed.jpg", + "releasedAt": 1725454800000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172546260824.m3u8", + "raw": { + "id": "d57ce612988466754c740c919cd87abf", + "title": "2024-09-04 七十二家房客:怒火街头", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9574ba6aaa05b728d238754bf4b4deed.jpg", + "contentType": 3, + "releasedAt": 1725454800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172546260824.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6dca5558e304463fe03fca5e6b6ea914", + "title": "2024-09-03 七十二家房客:左右为难(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/25cff0bb9f7ef831a51e74a4454b644a.jpg", + "releasedAt": 1725370354000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172538048552.m3u8", + "raw": { + "id": "6dca5558e304463fe03fca5e6b6ea914", + "title": "2024-09-03 七十二家房客:左右为难(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/25cff0bb9f7ef831a51e74a4454b644a.jpg", + "contentType": 3, + "releasedAt": 1725370354000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172538048552.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "43fdd97fdc765d27b1dba327cf689065", + "title": "2024-09-03 七十二家房客:左右为难(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/965e5cd04b3a473422b1e14bfc6c76a9.jpg", + "releasedAt": 1725368400000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172538048622.m3u8", + "raw": { + "id": "43fdd97fdc765d27b1dba327cf689065", + "title": "2024-09-03 七十二家房客:左右为难(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/965e5cd04b3a473422b1e14bfc6c76a9.jpg", + "contentType": 3, + "releasedAt": 1725368400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172538048622.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "337f7676228fe6b1d726f91fbe5d112d", + "title": "2024-09-02 七十二家房客:臭味相投(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9f4ec22f133f82bba8f8e5910034675a.jpg", + "releasedAt": 1725284009000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172529412652.m3u8", + "raw": { + "id": "337f7676228fe6b1d726f91fbe5d112d", + "title": "2024-09-02 七十二家房客:臭味相投(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/9f4ec22f133f82bba8f8e5910034675a.jpg", + "contentType": 3, + "releasedAt": 1725284009000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172529412652.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "58fd0d305fba2398090f7220545a8550", + "title": "2024-09-01 七十二家房客:阿香的成长", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/41396397499de771e29ddeac329a7a1e.jpg", + "releasedAt": 1725197368000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172520493958.m3u8", + "raw": { + "id": "58fd0d305fba2398090f7220545a8550", + "title": "2024-09-01 七十二家房客:阿香的成长", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/41396397499de771e29ddeac329a7a1e.jpg", + "contentType": 3, + "releasedAt": 1725197368000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172520493958.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "05a3ea4ace330352da909dca917b1c2d", + "title": "2024-09-01 七十二家房客:送汤记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/2543031739ac9b7f56ea6fc83f685131.jpg", + "releasedAt": 1725195600000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172520495150.m3u8", + "raw": { + "id": "05a3ea4ace330352da909dca917b1c2d", + "title": "2024-09-01 七十二家房客:送汤记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/2543031739ac9b7f56ea6fc83f685131.jpg", + "contentType": 3, + "releasedAt": 1725195600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172520495150.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7ba7444fa8cdd6db0b07850624ed5800", + "title": "2024-08-31 七十二家房客:杏林育新枝(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/0609dd85d01f3a5100a2cf35c876e988.jpg", + "releasedAt": 1725109200000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172512022230.m3u8", + "raw": { + "id": "7ba7444fa8cdd6db0b07850624ed5800", + "title": "2024-08-31 七十二家房客:杏林育新枝(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/0609dd85d01f3a5100a2cf35c876e988.jpg", + "contentType": 3, + "releasedAt": 1725109200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172512022230.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a1170c8ee04c20ef8d78ca91c9ea4231", + "title": "2024-08-31 七十二家房客:杏林育新枝(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/5600e041e702463c39ec165fe0f428b6.jpg", + "releasedAt": 1725109200000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172512010198.m3u8", + "raw": { + "id": "a1170c8ee04c20ef8d78ca91c9ea4231", + "title": "2024-08-31 七十二家房客:杏林育新枝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/09/5600e041e702463c39ec165fe0f428b6.jpg", + "contentType": 3, + "releasedAt": 1725109200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172512010198.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e8b9c12aa5b5706e9ec108b55878922a", + "title": "2024-08-30 七十二家房客:生子疑团(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/1f7e0cf1482e64e0b5a5665365a1ad7d.jpg", + "releasedAt": 1725022800000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172503624233.m3u8", + "raw": { + "id": "e8b9c12aa5b5706e9ec108b55878922a", + "title": "2024-08-30 七十二家房客:生子疑团(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/1f7e0cf1482e64e0b5a5665365a1ad7d.jpg", + "contentType": 3, + "releasedAt": 1725022800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172503624233.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c2cd00039567375b30635433d6dc245f", + "title": "2024-08-30 七十二家房客:生子疑团(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/4c7a42f4d79b31dc7fb67c4447c99bdb.jpg", + "releasedAt": 1725022800000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172503624475.m3u8", + "raw": { + "id": "c2cd00039567375b30635433d6dc245f", + "title": "2024-08-30 七十二家房客:生子疑团(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/4c7a42f4d79b31dc7fb67c4447c99bdb.jpg", + "contentType": 3, + "releasedAt": 1725022800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172503624475.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99d84861475ac3e1ac5f289dc94ba23a", + "title": "2024-08-29 七十二家房客:卖故衣(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/ade137a55e1329c62551a071cb44f920.jpg", + "releasedAt": 1724936400000, + "timeLength": 1250, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172503615136.m3u8", + "raw": { + "id": "99d84861475ac3e1ac5f289dc94ba23a", + "title": "2024-08-29 七十二家房客:卖故衣(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/ade137a55e1329c62551a071cb44f920.jpg", + "contentType": 3, + "releasedAt": 1724936400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172503615136.m3u8\"}", + "timeLength": 1250, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ece27c0795de0847c4076dfebae0d998", + "title": "2024-08-28 七十二家房客:抽签游戏", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/ccf6c849f2da7e7efc6821c029f1d75a.jpg", + "releasedAt": 1724852000000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172485739167.m3u8", + "raw": { + "id": "ece27c0795de0847c4076dfebae0d998", + "title": "2024-08-28 七十二家房客:抽签游戏", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/ccf6c849f2da7e7efc6821c029f1d75a.jpg", + "contentType": 3, + "releasedAt": 1724852000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172485739167.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "03c0eb142fe9422a63c7dc4960837c29", + "title": "2024-08-28 七十二家房客:私密照片", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/fc5125b2bfa20c350f28d75bc1653927.jpg", + "releasedAt": 1724850000000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172485736537.m3u8", + "raw": { + "id": "03c0eb142fe9422a63c7dc4960837c29", + "title": "2024-08-28 七十二家房客:私密照片", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/fc5125b2bfa20c350f28d75bc1653927.jpg", + "contentType": 3, + "releasedAt": 1724850000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172485736537.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e9d3a7810fbbbe96e6364c50a3946d5f", + "title": "2024-08-27 七十二家房客:自黑记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/fe5fa0bf72458353b62ac9c857460a00.jpg", + "releasedAt": 1724765593000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172476940682.m3u8", + "raw": { + "id": "e9d3a7810fbbbe96e6364c50a3946d5f", + "title": "2024-08-27 七十二家房客:自黑记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/fe5fa0bf72458353b62ac9c857460a00.jpg", + "contentType": 3, + "releasedAt": 1724765593000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172476940682.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ab6440624f90e0ee6097fcb0799a75cd", + "title": "2024-08-27 七十二家房客:茶室乐园", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/15cfa3f0446d4c6fecf1fd51e9fa0aa0.jpg", + "releasedAt": 1724763600000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172477382433.m3u8", + "raw": { + "id": "ab6440624f90e0ee6097fcb0799a75cd", + "title": "2024-08-27 七十二家房客:茶室乐园", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/15cfa3f0446d4c6fecf1fd51e9fa0aa0.jpg", + "contentType": 3, + "releasedAt": 1724763600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172477382433.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "880188f0dad44e0051b80507d0652057", + "title": "2024-08-26 七十二家房客:各显神通(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/abc21e339fa22c4aa7bb3fa6260bf5a9.jpg", + "releasedAt": 1724679199000, + "timeLength": 1269, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172468253989.m3u8", + "raw": { + "id": "880188f0dad44e0051b80507d0652057", + "title": "2024-08-26 七十二家房客:各显神通(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/abc21e339fa22c4aa7bb3fa6260bf5a9.jpg", + "contentType": 3, + "releasedAt": 1724679199000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172468253989.m3u8\"}", + "timeLength": 1269, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "33b7205a938f0c74d6699ce48c8b1d53", + "title": "2024-08-26 七十二家房客:各显神通(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/43b0fa7714318a2d5f105e30de85ea03.jpg", + "releasedAt": 1724677200000, + "timeLength": 1315, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172468250058.m3u8", + "raw": { + "id": "33b7205a938f0c74d6699ce48c8b1d53", + "title": "2024-08-26 七十二家房客:各显神通(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/43b0fa7714318a2d5f105e30de85ea03.jpg", + "contentType": 3, + "releasedAt": 1724677200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172468250058.m3u8\"}", + "timeLength": 1315, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9f13ac2da9816f6771b697b4934fa090", + "title": "2024-08-25 七十二家房客:草药(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/4a968eb0c738a04db4648bf390040316.jpg", + "releasedAt": 1724592581000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172464206598.m3u8", + "raw": { + "id": "9f13ac2da9816f6771b697b4934fa090", + "title": "2024-08-25 七十二家房客:草药(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/4a968eb0c738a04db4648bf390040316.jpg", + "contentType": 3, + "releasedAt": 1724592581000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172464206598.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f907869ff8956a21951cb1b79748ce24", + "title": "2024-08-25 七十二家房客:草药(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/68659816108c66d8fd0a2e5de8f8f9e9.jpg", + "releasedAt": 1724590800000, + "timeLength": 1335, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172464207640.m3u8", + "raw": { + "id": "f907869ff8956a21951cb1b79748ce24", + "title": "2024-08-25 七十二家房客:草药(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/68659816108c66d8fd0a2e5de8f8f9e9.jpg", + "contentType": 3, + "releasedAt": 1724590800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172464207640.m3u8\"}", + "timeLength": 1335, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "54369853d2cfffb06990eeef13fed663", + "title": "2024-08-24 七十二家房客:最后一批通行证(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/435705d63907ef22ac8a8bcf71e407e5.jpg", + "releasedAt": 1724506197000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172451337932.m3u8", + "raw": { + "id": "54369853d2cfffb06990eeef13fed663", + "title": "2024-08-24 七十二家房客:最后一批通行证(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/435705d63907ef22ac8a8bcf71e407e5.jpg", + "contentType": 3, + "releasedAt": 1724506197000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172451337932.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e9a1a9a6a3c098448861ffcae19a4367", + "title": "2024-08-24 七十二家房客:最后一批通行证(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/e064cfd128fccc6be77a9ec4155c5a25.jpg", + "releasedAt": 1724504400000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202409/172451642235.m3u8", + "raw": { + "id": "e9a1a9a6a3c098448861ffcae19a4367", + "title": "2024-08-24 七十二家房客:最后一批通行证(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/e064cfd128fccc6be77a9ec4155c5a25.jpg", + "contentType": 3, + "releasedAt": 1724504400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202409/172451642235.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "88fd9b0b7a6d0115aabcaa8093e5cca8", + "title": "2024-08-23 七十二家房客:理解万岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/e6295aa2badd14b76b685a37a4739d1a.jpg", + "releasedAt": 1724420036000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172443013136.m3u8", + "raw": { + "id": "88fd9b0b7a6d0115aabcaa8093e5cca8", + "title": "2024-08-23 七十二家房客:理解万岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/e6295aa2badd14b76b685a37a4739d1a.jpg", + "contentType": 3, + "releasedAt": 1724420036000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172443013136.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a24579f0b2ebaa7718f1676549203992", + "title": "2024-08-23 七十二家房客:理解万岁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/36bcc8fc2c9277e964a200625ef657c1.jpg", + "releasedAt": 1724418000000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172443014233.m3u8", + "raw": { + "id": "a24579f0b2ebaa7718f1676549203992", + "title": "2024-08-23 七十二家房客:理解万岁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/36bcc8fc2c9277e964a200625ef657c1.jpg", + "contentType": 3, + "releasedAt": 1724418000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172443014233.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8df9f12cb2d154561e0befd92aef23e0", + "title": "2024-08-22 七十二家房客:到嘴的鸭子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/c92fb8c8c14bc7883f719fe346604c5c.jpg", + "releasedAt": 1724333563000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172433914487.m3u8", + "raw": { + "id": "8df9f12cb2d154561e0befd92aef23e0", + "title": "2024-08-22 七十二家房客:到嘴的鸭子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/c92fb8c8c14bc7883f719fe346604c5c.jpg", + "contentType": 3, + "releasedAt": 1724333563000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172433914487.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b2828da1f58ba46dc748db47c31be1c6", + "title": "2024-08-22 七十二家房客:到嘴的鸭子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/54e86b5619caa9a494bd8394e70c2ab3.jpg", + "releasedAt": 1724331600000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172433899426.m3u8", + "raw": { + "id": "b2828da1f58ba46dc748db47c31be1c6", + "title": "2024-08-22 七十二家房客:到嘴的鸭子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/54e86b5619caa9a494bd8394e70c2ab3.jpg", + "contentType": 3, + "releasedAt": 1724331600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172433899426.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2dbedbacedab2ad75effb97f7d991277", + "title": "2024-08-21 七十二家房客:放鹰计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/78f7bc1a965c44ddc7b091d26ee1bda2.jpg", + "releasedAt": 1724245200000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172425176813.m3u8", + "raw": { + "id": "2dbedbacedab2ad75effb97f7d991277", + "title": "2024-08-21 七十二家房客:放鹰计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/78f7bc1a965c44ddc7b091d26ee1bda2.jpg", + "contentType": 3, + "releasedAt": 1724245200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172425176813.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "188717add51202494d2da296df6052e5", + "title": "2024-08-21 七十二家房客:放鹰计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/9ecedf1f84d8e2b1600cd24e56b4fe1d.jpg", + "releasedAt": 1724245200000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172425177270.m3u8", + "raw": { + "id": "188717add51202494d2da296df6052e5", + "title": "2024-08-21 七十二家房客:放鹰计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/9ecedf1f84d8e2b1600cd24e56b4fe1d.jpg", + "contentType": 3, + "releasedAt": 1724245200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172425177270.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aeb0b671d79c59aae9ef16a2f4bbf21b", + "title": "2024-08-20 七十二家房客:妇女救星(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/d3aacb6bf4188141769acefcd5e113e6.jpg", + "releasedAt": 1724160785000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172416685510.m3u8", + "raw": { + "id": "aeb0b671d79c59aae9ef16a2f4bbf21b", + "title": "2024-08-20 七十二家房客:妇女救星(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/d3aacb6bf4188141769acefcd5e113e6.jpg", + "contentType": 3, + "releasedAt": 1724160785000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172416685510.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "623fa405d9570ff359be6c53de78dd34", + "title": "2024-08-20 七十二家房客:妇女救星(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/b58fa21d28ff7d32cba04de59cc63455.jpg", + "releasedAt": 1724158800000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172416697524.m3u8", + "raw": { + "id": "623fa405d9570ff359be6c53de78dd34", + "title": "2024-08-20 七十二家房客:妇女救星(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/b58fa21d28ff7d32cba04de59cc63455.jpg", + "contentType": 3, + "releasedAt": 1724158800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172416697524.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4344f8b82fc40714d575a6922a2fe7c5", + "title": "2024-08-19 七十二家房客:寸草心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/61da924c711dc10ebb1d38e477febea0.jpg", + "releasedAt": 1724074370000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172408106753.m3u8", + "raw": { + "id": "4344f8b82fc40714d575a6922a2fe7c5", + "title": "2024-08-19 七十二家房客:寸草心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/61da924c711dc10ebb1d38e477febea0.jpg", + "contentType": 3, + "releasedAt": 1724074370000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172408106753.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0306ee9cf7125948bcf8bc5387cf0763", + "title": "2024-08-19 七十二家房客:寸草心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/6def114cb68ff422a6a88bbf63a5332c.jpg", + "releasedAt": 1724072400000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172408108082.m3u8", + "raw": { + "id": "0306ee9cf7125948bcf8bc5387cf0763", + "title": "2024-08-19 七十二家房客:寸草心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/6def114cb68ff422a6a88bbf63a5332c.jpg", + "contentType": 3, + "releasedAt": 1724072400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172408108082.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d32ac57e7d8ceafd19bcfb888872ed27", + "title": "2024-08-18 七十二家房客:才女悲歌", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/0a5c888faefe1f480340f1206dc27e32.jpg", + "releasedAt": 1723987842000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172399624260.m3u8", + "raw": { + "id": "d32ac57e7d8ceafd19bcfb888872ed27", + "title": "2024-08-18 七十二家房客:才女悲歌", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/0a5c888faefe1f480340f1206dc27e32.jpg", + "contentType": 3, + "releasedAt": 1723987842000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172399624260.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4df353ad151a91f6cd9690c3a3dba145", + "title": "2024-08-18 七十二家房客:真君子明算账", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/b0d7d321178ac9151b99c0f786bb5aee.jpg", + "releasedAt": 1723986000000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172399624048.m3u8", + "raw": { + "id": "4df353ad151a91f6cd9690c3a3dba145", + "title": "2024-08-18 七十二家房客:真君子明算账", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/b0d7d321178ac9151b99c0f786bb5aee.jpg", + "contentType": 3, + "releasedAt": 1723986000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172399624048.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b0855119921ab092e90c58c981730c4e", + "title": "2024-08-17 七十二家房客:师出同门(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/acf14d73690524e8750db67b2a5694e3.jpg", + "releasedAt": 1723901341000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172390742643.m3u8", + "raw": { + "id": "b0855119921ab092e90c58c981730c4e", + "title": "2024-08-17 七十二家房客:师出同门(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/acf14d73690524e8750db67b2a5694e3.jpg", + "contentType": 3, + "releasedAt": 1723901341000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172390742643.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4592ae943913685f22a9d6de8b763d78", + "title": "2024-08-17 七十二家房客:师出同门(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/779b71af7adec8b994e6aa0eac437c21.jpg", + "releasedAt": 1723899600000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172390747595.m3u8", + "raw": { + "id": "4592ae943913685f22a9d6de8b763d78", + "title": "2024-08-17 七十二家房客:师出同门(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/779b71af7adec8b994e6aa0eac437c21.jpg", + "contentType": 3, + "releasedAt": 1723899600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172390747595.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b7f804430bf93180b8d61a139a33f66b", + "title": "2024-08-16 七十二家房客:师出同门(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/f5dc6b65430b42d56a5bbf4d8d86c866.jpg", + "releasedAt": 1723815149000, + "timeLength": 1266, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172382338953.m3u8", + "raw": { + "id": "b7f804430bf93180b8d61a139a33f66b", + "title": "2024-08-16 七十二家房客:师出同门(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/f5dc6b65430b42d56a5bbf4d8d86c866.jpg", + "contentType": 3, + "releasedAt": 1723815149000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172382338953.m3u8\"}", + "timeLength": 1266, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6366681db4e88b7abeb8cc9c48352cbc", + "title": "2024-08-16 七十二家房客:师出同门(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/1e4a1b1a2acfb46ecd7407efd2b124eb.jpg", + "releasedAt": 1723813200000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172382348114.m3u8", + "raw": { + "id": "6366681db4e88b7abeb8cc9c48352cbc", + "title": "2024-08-16 七十二家房客:师出同门(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/1e4a1b1a2acfb46ecd7407efd2b124eb.jpg", + "contentType": 3, + "releasedAt": 1723813200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172382348114.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "72b071925ae06223a7e7f6c6a285f6bf", + "title": "2024-08-14 七十二家房客:胆战心惊(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/0a0040d69d36dae0fcd71a172e73cbdc.jpg", + "releasedAt": 1723640400000, + "timeLength": 1269, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172364701135.m3u8", + "raw": { + "id": "72b071925ae06223a7e7f6c6a285f6bf", + "title": "2024-08-14 七十二家房客:胆战心惊(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/0a0040d69d36dae0fcd71a172e73cbdc.jpg", + "contentType": 3, + "releasedAt": 1723640400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172364701135.m3u8\"}", + "timeLength": 1269, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "83a2b5439a2fef41dbc6d530ecb08fd4", + "title": "2024-08-14 七十二家房客:胆战心惊(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/8cdfd43101466faaa8f067a27820495c.jpg", + "releasedAt": 1723640400000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172364612339.m3u8", + "raw": { + "id": "83a2b5439a2fef41dbc6d530ecb08fd4", + "title": "2024-08-14 七十二家房客:胆战心惊(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/8cdfd43101466faaa8f067a27820495c.jpg", + "contentType": 3, + "releasedAt": 1723640400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172364612339.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b77f58160ae460fb0ba44417fbf7defb", + "title": "2024-08-13 七十二家房客:假红娘(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/20d1a84de9124a786d46374703a52591.jpg", + "releasedAt": 1723555941000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172356072732.m3u8", + "raw": { + "id": "b77f58160ae460fb0ba44417fbf7defb", + "title": "2024-08-13 七十二家房客:假红娘(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/20d1a84de9124a786d46374703a52591.jpg", + "contentType": 3, + "releasedAt": 1723555941000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172356072732.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99ac149454518f89d842bca3c39bf3af", + "title": "2024-08-13 七十二家房客:假红娘(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/2c495870e690b79ddf7f27fc5ed47a1d.jpg", + "releasedAt": 1723554000000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172356066598.m3u8", + "raw": { + "id": "99ac149454518f89d842bca3c39bf3af", + "title": "2024-08-13 七十二家房客:假红娘(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/2c495870e690b79ddf7f27fc5ed47a1d.jpg", + "contentType": 3, + "releasedAt": 1723554000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172356066598.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "be7b34353aa300746640e3e5f7a1c129", + "title": "2024-08-12 七十二家房客:不是有情郎(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/26c5d10361828fe98edabee6da23208c.jpg", + "releasedAt": 1723469536000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172347497798.m3u8", + "raw": { + "id": "be7b34353aa300746640e3e5f7a1c129", + "title": "2024-08-12 七十二家房客:不是有情郎(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/26c5d10361828fe98edabee6da23208c.jpg", + "contentType": 3, + "releasedAt": 1723469536000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172347497798.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "75591712387f032f0e1d44ae3fdb980d", + "title": "2024-08-12 七十二家房客:不是有情郎(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/142ff4235d6515d883b36629b3c8723e.jpg", + "releasedAt": 1723467600000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172347500756.m3u8", + "raw": { + "id": "75591712387f032f0e1d44ae3fdb980d", + "title": "2024-08-12 七十二家房客:不是有情郎(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/142ff4235d6515d883b36629b3c8723e.jpg", + "contentType": 3, + "releasedAt": 1723467600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172347500756.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2356a6071ba41da60c16af421b48dd0c", + "title": "2024-08-11 七十二家房客:真假好人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/6079d83c91ad1648eb1ef714a7150ba6.jpg", + "releasedAt": 1723382979000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172339379083.m3u8", + "raw": { + "id": "2356a6071ba41da60c16af421b48dd0c", + "title": "2024-08-11 七十二家房客:真假好人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/6079d83c91ad1648eb1ef714a7150ba6.jpg", + "contentType": 3, + "releasedAt": 1723382979000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172339379083.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "90d3743db5814d87530edfadabd39760", + "title": "2024-08-11 七十二家房客:真假好人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/729d140e8496c429b02535ab34cc548f.jpg", + "releasedAt": 1723381200000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172339382229.m3u8", + "raw": { + "id": "90d3743db5814d87530edfadabd39760", + "title": "2024-08-11 七十二家房客:真假好人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/729d140e8496c429b02535ab34cc548f.jpg", + "contentType": 3, + "releasedAt": 1723381200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172339382229.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "85ab6c7aa8b7bc117f6c5ea0279c9af9", + "title": "2024-08-10 七十二家房客:师弟来了(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/8fa6cec3f461358e7ca6cc5d6f35bdc2.jpg", + "releasedAt": 1723296611000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172330357715.m3u8", + "raw": { + "id": "85ab6c7aa8b7bc117f6c5ea0279c9af9", + "title": "2024-08-10 七十二家房客:师弟来了(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/8fa6cec3f461358e7ca6cc5d6f35bdc2.jpg", + "contentType": 3, + "releasedAt": 1723296611000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172330357715.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "279ea998db6a6b37ee72015347853725", + "title": "2024-08-10 七十二家房客:师弟来了(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/26fd7b359eb867558bc73f371b359e38.jpg", + "releasedAt": 1723294800000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172330360812.m3u8", + "raw": { + "id": "279ea998db6a6b37ee72015347853725", + "title": "2024-08-10 七十二家房客:师弟来了(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/26fd7b359eb867558bc73f371b359e38.jpg", + "contentType": 3, + "releasedAt": 1723294800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172330360812.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5016a1bf19bd6d29116a14b1c4d71f10", + "title": "2024-08-09 七十二家房客:沽名钓誉(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/0a0641575c3e46fd64eb15eecc252cf0.jpg", + "releasedAt": 1723210346000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172321939132.m3u8", + "raw": { + "id": "5016a1bf19bd6d29116a14b1c4d71f10", + "title": "2024-08-09 七十二家房客:沽名钓誉(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/0a0641575c3e46fd64eb15eecc252cf0.jpg", + "contentType": 3, + "releasedAt": 1723210346000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172321939132.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7dd0b693eda9818ada628e39918fd157", + "title": "2024-08-09 七十二家房客:沽名钓誉(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/414d9e80744e6998fb29bf4b3f928d3f.jpg", + "releasedAt": 1723208400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172321939089.m3u8", + "raw": { + "id": "7dd0b693eda9818ada628e39918fd157", + "title": "2024-08-09 七十二家房客:沽名钓誉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/414d9e80744e6998fb29bf4b3f928d3f.jpg", + "contentType": 3, + "releasedAt": 1723208400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172321939089.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1ce6d56df55c40f7b6c6892668b15e01", + "title": "2024-08-08 七十二家房客:夺命船(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/b5c406f4972517de0aba4ac6e69352ff.jpg", + "releasedAt": 1723123965000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172312995469.m3u8", + "raw": { + "id": "1ce6d56df55c40f7b6c6892668b15e01", + "title": "2024-08-08 七十二家房客:夺命船(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/b5c406f4972517de0aba4ac6e69352ff.jpg", + "contentType": 3, + "releasedAt": 1723123965000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172312995469.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1fad2cefd7f1a3cf1803aa8425144db5", + "title": "2024-08-08 七十二家房客:夺命船(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/f7b135aa031166af3d9b31bc621d8b42.jpg", + "releasedAt": 1723122000000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172312996992.m3u8", + "raw": { + "id": "1fad2cefd7f1a3cf1803aa8425144db5", + "title": "2024-08-08 七十二家房客:夺命船(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/f7b135aa031166af3d9b31bc621d8b42.jpg", + "contentType": 3, + "releasedAt": 1723122000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172312996992.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4c99419165e2c0b4fdadc4d11d638abd", + "title": "2024-08-07 七十二家房客:炳的宴席", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/d483e2ceb5f8227446a11855b3ef676c.jpg", + "releasedAt": 1723035600000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172304150637.m3u8", + "raw": { + "id": "4c99419165e2c0b4fdadc4d11d638abd", + "title": "2024-08-07 七十二家房客:炳的宴席", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/d483e2ceb5f8227446a11855b3ef676c.jpg", + "contentType": 3, + "releasedAt": 1723035600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172304150637.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e92b3032c4de6cda8e97dd7eb34af44f", + "title": "2024-08-07 七十二家房客:一笔私藏钱", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/02954972f615aeac877c47df72636a7d.jpg", + "releasedAt": 1723035600000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172304150333.m3u8", + "raw": { + "id": "e92b3032c4de6cda8e97dd7eb34af44f", + "title": "2024-08-07 七十二家房客:一笔私藏钱", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/02954972f615aeac877c47df72636a7d.jpg", + "contentType": 3, + "releasedAt": 1723035600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172304150333.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c729d37283f11993206ea3f4dac87037", + "title": "2024-08-06 七十二家房客:不请自来(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/e82d09f819bdfe2e7af350a8a81e45cb.jpg", + "releasedAt": 1722951199000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172295849821.m3u8", + "raw": { + "id": "c729d37283f11993206ea3f4dac87037", + "title": "2024-08-06 七十二家房客:不请自来(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/e82d09f819bdfe2e7af350a8a81e45cb.jpg", + "contentType": 3, + "releasedAt": 1722951199000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172295849821.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3e92db1ec2c85c58f73eb898484ed46d", + "title": "2024-08-06 七十二家房客:不请自来(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/d2ab9cc74df801104ca710f392b9ba4e.jpg", + "releasedAt": 1722949200000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172295851517.m3u8", + "raw": { + "id": "3e92db1ec2c85c58f73eb898484ed46d", + "title": "2024-08-06 七十二家房客:不请自来(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/d2ab9cc74df801104ca710f392b9ba4e.jpg", + "contentType": 3, + "releasedAt": 1722949200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172295851517.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "04fe66cf7484a84c84a3b971e77db432", + "title": "2024-08-05 七十二家房客:匹配者(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/2a161e6f2c8ebf1d3b7c0e2e8f529efa.jpg", + "releasedAt": 1722862800000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172287394396.m3u8", + "raw": { + "id": "04fe66cf7484a84c84a3b971e77db432", + "title": "2024-08-05 七十二家房客:匹配者(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/2a161e6f2c8ebf1d3b7c0e2e8f529efa.jpg", + "contentType": 3, + "releasedAt": 1722862800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172287394396.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "53f8c88a3a134b6bcfcbcbb1468d0bdc", + "title": "2024-08-05 七十二家房客:匹配者(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/5b769f466c2782ec4383cd41ca157593.jpg", + "releasedAt": 1722862800000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172287394322.m3u8", + "raw": { + "id": "53f8c88a3a134b6bcfcbcbb1468d0bdc", + "title": "2024-08-05 七十二家房客:匹配者(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/5b769f466c2782ec4383cd41ca157593.jpg", + "contentType": 3, + "releasedAt": 1722862800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172287394322.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6e26365e32d69a45b336b8037f5286c4", + "title": "2024-08-04 七十二家房客:有惊无险(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/929ac1765a4efa80ec12ba56063ec748.jpg", + "releasedAt": 1722776400000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172278655493.m3u8", + "raw": { + "id": "6e26365e32d69a45b336b8037f5286c4", + "title": "2024-08-04 七十二家房客:有惊无险(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/929ac1765a4efa80ec12ba56063ec748.jpg", + "contentType": 3, + "releasedAt": 1722776400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172278655493.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "23e79faf4e5805b3a698c456bdf7e69d", + "title": "2024-08-04 七十二家房客:有惊无险(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/14e5114451bd9070f0c84da75612ad4f.jpg", + "releasedAt": 1722776400000, + "timeLength": 1333, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172278656128.m3u8", + "raw": { + "id": "23e79faf4e5805b3a698c456bdf7e69d", + "title": "2024-08-04 七十二家房客:有惊无险(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/14e5114451bd9070f0c84da75612ad4f.jpg", + "contentType": 3, + "releasedAt": 1722776400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172278656128.m3u8\"}", + "timeLength": 1333, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b7118d9bd471071ff81ab0697f550adb", + "title": "2024-08-03 七十二家房客:八姑酸梅鹅", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/25c1eeb3febff0c66f963dc58b81ef84.jpg", + "releasedAt": 1722691824000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172270118451.m3u8", + "raw": { + "id": "b7118d9bd471071ff81ab0697f550adb", + "title": "2024-08-03 七十二家房客:八姑酸梅鹅", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/25c1eeb3febff0c66f963dc58b81ef84.jpg", + "contentType": 3, + "releasedAt": 1722691824000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172270118451.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b2b967b2a8b7a61544afee2e00c8a415", + "title": "2024-08-03 七十二家房客:服旧如新", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/7d61f1633f9ca4dbd2a5bff787f21de0.jpg", + "releasedAt": 1722690000000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172270118176.m3u8", + "raw": { + "id": "b2b967b2a8b7a61544afee2e00c8a415", + "title": "2024-08-03 七十二家房客:服旧如新", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/7d61f1633f9ca4dbd2a5bff787f21de0.jpg", + "contentType": 3, + "releasedAt": 1722690000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172270118176.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e65cb09ac5c65ebfa114cd8d4f265030", + "title": "2024-08-02 七十二家房客:情暖童心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/cfafa76c7f2a9e68c50844ef3443fbf0.jpg", + "releasedAt": 1722605630000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172261479570.m3u8", + "raw": { + "id": "e65cb09ac5c65ebfa114cd8d4f265030", + "title": "2024-08-02 七十二家房客:情暖童心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/cfafa76c7f2a9e68c50844ef3443fbf0.jpg", + "contentType": 3, + "releasedAt": 1722605630000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172261479570.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f7c902bc338666cba1295568366280c1", + "title": "2024-08-02 七十二家房客:情暖童心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/aca474990fe888daa63496c65805e514.jpg", + "releasedAt": 1722603600000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172261477920.m3u8", + "raw": { + "id": "f7c902bc338666cba1295568366280c1", + "title": "2024-08-02 七十二家房客:情暖童心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/aca474990fe888daa63496c65805e514.jpg", + "contentType": 3, + "releasedAt": 1722603600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172261477920.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e4c1a4b73326a74891d0fa22620eaf95", + "title": "2024-08-01 七十二家房客:失踪的阿香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/3458dde54bf082ab4beaf82d1b8419ad.jpg", + "releasedAt": 1722519206000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172252415433.m3u8", + "raw": { + "id": "e4c1a4b73326a74891d0fa22620eaf95", + "title": "2024-08-01 七十二家房客:失踪的阿香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/3458dde54bf082ab4beaf82d1b8419ad.jpg", + "contentType": 3, + "releasedAt": 1722519206000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172252415433.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "47ac31b1581fb8e76c841e87dcde1053", + "title": "2024-08-01 七十二家房客:失踪的阿香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/5b997ca973a0f6a15d98f027a45c696b.jpg", + "releasedAt": 1722517200000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172252439565.m3u8", + "raw": { + "id": "47ac31b1581fb8e76c841e87dcde1053", + "title": "2024-08-01 七十二家房客:失踪的阿香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/08/5b997ca973a0f6a15d98f027a45c696b.jpg", + "contentType": 3, + "releasedAt": 1722517200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172252439565.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cea850d323fd04b68db5fe9215395af4", + "title": "2024-07-31 七十二家房客:荷兰水", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3a13832d32d92aa228994d5ddeb126b0.jpg", + "releasedAt": 1722430800000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172243716291.m3u8", + "raw": { + "id": "cea850d323fd04b68db5fe9215395af4", + "title": "2024-07-31 七十二家房客:荷兰水", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3a13832d32d92aa228994d5ddeb126b0.jpg", + "contentType": 3, + "releasedAt": 1722430800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172243716291.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5b20540c787ea07946a7d5ee7fef9050", + "title": "2024-07-31 七十二家房客:顾家女人", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/abed14dc5a511780cd8702805ce9e7eb.jpg", + "releasedAt": 1722430800000, + "timeLength": 1270, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172243711351.m3u8", + "raw": { + "id": "5b20540c787ea07946a7d5ee7fef9050", + "title": "2024-07-31 七十二家房客:顾家女人", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/abed14dc5a511780cd8702805ce9e7eb.jpg", + "contentType": 3, + "releasedAt": 1722430800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172243711351.m3u8\"}", + "timeLength": 1270, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "39af643e5718cf82bd6049127e16c2ff", + "title": "2024-07-29 七十二家房客:无畏(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/e903c41cf806bcec6b3767bcff2fdf41.jpg", + "releasedAt": 1722259901000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172226720339.m3u8", + "raw": { + "id": "39af643e5718cf82bd6049127e16c2ff", + "title": "2024-07-29 七十二家房客:无畏(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/e903c41cf806bcec6b3767bcff2fdf41.jpg", + "contentType": 3, + "releasedAt": 1722259901000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172226720339.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e6400bdcc835336ca7121643b877b1f7", + "title": "2024-07-29 七十二家房客:无畏(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/26f2f21224f407987944c9d6c6058efb.jpg", + "releasedAt": 1722258000000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172226714952.m3u8", + "raw": { + "id": "e6400bdcc835336ca7121643b877b1f7", + "title": "2024-07-29 七十二家房客:无畏(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/26f2f21224f407987944c9d6c6058efb.jpg", + "contentType": 3, + "releasedAt": 1722258000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172226714952.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "361fe24f003f725151edde437d105ab7", + "title": "2024-07-28 七十二家房客:我有压力(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/296f4bc2ef5e4b7ecb267e57464fa111.jpg", + "releasedAt": 1722173291000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172218086337.m3u8", + "raw": { + "id": "361fe24f003f725151edde437d105ab7", + "title": "2024-07-28 七十二家房客:我有压力(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/296f4bc2ef5e4b7ecb267e57464fa111.jpg", + "contentType": 3, + "releasedAt": 1722173291000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172218086337.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dab6220fda01592d4a26e89e47c21adf", + "title": "2024-07-28 七十二家房客:我有压力(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/acbcd57312aacdffc5de8ce55d1d850f.jpg", + "releasedAt": 1722171600000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172218092916.m3u8", + "raw": { + "id": "dab6220fda01592d4a26e89e47c21adf", + "title": "2024-07-28 七十二家房客:我有压力(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/acbcd57312aacdffc5de8ce55d1d850f.jpg", + "contentType": 3, + "releasedAt": 1722171600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172218092916.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "40c35e9c2818eb29ce140507b8eafe97", + "title": "2024-07-27 七十二家房客:人穷志不短", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/82c115844d86556dd0df5bdb27ac9565.jpg", + "releasedAt": 1722086979000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172209776019.m3u8", + "raw": { + "id": "40c35e9c2818eb29ce140507b8eafe97", + "title": "2024-07-27 七十二家房客:人穷志不短", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/82c115844d86556dd0df5bdb27ac9565.jpg", + "contentType": 3, + "releasedAt": 1722086979000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172209776019.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2782dc29c0b08f4616d08587918ca0b1", + "title": "2024-07-27 七十二家房客:我要阿香", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/92497a5394853076170d198288c28d4a.jpg", + "releasedAt": 1722085200000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172209775114.m3u8", + "raw": { + "id": "2782dc29c0b08f4616d08587918ca0b1", + "title": "2024-07-27 七十二家房客:我要阿香", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/92497a5394853076170d198288c28d4a.jpg", + "contentType": 3, + "releasedAt": 1722085200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172209775114.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "621a610687ea67a973a2bb75f9f40d76", + "title": "2024-07-26 七十二家房客:女学徒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/c50589f639e50bf407a75a6e94e7eaef.jpg", + "releasedAt": 1722000705000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172200812766.m3u8", + "raw": { + "id": "621a610687ea67a973a2bb75f9f40d76", + "title": "2024-07-26 七十二家房客:女学徒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/c50589f639e50bf407a75a6e94e7eaef.jpg", + "contentType": 3, + "releasedAt": 1722000705000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172200812766.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7c5ff3eb550616c2ea6d909e610d3029", + "title": "2024-07-26 七十二家房客:女学徒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/606ab8ec968ee2eb3d0d99d1625079fc.jpg", + "releasedAt": 1721998800000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172200814882.m3u8", + "raw": { + "id": "7c5ff3eb550616c2ea6d909e610d3029", + "title": "2024-07-26 七十二家房客:女学徒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/606ab8ec968ee2eb3d0d99d1625079fc.jpg", + "contentType": 3, + "releasedAt": 1721998800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172200814882.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "360fa5a107d8d6b452014d0d204c2221", + "title": "2024-07-25 七十二家房客:返工啦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b292cda9ad24db692918fdd2c993a11c.jpg", + "releasedAt": 1721914332000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172191950626.m3u8", + "raw": { + "id": "360fa5a107d8d6b452014d0d204c2221", + "title": "2024-07-25 七十二家房客:返工啦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b292cda9ad24db692918fdd2c993a11c.jpg", + "contentType": 3, + "releasedAt": 1721914332000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172191950626.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "14b172894871dd6d8d9305f7b5edbf6e", + "title": "2024-07-25 七十二家房客:返工啦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/6e5ab8e116cc88bf32c03a2d176f9af6.jpg", + "releasedAt": 1721912400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172191950461.m3u8", + "raw": { + "id": "14b172894871dd6d8d9305f7b5edbf6e", + "title": "2024-07-25 七十二家房客:返工啦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/6e5ab8e116cc88bf32c03a2d176f9af6.jpg", + "contentType": 3, + "releasedAt": 1721912400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172191950461.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d37f67c983a07ded2a4907c4151c74fd", + "title": "2024-07-24 七十二家房客:婆媳怨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/4fc23761d3c34d20a7e189c2e86498c2.jpg", + "releasedAt": 1721826000000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172183279035.m3u8", + "raw": { + "id": "d37f67c983a07ded2a4907c4151c74fd", + "title": "2024-07-24 七十二家房客:婆媳怨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/4fc23761d3c34d20a7e189c2e86498c2.jpg", + "contentType": 3, + "releasedAt": 1721826000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172183279035.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3b012e95973d22a4d811648a1886a2be", + "title": "2024-07-24 七十二家房客:婆媳怨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/9b1d57f8ac3b9295a5e6bd8486869176.jpg", + "releasedAt": 1721826000000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202408/172183280446.m3u8", + "raw": { + "id": "3b012e95973d22a4d811648a1886a2be", + "title": "2024-07-24 七十二家房客:婆媳怨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/9b1d57f8ac3b9295a5e6bd8486869176.jpg", + "contentType": 3, + "releasedAt": 1721826000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202408/172183280446.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f4c30ce425cc80b310debd40268b62e4", + "title": "2024-07-23 七十二家房客:暗度(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/72d505251b32e24397f2d7ffcca3cb5a.jpg", + "releasedAt": 1721741522000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172178279163.m3u8", + "raw": { + "id": "f4c30ce425cc80b310debd40268b62e4", + "title": "2024-07-23 七十二家房客:暗度(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/72d505251b32e24397f2d7ffcca3cb5a.jpg", + "contentType": 3, + "releasedAt": 1721741522000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172178279163.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "176e8dcbac3c5684717129f1df608ca7", + "title": "2024-07-23 七十二家房客:暗度(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/a99ee27c4d6d931b329191ae2e22a686.jpg", + "releasedAt": 1721739600000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172174992186.m3u8", + "raw": { + "id": "176e8dcbac3c5684717129f1df608ca7", + "title": "2024-07-23 七十二家房客:暗度(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/a99ee27c4d6d931b329191ae2e22a686.jpg", + "contentType": 3, + "releasedAt": 1721739600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172174992186.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f62776268ce2a92a9267b2506e8f2f80", + "title": "2024-07-22 七十二家房客:间谍之王(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/5176348bb2ff3f8b92a7aef8d26baa1b.jpg", + "releasedAt": 1721655178000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172166155156.m3u8", + "raw": { + "id": "f62776268ce2a92a9267b2506e8f2f80", + "title": "2024-07-22 七十二家房客:间谍之王(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/5176348bb2ff3f8b92a7aef8d26baa1b.jpg", + "contentType": 3, + "releasedAt": 1721655178000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172166155156.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "76dc3f9243fb6128232dac98c7afde41", + "title": "2024-07-22 七十二家房客:间谍之王(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3c0f7d7da1f4ab83f0ec43bea18425dd.jpg", + "releasedAt": 1721653200000, + "timeLength": 1359, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172166125940.m3u8", + "raw": { + "id": "76dc3f9243fb6128232dac98c7afde41", + "title": "2024-07-22 七十二家房客:间谍之王(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3c0f7d7da1f4ab83f0ec43bea18425dd.jpg", + "contentType": 3, + "releasedAt": 1721653200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172166125940.m3u8\"}", + "timeLength": 1359, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9877b3a5783ed3a577fc999f437cc112", + "title": "2024-07-21 七十二家房客:老公的事(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/acadb8108fc4a0bc42b734acdd5e31e1.jpg", + "releasedAt": 1721566800000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172157396686.m3u8", + "raw": { + "id": "9877b3a5783ed3a577fc999f437cc112", + "title": "2024-07-21 七十二家房客:老公的事(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/acadb8108fc4a0bc42b734acdd5e31e1.jpg", + "contentType": 3, + "releasedAt": 1721566800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172157396686.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1962533367337c008df61955e1c20940", + "title": "2024-07-21 七十二家房客:老公的事(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/1082b3b0aa57e87f2cfb74f8469ff5ef.jpg", + "releasedAt": 1721566800000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172157386840.m3u8", + "raw": { + "id": "1962533367337c008df61955e1c20940", + "title": "2024-07-21 七十二家房客:老公的事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/1082b3b0aa57e87f2cfb74f8469ff5ef.jpg", + "contentType": 3, + "releasedAt": 1721566800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172157386840.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a498fd4bb058ebb07aec98b45d7cf52e", + "title": "2024-07-20 七十二家房客:悲惨世界(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/a2102d6023ca6795cbc1fd0d7baad2db.jpg", + "releasedAt": 1721482185000, + "timeLength": 1265, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172148993683.m3u8", + "raw": { + "id": "a498fd4bb058ebb07aec98b45d7cf52e", + "title": "2024-07-20 七十二家房客:悲惨世界(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/a2102d6023ca6795cbc1fd0d7baad2db.jpg", + "contentType": 3, + "releasedAt": 1721482185000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172148993683.m3u8\"}", + "timeLength": 1265, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a6f8f0c5aad819a6b5f30b45b7fd5a4", + "title": "2024-07-20 七十二家房客:悲惨世界(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/668e7f6c7f317be527ea1148f1550079.jpg", + "releasedAt": 1721480400000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172148993748.m3u8", + "raw": { + "id": "6a6f8f0c5aad819a6b5f30b45b7fd5a4", + "title": "2024-07-20 七十二家房客:悲惨世界(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/668e7f6c7f317be527ea1148f1550079.jpg", + "contentType": 3, + "releasedAt": 1721480400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172148993748.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "92d09c9048f20ebedabb74f5bf17cb81", + "title": "2024-07-19 七十二家房客:白云猪手(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/75e06bcb1450b47c950aff238760357e.jpg", + "releasedAt": 1721394000000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172140257235.m3u8", + "raw": { + "id": "92d09c9048f20ebedabb74f5bf17cb81", + "title": "2024-07-19 七十二家房客:白云猪手(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/75e06bcb1450b47c950aff238760357e.jpg", + "contentType": 3, + "releasedAt": 1721394000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172140257235.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "644e01974ea3bebf69447bdbeca4d8b5", + "title": "2024-07-18 七十二家房客:自负", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/30d7dce6962a7e2c684dae1a880adaab.jpg", + "releasedAt": 1721307600000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172131366748.m3u8", + "raw": { + "id": "644e01974ea3bebf69447bdbeca4d8b5", + "title": "2024-07-18 七十二家房客:自负", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/30d7dce6962a7e2c684dae1a880adaab.jpg", + "contentType": 3, + "releasedAt": 1721307600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172131366748.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5fbeee55a815684e7ed813939ac1668d", + "title": "2024-07-18 七十二家房客:绵羊发威", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b7040b05bc8502b3aea1b5169459b133.jpg", + "releasedAt": 1721307600000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172131368686.m3u8", + "raw": { + "id": "5fbeee55a815684e7ed813939ac1668d", + "title": "2024-07-18 七十二家房客:绵羊发威", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b7040b05bc8502b3aea1b5169459b133.jpg", + "contentType": 3, + "releasedAt": 1721307600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172131368686.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6963156efa9a781a072d18e145d14303", + "title": "2024-07-17 七十二家房客:大炮禄(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b980584bef528a8f5e08f253d5b2173e.jpg", + "releasedAt": 1721221200000, + "timeLength": 1261, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172122747112.m3u8", + "raw": { + "id": "6963156efa9a781a072d18e145d14303", + "title": "2024-07-17 七十二家房客:大炮禄(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b980584bef528a8f5e08f253d5b2173e.jpg", + "contentType": 3, + "releasedAt": 1721221200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172122747112.m3u8\"}", + "timeLength": 1261, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "00b5ac64843bfcbbaa942c3ae94e1945", + "title": "2024-07-17 七十二家房客:大炮禄(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/9d928b17929a9de2a4cc8af3e31b674f.jpg", + "releasedAt": 1721221200000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172122744669.m3u8", + "raw": { + "id": "00b5ac64843bfcbbaa942c3ae94e1945", + "title": "2024-07-17 七十二家房客:大炮禄(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/9d928b17929a9de2a4cc8af3e31b674f.jpg", + "contentType": 3, + "releasedAt": 1721221200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172122744669.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4404abed0e0daa579a132960bb60765e", + "title": "2024-07-16 七十二家房客:销赃(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b07f31908723c953e511474e64e2e4fe.jpg", + "releasedAt": 1721136704000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172114192768.m3u8", + "raw": { + "id": "4404abed0e0daa579a132960bb60765e", + "title": "2024-07-16 七十二家房客:销赃(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b07f31908723c953e511474e64e2e4fe.jpg", + "contentType": 3, + "releasedAt": 1721136704000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172114192768.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ae00d080d516bb3202943a86c0f65685", + "title": "2024-07-16 七十二家房客:销赃(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/30f58d26b7179741b747e5ea8e926722.jpg", + "releasedAt": 1721134800000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172114192688.m3u8", + "raw": { + "id": "ae00d080d516bb3202943a86c0f65685", + "title": "2024-07-16 七十二家房客:销赃(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/30f58d26b7179741b747e5ea8e926722.jpg", + "contentType": 3, + "releasedAt": 1721134800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172114192688.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "eddb7808b20371897800c478784dbfaa", + "title": "2024-07-15 七十二家房客:新爸爸的烦恼(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/2dc10ba977abacb86f1a087638e7f785.jpg", + "releasedAt": 1721050339000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172105494638.m3u8", + "raw": { + "id": "eddb7808b20371897800c478784dbfaa", + "title": "2024-07-15 七十二家房客:新爸爸的烦恼(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/2dc10ba977abacb86f1a087638e7f785.jpg", + "contentType": 3, + "releasedAt": 1721050339000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172105494638.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "374f8cdf911c6a60106fb3d41267fbbe", + "title": "2024-07-15 七十二家房客:新爸爸的烦恼(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/258239f249ffbd11832d3089e8b01c4d.jpg", + "releasedAt": 1721048400000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172105497150.m3u8", + "raw": { + "id": "374f8cdf911c6a60106fb3d41267fbbe", + "title": "2024-07-15 七十二家房客:新爸爸的烦恼(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/258239f249ffbd11832d3089e8b01c4d.jpg", + "contentType": 3, + "releasedAt": 1721048400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172105497150.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9bc666dedeb47b8a2be04f2136ce563d", + "title": "2024-07-14 七十二家房客:灵媒奇案(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/28556cc782eda8a52d4c27502dd5ae70.jpg", + "releasedAt": 1720962000000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172096831562.m3u8", + "raw": { + "id": "9bc666dedeb47b8a2be04f2136ce563d", + "title": "2024-07-14 七十二家房客:灵媒奇案(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/28556cc782eda8a52d4c27502dd5ae70.jpg", + "contentType": 3, + "releasedAt": 1720962000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172096831562.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4400f734cbb6c5af2c46f276dd4cd06e", + "title": "2024-07-14 七十二家房客:灵媒奇案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/29662d2edf7d3bc244a894bf84da5704.jpg", + "releasedAt": 1720962000000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172096834979.m3u8", + "raw": { + "id": "4400f734cbb6c5af2c46f276dd4cd06e", + "title": "2024-07-14 七十二家房客:灵媒奇案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/29662d2edf7d3bc244a894bf84da5704.jpg", + "contentType": 3, + "releasedAt": 1720962000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172096834979.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2d025c8176a75c2558aed66d54f65b19", + "title": "2024-07-13 七十二家房客:泥潭记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/930445aa1bf41e967c5d230f7fd8d64c.jpg", + "releasedAt": 1720877375000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172088566445.m3u8", + "raw": { + "id": "2d025c8176a75c2558aed66d54f65b19", + "title": "2024-07-13 七十二家房客:泥潭记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/930445aa1bf41e967c5d230f7fd8d64c.jpg", + "contentType": 3, + "releasedAt": 1720877375000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172088566445.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f6920e00654ea727c925de745a69ad3e", + "title": "2024-07-13 七十二家房客:泥潭记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3e1b7f5be37bfc767ba3b89e83ea625c.jpg", + "releasedAt": 1720875600000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172088566270.m3u8", + "raw": { + "id": "f6920e00654ea727c925de745a69ad3e", + "title": "2024-07-13 七十二家房客:泥潭记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3e1b7f5be37bfc767ba3b89e83ea625c.jpg", + "contentType": 3, + "releasedAt": 1720875600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172088566270.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8249b0592a5e4480ee849b4d232a643b", + "title": "2024-07-12 七十二家房客:十月螺肉香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/c42aadafb94893cae6e463be1318bffd.jpg", + "releasedAt": 1720791126000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172079906196.m3u8", + "raw": { + "id": "8249b0592a5e4480ee849b4d232a643b", + "title": "2024-07-12 七十二家房客:十月螺肉香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/c42aadafb94893cae6e463be1318bffd.jpg", + "contentType": 3, + "releasedAt": 1720791126000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172079906196.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3eac6d8ea571449b75ca10b486349d95", + "title": "2024-07-12 七十二家房客:十月螺肉香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/48bb9487ef3f120b2c635b742e5f02ce.jpg", + "releasedAt": 1720789200000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172079903410.m3u8", + "raw": { + "id": "3eac6d8ea571449b75ca10b486349d95", + "title": "2024-07-12 七十二家房客:十月螺肉香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/48bb9487ef3f120b2c635b742e5f02ce.jpg", + "contentType": 3, + "releasedAt": 1720789200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172079903410.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1c28f49a57f0d1eed268edd616de92a5", + "title": "2024-07-11 七十二家房客:苦肉计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3ada5ab1be56c9c88438b91c39dede05.jpg", + "releasedAt": 1720702800000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172071022259.m3u8", + "raw": { + "id": "1c28f49a57f0d1eed268edd616de92a5", + "title": "2024-07-11 七十二家房客:苦肉计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/3ada5ab1be56c9c88438b91c39dede05.jpg", + "contentType": 3, + "releasedAt": 1720702800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172071022259.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c1a9a8360a13a4382598f8e2bcabbed4", + "title": "2024-07-11 七十二家房客:苦肉计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b3084dd887d52ff01545de57dd240520.jpg", + "releasedAt": 1720702800000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172071027133.m3u8", + "raw": { + "id": "c1a9a8360a13a4382598f8e2bcabbed4", + "title": "2024-07-11 七十二家房客:苦肉计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/b3084dd887d52ff01545de57dd240520.jpg", + "contentType": 3, + "releasedAt": 1720702800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172071027133.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3b45734594e970fb6e9cd9b0ecbc17ab", + "title": "2024-07-10 七十二家房客:苦肉计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f10327d55e7fa96af584386613a2358d.jpg", + "releasedAt": 1720616400000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172062358934.m3u8", + "raw": { + "id": "3b45734594e970fb6e9cd9b0ecbc17ab", + "title": "2024-07-10 七十二家房客:苦肉计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f10327d55e7fa96af584386613a2358d.jpg", + "contentType": 3, + "releasedAt": 1720616400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172062358934.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a8e857ff7fc9199ee95f05cabfd9cd7d", + "title": "2024-07-10 七十二家房客:苦肉计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/88dbafdd0b5428fbbdfa3552d7106e6c.jpg", + "releasedAt": 1720616400000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172062342133.m3u8", + "raw": { + "id": "a8e857ff7fc9199ee95f05cabfd9cd7d", + "title": "2024-07-10 七十二家房客:苦肉计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/88dbafdd0b5428fbbdfa3552d7106e6c.jpg", + "contentType": 3, + "releasedAt": 1720616400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172062342133.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6b0370b31d217a01a1284793ed885c28", + "title": "2024-07-09 七十二家房客:红鸡蛋与合卺酒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/d718af9912bf3c760f4ee4827005f135.jpg", + "releasedAt": 1720531893000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172056980843.m3u8", + "raw": { + "id": "6b0370b31d217a01a1284793ed885c28", + "title": "2024-07-09 七十二家房客:红鸡蛋与合卺酒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/d718af9912bf3c760f4ee4827005f135.jpg", + "contentType": 3, + "releasedAt": 1720531893000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172056980843.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a6725894dea2a8e057f0dcd1f0656b17", + "title": "2024-07-09 七十二家房客:红鸡蛋与合卺酒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/691ae34a159dba1947d0cdc26caff135.jpg", + "releasedAt": 1720530000000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172056977680.m3u8", + "raw": { + "id": "a6725894dea2a8e057f0dcd1f0656b17", + "title": "2024-07-09 七十二家房客:红鸡蛋与合卺酒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/691ae34a159dba1947d0cdc26caff135.jpg", + "contentType": 3, + "releasedAt": 1720530000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172056977680.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "43fec8555611940f22ddfa72cb4a7fb5", + "title": "2024-07-08 七十二家房客:身份之谜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/33bcba49cbd797cf6cfabd7f8a9273b5.jpg", + "releasedAt": 1720445558000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172044924740.m3u8", + "raw": { + "id": "43fec8555611940f22ddfa72cb4a7fb5", + "title": "2024-07-08 七十二家房客:身份之谜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/33bcba49cbd797cf6cfabd7f8a9273b5.jpg", + "contentType": 3, + "releasedAt": 1720445558000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172044924740.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f416910b2b3fccaae49c6273636ee8f9", + "title": "2024-07-08 七十二家房客:身份之谜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/a8ae666abc29fc20be9626c09f5fc391.jpg", + "releasedAt": 1720443600000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172044965254.m3u8", + "raw": { + "id": "f416910b2b3fccaae49c6273636ee8f9", + "title": "2024-07-08 七十二家房客:身份之谜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/a8ae666abc29fc20be9626c09f5fc391.jpg", + "contentType": 3, + "releasedAt": 1720443600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172044965254.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ce32a5ceb080bebb8406b004bbea12c8", + "title": "2024-07-07 七十二家房客:孙锦珍的报复(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/8d05548a75ffd6a11fbeb1f3a72921fc.jpg", + "releasedAt": 1720358871000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172036476933.m3u8", + "raw": { + "id": "ce32a5ceb080bebb8406b004bbea12c8", + "title": "2024-07-07 七十二家房客:孙锦珍的报复(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/8d05548a75ffd6a11fbeb1f3a72921fc.jpg", + "contentType": 3, + "releasedAt": 1720358871000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172036476933.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91b5a8f144797a336eb64bbd7f868e62", + "title": "2024-07-07 七十二家房客:孙锦珍的报复(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/5212748b6b4c29e302f3bf21db2f93ce.jpg", + "releasedAt": 1720357200000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172036471418.m3u8", + "raw": { + "id": "91b5a8f144797a336eb64bbd7f868e62", + "title": "2024-07-07 七十二家房客:孙锦珍的报复(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/5212748b6b4c29e302f3bf21db2f93ce.jpg", + "contentType": 3, + "releasedAt": 1720357200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172036471418.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "34cf53a4205c64e8fe02d0fded5cebaf", + "title": "2024-07-06 七十二家房客:孙锦珍的报复(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/507c28bc17e335dc40390abe31c6dab8.jpg", + "releasedAt": 1720272559000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172028170136.m3u8", + "raw": { + "id": "34cf53a4205c64e8fe02d0fded5cebaf", + "title": "2024-07-06 七十二家房客:孙锦珍的报复(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/507c28bc17e335dc40390abe31c6dab8.jpg", + "contentType": 3, + "releasedAt": 1720272559000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172028170136.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "046d83677919df98bcaaee7a34cf4c71", + "title": "2024-07-06 七十二家房客:孙锦珍的报复(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/da8378c78946f0689d015d2a57e1461f.jpg", + "releasedAt": 1720270800000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172028170339.m3u8", + "raw": { + "id": "046d83677919df98bcaaee7a34cf4c71", + "title": "2024-07-06 七十二家房客:孙锦珍的报复(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/da8378c78946f0689d015d2a57e1461f.jpg", + "contentType": 3, + "releasedAt": 1720270800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172028170339.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cfb614d27d5819a3a8fd16ea69280b27", + "title": "2024-07-05 七十二家房客:猪脚姜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f45dac6ac93fc3448caa8e211ec0c453.jpg", + "releasedAt": 1720186339000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172019269161.m3u8", + "raw": { + "id": "cfb614d27d5819a3a8fd16ea69280b27", + "title": "2024-07-05 七十二家房客:猪脚姜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f45dac6ac93fc3448caa8e211ec0c453.jpg", + "contentType": 3, + "releasedAt": 1720186339000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172019269161.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5323d6b1d8e520b87d3e5794f4a93d88", + "title": "2024-07-05 七十二家房客:猪脚姜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f078c9436886725edc5ed2dedf838558.jpg", + "releasedAt": 1720184400000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172019280512.m3u8", + "raw": { + "id": "5323d6b1d8e520b87d3e5794f4a93d88", + "title": "2024-07-05 七十二家房客:猪脚姜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f078c9436886725edc5ed2dedf838558.jpg", + "contentType": 3, + "releasedAt": 1720184400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172019280512.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aede80129262fb19e48402a1a82ef5e9", + "title": "2024-07-04 七十二家房客:乌龙产子记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/16118bfdd1ca37496edd18018ecfe9fb.jpg", + "releasedAt": 1720098000000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172010491794.m3u8", + "raw": { + "id": "aede80129262fb19e48402a1a82ef5e9", + "title": "2024-07-04 七十二家房客:乌龙产子记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/16118bfdd1ca37496edd18018ecfe9fb.jpg", + "contentType": 3, + "releasedAt": 1720098000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172010491794.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1ee0f2bd3ffd6d6eb477e624ac1089c1", + "title": "2024-07-04 七十二家房客:乌龙产子记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/46981c1c179e5293e699486e5b64f585.jpg", + "releasedAt": 1720098000000, + "timeLength": 1328, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172010494160.m3u8", + "raw": { + "id": "1ee0f2bd3ffd6d6eb477e624ac1089c1", + "title": "2024-07-04 七十二家房客:乌龙产子记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/46981c1c179e5293e699486e5b64f585.jpg", + "contentType": 3, + "releasedAt": 1720098000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172010494160.m3u8\"}", + "timeLength": 1328, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f9de9de798d8381375b3db86022bbdf6", + "title": "2024-07-03 七十二家房客:撬墙角(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/092ade7937e64b930bb8b55e6cbca147.jpg", + "releasedAt": 1720013588000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172002385099.m3u8", + "raw": { + "id": "f9de9de798d8381375b3db86022bbdf6", + "title": "2024-07-03 七十二家房客:撬墙角(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/092ade7937e64b930bb8b55e6cbca147.jpg", + "contentType": 3, + "releasedAt": 1720013588000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172002385099.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0a401c5c8da93ec427550babfbd2aa8b", + "title": "2024-07-03 七十二家房客:撬墙角(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/23f91ef436951fafc2938b0742d77e3d.jpg", + "releasedAt": 1720011600000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/172002384995.m3u8", + "raw": { + "id": "0a401c5c8da93ec427550babfbd2aa8b", + "title": "2024-07-03 七十二家房客:撬墙角(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/23f91ef436951fafc2938b0742d77e3d.jpg", + "contentType": 3, + "releasedAt": 1720011600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/172002384995.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fe40167d6bc04138bee9f61a2a77bb24", + "title": "2024-07-02 七十二家房客:广州大钟楼", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f6f9e23cc14afdd8c92a36316c8e328d.jpg", + "releasedAt": 1719925200000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171993134256.m3u8", + "raw": { + "id": "fe40167d6bc04138bee9f61a2a77bb24", + "title": "2024-07-02 七十二家房客:广州大钟楼", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f6f9e23cc14afdd8c92a36316c8e328d.jpg", + "contentType": 3, + "releasedAt": 1719925200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171993134256.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5dbb206306a958c83fcb3eb3e2bd97bb", + "title": "2024-07-02 七十二家房客:人善被人欺", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/aa8714deedf442c1a4374028b92c4dfb.jpg", + "releasedAt": 1719925200000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171993136595.m3u8", + "raw": { + "id": "5dbb206306a958c83fcb3eb3e2bd97bb", + "title": "2024-07-02 七十二家房客:人善被人欺", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/aa8714deedf442c1a4374028b92c4dfb.jpg", + "contentType": 3, + "releasedAt": 1719925200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171993136595.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b0057a41013780e423003dbb3420fbdb", + "title": "2024-07-01 七十二家房客:陈皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/846a7f23819364e5e8487a30df84e79f.jpg", + "releasedAt": 1719838800000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171984921134.m3u8", + "raw": { + "id": "b0057a41013780e423003dbb3420fbdb", + "title": "2024-07-01 七十二家房客:陈皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/846a7f23819364e5e8487a30df84e79f.jpg", + "contentType": 3, + "releasedAt": 1719838800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171984921134.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0e91c1b86a219e4294c1d923e5f1989a", + "title": "2024-07-01 七十二家房客:陈皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f3c90ddb6d158f7419b74b6b1043e4e1.jpg", + "releasedAt": 1719838800000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171984921225.m3u8", + "raw": { + "id": "0e91c1b86a219e4294c1d923e5f1989a", + "title": "2024-07-01 七十二家房客:陈皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/07/f3c90ddb6d158f7419b74b6b1043e4e1.jpg", + "contentType": 3, + "releasedAt": 1719838800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171984921225.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8925ae6f9d08676ff34e3dcd025b6b2b", + "title": "2024-06-30 七十二家房客:谁是内奸(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/6294aee878a91dbfed2aac097f484438.jpg", + "releasedAt": 1719752400000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171976181123.m3u8", + "raw": { + "id": "8925ae6f9d08676ff34e3dcd025b6b2b", + "title": "2024-06-30 七十二家房客:谁是内奸(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/6294aee878a91dbfed2aac097f484438.jpg", + "contentType": 3, + "releasedAt": 1719752400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171976181123.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "de4e9c2d875c435cf6ef4310a9f363c4", + "title": "2024-06-30 七十二家房客:谁是内奸(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/c58695e90e85503d396180ea131dd094.jpg", + "releasedAt": 1719752400000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171976167837.m3u8", + "raw": { + "id": "de4e9c2d875c435cf6ef4310a9f363c4", + "title": "2024-06-30 七十二家房客:谁是内奸(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/c58695e90e85503d396180ea131dd094.jpg", + "contentType": 3, + "releasedAt": 1719752400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171976167837.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "49f830c6a860eafd371b0a6897e9fd98", + "title": "2024-06-29 七十二家房客:舞厅新人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/6a37aa96b6e9688fbe4ad5e042e506a7.jpg", + "releasedAt": 1719667703000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171967582067.m3u8", + "raw": { + "id": "49f830c6a860eafd371b0a6897e9fd98", + "title": "2024-06-29 七十二家房客:舞厅新人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/6a37aa96b6e9688fbe4ad5e042e506a7.jpg", + "contentType": 3, + "releasedAt": 1719667703000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171967582067.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "da84b04878130ee22d3cc5c60e5ef8ae", + "title": "2024-06-29 七十二家房客:舞厅新人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/b7be7d180ed9871ef3bde2e76fd05383.jpg", + "releasedAt": 1719666000000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171967581819.m3u8", + "raw": { + "id": "da84b04878130ee22d3cc5c60e5ef8ae", + "title": "2024-06-29 七十二家房客:舞厅新人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/b7be7d180ed9871ef3bde2e76fd05383.jpg", + "contentType": 3, + "releasedAt": 1719666000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171967581819.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "29ea30b9bb22be3cf4300456e6b524c3", + "title": "2024-06-28 七十二家房客:深水食堂", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/ad4041953562bd46b8e5117dd2fe4550.jpg", + "releasedAt": 1719581536000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171958928437.m3u8", + "raw": { + "id": "29ea30b9bb22be3cf4300456e6b524c3", + "title": "2024-06-28 七十二家房客:深水食堂", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/ad4041953562bd46b8e5117dd2fe4550.jpg", + "contentType": 3, + "releasedAt": 1719581536000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171958928437.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d571411b213e1930342ba52852010132", + "title": "2024-06-28 七十二家房客:迟来的道歉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/86793d59131ef1cd165aac9d288599d5.jpg", + "releasedAt": 1719579600000, + "timeLength": 1357, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171958924692.m3u8", + "raw": { + "id": "d571411b213e1930342ba52852010132", + "title": "2024-06-28 七十二家房客:迟来的道歉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/86793d59131ef1cd165aac9d288599d5.jpg", + "contentType": 3, + "releasedAt": 1719579600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171958924692.m3u8\"}", + "timeLength": 1357, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fefe33c08ff746b52603d0e6472a3dc8", + "title": "2024-06-27 七十二家房客:绑架案(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/7a2284567e94351c5fd0cedb04324dab.jpg", + "releasedAt": 1719493200000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171950198548.m3u8", + "raw": { + "id": "fefe33c08ff746b52603d0e6472a3dc8", + "title": "2024-06-27 七十二家房客:绑架案(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/7a2284567e94351c5fd0cedb04324dab.jpg", + "contentType": 3, + "releasedAt": 1719493200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171950198548.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9aef297e45161cfc79edf25fc4735c60", + "title": "2024-06-27 七十二家房客:绑架案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/567c9ee7a4a3420a613747911860e021.jpg", + "releasedAt": 1719493200000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171950200128.m3u8", + "raw": { + "id": "9aef297e45161cfc79edf25fc4735c60", + "title": "2024-06-27 七十二家房客:绑架案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/567c9ee7a4a3420a613747911860e021.jpg", + "contentType": 3, + "releasedAt": 1719493200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171950200128.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c87dc8d33c383c83aacabcd21abef528", + "title": "2024-06-26 七十二家房客:冒牌房东", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/10198bd46834449c2546b3426a4c660a.jpg", + "releasedAt": 1719408711000, + "timeLength": 1268, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171941860967.m3u8", + "raw": { + "id": "c87dc8d33c383c83aacabcd21abef528", + "title": "2024-06-26 七十二家房客:冒牌房东", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/10198bd46834449c2546b3426a4c660a.jpg", + "contentType": 3, + "releasedAt": 1719408711000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171941860967.m3u8\"}", + "timeLength": 1268, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a73bf042f74088102e7c7b105cede6da", + "title": "2024-06-26 七十二家房客:八姑下厨", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/a1c31d209e09d7cb5d8cca98315f1e53.jpg", + "releasedAt": 1719406800000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171941866886.m3u8", + "raw": { + "id": "a73bf042f74088102e7c7b105cede6da", + "title": "2024-06-26 七十二家房客:八姑下厨", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/a1c31d209e09d7cb5d8cca98315f1e53.jpg", + "contentType": 3, + "releasedAt": 1719406800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171941866886.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1dceb448b3f22fd06d6d2546fcd1b3cf", + "title": "2024-06-25 七十二家房客:嫉妒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/0c692b0de5ad9ab72b04cf457916da42.jpg", + "releasedAt": 1719322316000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171932839438.m3u8", + "raw": { + "id": "1dceb448b3f22fd06d6d2546fcd1b3cf", + "title": "2024-06-25 七十二家房客:嫉妒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/0c692b0de5ad9ab72b04cf457916da42.jpg", + "contentType": 3, + "releasedAt": 1719322316000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171932839438.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e85f381c6295724bf8f0f087e3a3bf87", + "title": "2024-06-25 七十二家房客:嫉妒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/eec142886bb205d4a898ba2cd5df3d5c.jpg", + "releasedAt": 1719320400000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171932837931.m3u8", + "raw": { + "id": "e85f381c6295724bf8f0f087e3a3bf87", + "title": "2024-06-25 七十二家房客:嫉妒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/eec142886bb205d4a898ba2cd5df3d5c.jpg", + "contentType": 3, + "releasedAt": 1719320400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171932837931.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fb13b9a8cc7edb29de65b2add4d5df10", + "title": "2024-06-24 七十二家房客:刻薄的家婆", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/893e42e402ed8e60f553315784ccc4fd.jpg", + "releasedAt": 1719235933000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171924128270.m3u8", + "raw": { + "id": "fb13b9a8cc7edb29de65b2add4d5df10", + "title": "2024-06-24 七十二家房客:刻薄的家婆", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/893e42e402ed8e60f553315784ccc4fd.jpg", + "contentType": 3, + "releasedAt": 1719235933000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171924128270.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c891d37f4ad044f7f7e931f706bb059a", + "title": "2024-06-23 七十二家房客:竹篮打水(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/94b3e6a51dbf0ebdb9b0f7826110706d.jpg", + "releasedAt": 1719147600000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171915705439.m3u8", + "raw": { + "id": "c891d37f4ad044f7f7e931f706bb059a", + "title": "2024-06-23 七十二家房客:竹篮打水(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/94b3e6a51dbf0ebdb9b0f7826110706d.jpg", + "contentType": 3, + "releasedAt": 1719147600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171915705439.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "25dfdec214b0ce91acb06436178af036", + "title": "2024-06-23 七十二家房客:竹篮打水(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d797bebfc4a853717475a938398b502b.jpg", + "releasedAt": 1719147600000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202407/171915707352.m3u8", + "raw": { + "id": "25dfdec214b0ce91acb06436178af036", + "title": "2024-06-23 七十二家房客:竹篮打水(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d797bebfc4a853717475a938398b502b.jpg", + "contentType": 3, + "releasedAt": 1719147600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202407/171915707352.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a6b8de032bc05c17870a445abb636d2e", + "title": "2024-06-22 七十二家房客:缩水富翁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/0bcd141edd294ef9aab65715846b7986.jpg", + "releasedAt": 1719062846000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171907064769.m3u8", + "raw": { + "id": "a6b8de032bc05c17870a445abb636d2e", + "title": "2024-06-22 七十二家房客:缩水富翁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/0bcd141edd294ef9aab65715846b7986.jpg", + "contentType": 3, + "releasedAt": 1719062846000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171907064769.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba59d680d8137c128d2c37c6af2a58a5", + "title": "2024-06-22 七十二家房客:缩水富翁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/65f1fcfe9d5134e14abd5082218f9595.jpg", + "releasedAt": 1719061200000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171907067635.m3u8", + "raw": { + "id": "ba59d680d8137c128d2c37c6af2a58a5", + "title": "2024-06-22 七十二家房客:缩水富翁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/65f1fcfe9d5134e14abd5082218f9595.jpg", + "contentType": 3, + "releasedAt": 1719061200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171907067635.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "733b15db17ccdada11d8cdf4acfaf061", + "title": "2024-06-21 七十二家房客:摆花街(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/78e1e6f7da2d241302750543ab7e5c2d.jpg", + "releasedAt": 1718976745000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171898274264.m3u8", + "raw": { + "id": "733b15db17ccdada11d8cdf4acfaf061", + "title": "2024-06-21 七十二家房客:摆花街(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/78e1e6f7da2d241302750543ab7e5c2d.jpg", + "contentType": 3, + "releasedAt": 1718976745000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171898274264.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a913270443e844fb24aa88b2d1d31884", + "title": "2024-06-21 七十二家房客:摆花街(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/cf1c26205ae956ee8e8a1216fc678202.jpg", + "releasedAt": 1718974800000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171898269991.m3u8", + "raw": { + "id": "a913270443e844fb24aa88b2d1d31884", + "title": "2024-06-21 七十二家房客:摆花街(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/cf1c26205ae956ee8e8a1216fc678202.jpg", + "contentType": 3, + "releasedAt": 1718974800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171898269991.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f8f1bfdaffed31cdb00e771cbd79d942", + "title": "2024-06-20 七十二家房客:丁财炮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/ddce1175e98054ddad8d8951b56d0e62.jpg", + "releasedAt": 1718890340000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171889623393.m3u8", + "raw": { + "id": "f8f1bfdaffed31cdb00e771cbd79d942", + "title": "2024-06-20 七十二家房客:丁财炮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/ddce1175e98054ddad8d8951b56d0e62.jpg", + "contentType": 3, + "releasedAt": 1718890340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171889623393.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f1631a24fea57188cea6cff1ae67a57b", + "title": "2024-06-20 七十二家房客:丁财炮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/5c3a360e21e9900aaadb12134373e15b.jpg", + "releasedAt": 1718888400000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171889625121.m3u8", + "raw": { + "id": "f1631a24fea57188cea6cff1ae67a57b", + "title": "2024-06-20 七十二家房客:丁财炮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/5c3a360e21e9900aaadb12134373e15b.jpg", + "contentType": 3, + "releasedAt": 1718888400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171889625121.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "609a7b66793c60897b3ccef14c3693d4", + "title": "2024-06-19 七十二家房客:痴男怨女(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/4e825282f8e450c22c68ffb51cd6d096.jpg", + "releasedAt": 1718802000000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171880850831.m3u8", + "raw": { + "id": "609a7b66793c60897b3ccef14c3693d4", + "title": "2024-06-19 七十二家房客:痴男怨女(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/4e825282f8e450c22c68ffb51cd6d096.jpg", + "contentType": 3, + "releasedAt": 1718802000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171880850831.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6029f5aafe4a8fb9bfb0bf8a2326504f", + "title": "2024-06-19 七十二家房客:痴男怨女(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/434ab2581d7456996e711a14b01c3e74.jpg", + "releasedAt": 1718802000000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171880853456.m3u8", + "raw": { + "id": "6029f5aafe4a8fb9bfb0bf8a2326504f", + "title": "2024-06-19 七十二家房客:痴男怨女(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/434ab2581d7456996e711a14b01c3e74.jpg", + "contentType": 3, + "releasedAt": 1718802000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171880853456.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d2d6f1dedb7042387c7d8ba110734b1f", + "title": "2024-06-18 七十二家房客:不分胜负(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/1e868426aa9ef34ecbe3936dc3645258.jpg", + "releasedAt": 1718717537000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171872302427.m3u8", + "raw": { + "id": "d2d6f1dedb7042387c7d8ba110734b1f", + "title": "2024-06-18 七十二家房客:不分胜负(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/1e868426aa9ef34ecbe3936dc3645258.jpg", + "contentType": 3, + "releasedAt": 1718717537000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171872302427.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5716149f29acf2ea5131ef3cda0f18a5", + "title": "2024-06-18 七十二家房客:不分胜负(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/19bcba5a1908935ff3f6a683c263a49f.jpg", + "releasedAt": 1718715600000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171872300839.m3u8", + "raw": { + "id": "5716149f29acf2ea5131ef3cda0f18a5", + "title": "2024-06-18 七十二家房客:不分胜负(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/19bcba5a1908935ff3f6a683c263a49f.jpg", + "contentType": 3, + "releasedAt": 1718715600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171872300839.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f9585a6022de19bf108f853b773c449b", + "title": "2024-06-17 七十二家房客:寻宝(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/1800878bbce76328942afa4d15cf7320.jpg", + "releasedAt": 1718631185000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171863804682.m3u8", + "raw": { + "id": "f9585a6022de19bf108f853b773c449b", + "title": "2024-06-17 七十二家房客:寻宝(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/1800878bbce76328942afa4d15cf7320.jpg", + "contentType": 3, + "releasedAt": 1718631185000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171863804682.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e2c8f30bdc494250c8ed96bb93b8a31b", + "title": "2024-06-17 七十二家房客:寻宝(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/f816b2eb097fad4d592783cf4e4c9246.jpg", + "releasedAt": 1718629200000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171863801946.m3u8", + "raw": { + "id": "e2c8f30bdc494250c8ed96bb93b8a31b", + "title": "2024-06-17 七十二家房客:寻宝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/f816b2eb097fad4d592783cf4e4c9246.jpg", + "contentType": 3, + "releasedAt": 1718629200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171863801946.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e2c96b0b0fe7b9190f855ceb6187cc9e", + "title": "2024-06-16 七十二家房客:我的拍档(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/fe048513a8a03a706d2bb4b4ebf57aae.jpg", + "releasedAt": 1718542800000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171855148466.m3u8", + "raw": { + "id": "e2c96b0b0fe7b9190f855ceb6187cc9e", + "title": "2024-06-16 七十二家房客:我的拍档(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/fe048513a8a03a706d2bb4b4ebf57aae.jpg", + "contentType": 3, + "releasedAt": 1718542800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171855148466.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3f46e126ce835bdd0d2159327a9381bf", + "title": "2024-06-16 七十二家房客:我的拍档(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/5577791fc16e3704679150612cb512fc.jpg", + "releasedAt": 1718542800000, + "timeLength": 1269, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171855150081.m3u8", + "raw": { + "id": "3f46e126ce835bdd0d2159327a9381bf", + "title": "2024-06-16 七十二家房客:我的拍档(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/5577791fc16e3704679150612cb512fc.jpg", + "contentType": 3, + "releasedAt": 1718542800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171855150081.m3u8\"}", + "timeLength": 1269, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a9a6230bee8f5583e3e1dfe4c28b7409", + "title": "2024-06-15 七十二家房客:心中有杆秤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/480c22aa2fac2e03b1a03ed02b7b3012.jpg", + "releasedAt": 1718458037000, + "timeLength": 1292, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171846541943.m3u8", + "raw": { + "id": "a9a6230bee8f5583e3e1dfe4c28b7409", + "title": "2024-06-15 七十二家房客:心中有杆秤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/480c22aa2fac2e03b1a03ed02b7b3012.jpg", + "contentType": 3, + "releasedAt": 1718458037000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171846541943.m3u8\"}", + "timeLength": 1292, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad9286320e581f74d623320a0db207f5", + "title": "2024-06-14 七十二家房客:局中局(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/0d52504137e68bc2c00acc02adddf332.jpg", + "releasedAt": 1718371929000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171837847739.m3u8", + "raw": { + "id": "ad9286320e581f74d623320a0db207f5", + "title": "2024-06-14 七十二家房客:局中局(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/0d52504137e68bc2c00acc02adddf332.jpg", + "contentType": 3, + "releasedAt": 1718371929000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171837847739.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "265a7eab71017a81f4e38545c2a43e8b", + "title": "2024-06-14 七十二家房客:局中局(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/469ef228e878024423c0c5a54c295d97.jpg", + "releasedAt": 1718370000000, + "timeLength": 1332, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171837849070.m3u8", + "raw": { + "id": "265a7eab71017a81f4e38545c2a43e8b", + "title": "2024-06-14 七十二家房客:局中局(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/469ef228e878024423c0c5a54c295d97.jpg", + "contentType": 3, + "releasedAt": 1718370000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171837849070.m3u8\"}", + "timeLength": 1332, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c8d94008f002443066b7d6603339f289", + "title": "2024-06-13 七十二家房客:捉女婿(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/a5af9f8a5ba5f5a453ada481b20eb195.jpg", + "releasedAt": 1718283600000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171829096977.m3u8", + "raw": { + "id": "c8d94008f002443066b7d6603339f289", + "title": "2024-06-13 七十二家房客:捉女婿(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/a5af9f8a5ba5f5a453ada481b20eb195.jpg", + "contentType": 3, + "releasedAt": 1718283600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171829096977.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba7896728dcd95765c9f477d251cad46", + "title": "2024-06-13 七十二家房客:捉女婿(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/2aec7849c168c0d3d1f14e856d6bd09c.jpg", + "releasedAt": 1718283600000, + "timeLength": 1330, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171829243890.m3u8", + "raw": { + "id": "ba7896728dcd95765c9f477d251cad46", + "title": "2024-06-13 七十二家房客:捉女婿(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/2aec7849c168c0d3d1f14e856d6bd09c.jpg", + "contentType": 3, + "releasedAt": 1718283600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171829243890.m3u8\"}", + "timeLength": 1330, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b56bfd764094b96c22e3c27106a02941", + "title": "2024-06-12 七十二家房客:既定计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/c141d45fc204b2a54c80cc3560251fd8.jpg", + "releasedAt": 1718197200000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171820521673.m3u8", + "raw": { + "id": "b56bfd764094b96c22e3c27106a02941", + "title": "2024-06-12 七十二家房客:既定计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/c141d45fc204b2a54c80cc3560251fd8.jpg", + "contentType": 3, + "releasedAt": 1718197200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171820521673.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "637cc2c6d4cd80be81e4df7b1dcae11e", + "title": "2024-06-12 七十二家房客:既定计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/962adeb4c27b15a15dc86ec283f7c415.jpg", + "releasedAt": 1718197200000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171820515114.m3u8", + "raw": { + "id": "637cc2c6d4cd80be81e4df7b1dcae11e", + "title": "2024-06-12 七十二家房客:既定计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/962adeb4c27b15a15dc86ec283f7c415.jpg", + "contentType": 3, + "releasedAt": 1718197200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171820515114.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3ded7781a4cf75d6a9a94a9d6d7b78c9", + "title": "2024-06-11 七十二家房客:黑白恩怨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/9c497933126e22ecd406ce957d9dfb08.jpg", + "releasedAt": 1718112731000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171811982811.m3u8", + "raw": { + "id": "3ded7781a4cf75d6a9a94a9d6d7b78c9", + "title": "2024-06-11 七十二家房客:黑白恩怨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/9c497933126e22ecd406ce957d9dfb08.jpg", + "contentType": 3, + "releasedAt": 1718112731000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171811982811.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "367b0096dd3be9601cd5151cf8534563", + "title": "2024-06-11 七十二家房客:黑白恩怨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/bd4645c66c724a8d4ca56201338decc4.jpg", + "releasedAt": 1718110800000, + "timeLength": 1335, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171811998157.m3u8", + "raw": { + "id": "367b0096dd3be9601cd5151cf8534563", + "title": "2024-06-11 七十二家房客:黑白恩怨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/bd4645c66c724a8d4ca56201338decc4.jpg", + "contentType": 3, + "releasedAt": 1718110800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171811998157.m3u8\"}", + "timeLength": 1335, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "efcae3f94148dbcce1e94b92a0af19cb", + "title": "2024-06-10 七十二家房客:理失心不安(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/ca8ab79885f0fe6d6e83c7df9d6f6810.jpg", + "releasedAt": 1718024400000, + "timeLength": 1335, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171803241266.m3u8", + "raw": { + "id": "efcae3f94148dbcce1e94b92a0af19cb", + "title": "2024-06-10 七十二家房客:理失心不安(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/ca8ab79885f0fe6d6e83c7df9d6f6810.jpg", + "contentType": 3, + "releasedAt": 1718024400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171803241266.m3u8\"}", + "timeLength": 1335, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "976734919603b433b502d4986b6cbb4b", + "title": "2024-06-09 七十二家房客:童养媳(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/07fd3dd1e52645714c4bb81b4c9a2f41.jpg", + "releasedAt": 1717938000000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171794509572.m3u8", + "raw": { + "id": "976734919603b433b502d4986b6cbb4b", + "title": "2024-06-09 七十二家房客:童养媳(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/07fd3dd1e52645714c4bb81b4c9a2f41.jpg", + "contentType": 3, + "releasedAt": 1717938000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171794509572.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7ee883c88635c3667c67e88f1d814cd7", + "title": "2024-06-09 七十二家房客:童养媳(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d7fb200a3f9c5dcab24eeef8ffa25a4d.jpg", + "releasedAt": 1717938000000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171794506697.m3u8", + "raw": { + "id": "7ee883c88635c3667c67e88f1d814cd7", + "title": "2024-06-09 七十二家房客:童养媳(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d7fb200a3f9c5dcab24eeef8ffa25a4d.jpg", + "contentType": 3, + "releasedAt": 1717938000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171794506697.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9f8605603bb9c8013ba8617106b6b9d8", + "title": "2024-06-08 七十二家房客:为富须有仁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/36b4d006bd559e66e526929e471539f8.jpg", + "releasedAt": 1717853217000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171787001533.m3u8", + "raw": { + "id": "9f8605603bb9c8013ba8617106b6b9d8", + "title": "2024-06-08 七十二家房客:为富须有仁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/36b4d006bd559e66e526929e471539f8.jpg", + "contentType": 3, + "releasedAt": 1717853217000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171787001533.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2a9aa224510e4af49c5bd1fe858c3fcc", + "title": "2024-06-08 七十二家房客:为富须有仁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d80e418805cb372ddfb8fe8fba464e4f.jpg", + "releasedAt": 1717851600000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171787008159.m3u8", + "raw": { + "id": "2a9aa224510e4af49c5bd1fe858c3fcc", + "title": "2024-06-08 七十二家房客:为富须有仁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d80e418805cb372ddfb8fe8fba464e4f.jpg", + "contentType": 3, + "releasedAt": 1717851600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171787008159.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8355c4b05848d56848fc069d96eed77a", + "title": "2024-06-07 七十二家房客:禁酒令", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/077df5d956ecdb54ab4cc17474631dfc.jpg", + "releasedAt": 1717767129000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171777473136.m3u8", + "raw": { + "id": "8355c4b05848d56848fc069d96eed77a", + "title": "2024-06-07 七十二家房客:禁酒令", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/077df5d956ecdb54ab4cc17474631dfc.jpg", + "contentType": 3, + "releasedAt": 1717767129000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171777473136.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "46900f6901df644bc61899079fd65eee", + "title": "2024-06-07 七十二家房客:救人水火", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/5f78ec14518315038fd85ab8949bb94a.jpg", + "releasedAt": 1717765200000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171777460530.m3u8", + "raw": { + "id": "46900f6901df644bc61899079fd65eee", + "title": "2024-06-07 七十二家房客:救人水火", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/5f78ec14518315038fd85ab8949bb94a.jpg", + "contentType": 3, + "releasedAt": 1717765200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171777460530.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f10b935a2fa3c13b34b9320d47ac3929", + "title": "2024-06-06 七十二家房客:戏假情真(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/8ab29a99fa06ee416e9b93414abf2142.jpg", + "releasedAt": 1717678800000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171768803293.m3u8", + "raw": { + "id": "f10b935a2fa3c13b34b9320d47ac3929", + "title": "2024-06-06 七十二家房客:戏假情真(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/8ab29a99fa06ee416e9b93414abf2142.jpg", + "contentType": 3, + "releasedAt": 1717678800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171768803293.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "319b54273bb7a9b32b286f2c63fb81e7", + "title": "2024-06-06 七十二家房客:戏假情真(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/f485f950646f3fbb3e3784d05e62cc6b.jpg", + "releasedAt": 1717678800000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171768802836.m3u8", + "raw": { + "id": "319b54273bb7a9b32b286f2c63fb81e7", + "title": "2024-06-06 七十二家房客:戏假情真(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/f485f950646f3fbb3e3784d05e62cc6b.jpg", + "contentType": 3, + "releasedAt": 1717678800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171768802836.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "757c5d16257f1a3c909d08c9626efc89", + "title": "2024-06-05 七十二家房客:为善之道(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/acdd387bf3224be071cf86793663a54c.jpg", + "releasedAt": 1717592400000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171759882966.m3u8", + "raw": { + "id": "757c5d16257f1a3c909d08c9626efc89", + "title": "2024-06-05 七十二家房客:为善之道(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/acdd387bf3224be071cf86793663a54c.jpg", + "contentType": 3, + "releasedAt": 1717592400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171759882966.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2e29fd5fa9d67c96c733cef4ada6e32b", + "title": "2024-06-05 七十二家房客:为善之道(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/1757962b0f53a54f196ef9574f638b71.jpg", + "releasedAt": 1717592400000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171759880146.m3u8", + "raw": { + "id": "2e29fd5fa9d67c96c733cef4ada6e32b", + "title": "2024-06-05 七十二家房客:为善之道(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/1757962b0f53a54f196ef9574f638b71.jpg", + "contentType": 3, + "releasedAt": 1717592400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171759880146.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad398fa06752d5b13f18dff12897a7b0", + "title": "2024-06-04 七十二家房客:我不要享清福(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/13fe791fcc37796a6317ca41a21d70d8.jpg", + "releasedAt": 1717507957000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171751571378.m3u8", + "raw": { + "id": "ad398fa06752d5b13f18dff12897a7b0", + "title": "2024-06-04 七十二家房客:我不要享清福(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/13fe791fcc37796a6317ca41a21d70d8.jpg", + "contentType": 3, + "releasedAt": 1717507957000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171751571378.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56211e7ba1214f07b7938bc7f81fe741", + "title": "2024-06-04 七十二家房客:我不要享清福(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/70e70f6cb664ac8b12f4ce2ad0f82375.jpg", + "releasedAt": 1717506000000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171751574367.m3u8", + "raw": { + "id": "56211e7ba1214f07b7938bc7f81fe741", + "title": "2024-06-04 七十二家房客:我不要享清福(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/70e70f6cb664ac8b12f4ce2ad0f82375.jpg", + "contentType": 3, + "releasedAt": 1717506000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171751574367.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "52010f22f1307b7f2fdb79d7a84b7b0e", + "title": "2024-06-03 七十二家房客:为富须有仁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/4f2ab129f9805068c78336abd690b613.jpg", + "releasedAt": 1717421565000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171742674588.m3u8", + "raw": { + "id": "52010f22f1307b7f2fdb79d7a84b7b0e", + "title": "2024-06-03 七十二家房客:为富须有仁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/4f2ab129f9805068c78336abd690b613.jpg", + "contentType": 3, + "releasedAt": 1717421565000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171742674588.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "31556eaf8071e5774a824113d3b20033", + "title": "2024-06-03 七十二家房客:为富须有仁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d5d05a134429444c2db62a09a241eda9.jpg", + "releasedAt": 1717419600000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171742671939.m3u8", + "raw": { + "id": "31556eaf8071e5774a824113d3b20033", + "title": "2024-06-03 七十二家房客:为富须有仁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/d5d05a134429444c2db62a09a241eda9.jpg", + "contentType": 3, + "releasedAt": 1717419600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171742671939.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "058925c375a5a38ad1a5e7216df6cae6", + "title": "2024-06-02 七十二家房客:不能说的秘密(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/2701c0b2822206355ff7db5b4e57a535.jpg", + "releasedAt": 1717333200000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171734002833.m3u8", + "raw": { + "id": "058925c375a5a38ad1a5e7216df6cae6", + "title": "2024-06-02 七十二家房客:不能说的秘密(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/2701c0b2822206355ff7db5b4e57a535.jpg", + "contentType": 3, + "releasedAt": 1717333200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171734002833.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "76796bca4d6e8b83336da7e650b26fe2", + "title": "2024-06-02 七十二家房客:不能说的秘密(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/6ba3c81063df730eb011c85be6faff2b.jpg", + "releasedAt": 1717333200000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171734009315.m3u8", + "raw": { + "id": "76796bca4d6e8b83336da7e650b26fe2", + "title": "2024-06-02 七十二家房客:不能说的秘密(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/6ba3c81063df730eb011c85be6faff2b.jpg", + "contentType": 3, + "releasedAt": 1717333200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171734009315.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "578870fd5aefe789dd4076ee94c580fe", + "title": "2024-06-01 七十二家房客:边缘人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/31347d2cc2ff13e1669e950f3c5d0ead.jpg", + "releasedAt": 1717248452000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171725567499.m3u8", + "raw": { + "id": "578870fd5aefe789dd4076ee94c580fe", + "title": "2024-06-01 七十二家房客:边缘人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/31347d2cc2ff13e1669e950f3c5d0ead.jpg", + "contentType": 3, + "releasedAt": 1717248452000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171725567499.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d3032397dc8e885dbced8e6cb260ecda", + "title": "2024-06-01 七十二家房客:边缘人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/34369a7ceddfa50e990dd35bd875fd9b.jpg", + "releasedAt": 1717246800000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171725567437.m3u8", + "raw": { + "id": "d3032397dc8e885dbced8e6cb260ecda", + "title": "2024-06-01 七十二家房客:边缘人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/06/34369a7ceddfa50e990dd35bd875fd9b.jpg", + "contentType": 3, + "releasedAt": 1717246800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171725567437.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4a2a45c55fea14dd540e22018d477450", + "title": "2024-05-31 七十二家房客:心魔(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/5700f793223d51e84ab4b04f20de1eef.jpg", + "releasedAt": 1717162414000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171716892137.m3u8", + "raw": { + "id": "4a2a45c55fea14dd540e22018d477450", + "title": "2024-05-31 七十二家房客:心魔(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/5700f793223d51e84ab4b04f20de1eef.jpg", + "contentType": 3, + "releasedAt": 1717162414000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171716892137.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8c90d18c92089759175ee4a7131d59f8", + "title": "2024-05-31 七十二家房客:心魔(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/8e9a0da68760d937486003a6202807b5.jpg", + "releasedAt": 1717160400000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171716883244.m3u8", + "raw": { + "id": "8c90d18c92089759175ee4a7131d59f8", + "title": "2024-05-31 七十二家房客:心魔(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/8e9a0da68760d937486003a6202807b5.jpg", + "contentType": 3, + "releasedAt": 1717160400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171716883244.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9b5320ef4acf812fe73d3568b50a79b5", + "title": "2024-05-30 七十二家房客:姜埋奶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/81c0048535ec15c40d4a849f7f6fa0f7.jpg", + "releasedAt": 1717074000000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171708267834.m3u8", + "raw": { + "id": "9b5320ef4acf812fe73d3568b50a79b5", + "title": "2024-05-30 七十二家房客:姜埋奶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/81c0048535ec15c40d4a849f7f6fa0f7.jpg", + "contentType": 3, + "releasedAt": 1717074000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171708267834.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56bfb8e88d0affe1699deaea779eeb51", + "title": "2024-05-30 七十二家房客:姜埋奶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/de2bfe278e12c0a553d07f2e3fac176c.jpg", + "releasedAt": 1717074000000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171708269549.m3u8", + "raw": { + "id": "56bfb8e88d0affe1699deaea779eeb51", + "title": "2024-05-30 七十二家房客:姜埋奶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/de2bfe278e12c0a553d07f2e3fac176c.jpg", + "contentType": 3, + "releasedAt": 1717074000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171708269549.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3ce7db67ff28de1365ab6b81be445790", + "title": "2024-05-29 七十二家房客:筹码(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/18b4325406406cb4c9dfcb57d81f2dcb.jpg", + "releasedAt": 1716987600000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171699514835.m3u8", + "raw": { + "id": "3ce7db67ff28de1365ab6b81be445790", + "title": "2024-05-29 七十二家房客:筹码(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/18b4325406406cb4c9dfcb57d81f2dcb.jpg", + "contentType": 3, + "releasedAt": 1716987600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171699514835.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5187d43ee56dd745119fbb1205fe1c7a", + "title": "2024-05-29 七十二家房客:筹码(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/5fd0ec6c0756b2c5aeda297363ccb280.jpg", + "releasedAt": 1716987600000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171699514837.m3u8", + "raw": { + "id": "5187d43ee56dd745119fbb1205fe1c7a", + "title": "2024-05-29 七十二家房客:筹码(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/5fd0ec6c0756b2c5aeda297363ccb280.jpg", + "contentType": 3, + "releasedAt": 1716987600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171699514837.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9f4708db328835bcd9d6e79a8d261d20", + "title": "2024-05-28 七十二家房客:温暖的送别", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c4a187aab9b9f322c92ded026235c3fb.jpg", + "releasedAt": 1716903161000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171691214916.m3u8", + "raw": { + "id": "9f4708db328835bcd9d6e79a8d261d20", + "title": "2024-05-28 七十二家房客:温暖的送别", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c4a187aab9b9f322c92ded026235c3fb.jpg", + "contentType": 3, + "releasedAt": 1716903161000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171691214916.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "87215e65bef3d3c5f8ba686c92d2425e", + "title": "2024-05-28 七十二家房客:祸福香炉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/7cbb2a95959d359e4560e2e25c98ff4a.jpg", + "releasedAt": 1716901200000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171691212113.m3u8", + "raw": { + "id": "87215e65bef3d3c5f8ba686c92d2425e", + "title": "2024-05-28 七十二家房客:祸福香炉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/7cbb2a95959d359e4560e2e25c98ff4a.jpg", + "contentType": 3, + "releasedAt": 1716901200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171691212113.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c259335b7ec567f9bf1c4535cd3bddf8", + "title": "2024-05-27 七十二家房客:闹剧(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/124cb51986945e38b90c0ec41133320b.jpg", + "releasedAt": 1716816794000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171682293232.m3u8", + "raw": { + "id": "c259335b7ec567f9bf1c4535cd3bddf8", + "title": "2024-05-27 七十二家房客:闹剧(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/124cb51986945e38b90c0ec41133320b.jpg", + "contentType": 3, + "releasedAt": 1716816794000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171682293232.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "64f0d372b11b52970ac4caa3e237882b", + "title": "2024-05-27 七十二家房客:闹剧(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c174633155222e86b51617f8d50fc23b.jpg", + "releasedAt": 1716814800000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171682291526.m3u8", + "raw": { + "id": "64f0d372b11b52970ac4caa3e237882b", + "title": "2024-05-27 七十二家房客:闹剧(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c174633155222e86b51617f8d50fc23b.jpg", + "contentType": 3, + "releasedAt": 1716814800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171682291526.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "53eb6362975dc687702df608a2ce9b9e", + "title": "2024-05-26 七十二家房客:女人心计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/82b8bd25db89320282b7e353813743e6.jpg", + "releasedAt": 1716728400000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171673692163.m3u8", + "raw": { + "id": "53eb6362975dc687702df608a2ce9b9e", + "title": "2024-05-26 七十二家房客:女人心计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/82b8bd25db89320282b7e353813743e6.jpg", + "contentType": 3, + "releasedAt": 1716728400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171673692163.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6d10c6e80e74238ece5f6b6c281b3636", + "title": "2024-05-26 七十二家房客:女人心计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/389402d8b43f7ba7ca75eddb12d591f1.jpg", + "releasedAt": 1716728400000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171673699775.m3u8", + "raw": { + "id": "6d10c6e80e74238ece5f6b6c281b3636", + "title": "2024-05-26 七十二家房客:女人心计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/389402d8b43f7ba7ca75eddb12d591f1.jpg", + "contentType": 3, + "releasedAt": 1716728400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171673699775.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0bfbc383f591581c2f057dbccf692719", + "title": "2024-05-25 七十二家房客:过房儿子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/33d5f7d8aaac6754a4d92eb98c7f65b3.jpg", + "releasedAt": 1716642000000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171665162195.m3u8", + "raw": { + "id": "0bfbc383f591581c2f057dbccf692719", + "title": "2024-05-25 七十二家房客:过房儿子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/33d5f7d8aaac6754a4d92eb98c7f65b3.jpg", + "contentType": 3, + "releasedAt": 1716642000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171665162195.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "77c7472f2d21bda76343c611f1ae9e68", + "title": "2024-05-25 七十二家房客:过房儿子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/fa3e2640bdea0dba2526a1d60776ca6c.jpg", + "releasedAt": 1716642000000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202406/171665151848.m3u8", + "raw": { + "id": "77c7472f2d21bda76343c611f1ae9e68", + "title": "2024-05-25 七十二家房客:过房儿子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/fa3e2640bdea0dba2526a1d60776ca6c.jpg", + "contentType": 3, + "releasedAt": 1716642000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202406/171665151848.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e552d54b6cbb5562b4c591dc0d8376d6", + "title": "2024-05-24 七十二家房客:黄梨梦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/79aa7993fa51678f13be46560c241b7a.jpg", + "releasedAt": 1716557590000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171656442282.m3u8", + "raw": { + "id": "e552d54b6cbb5562b4c591dc0d8376d6", + "title": "2024-05-24 七十二家房客:黄梨梦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/79aa7993fa51678f13be46560c241b7a.jpg", + "contentType": 3, + "releasedAt": 1716557590000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171656442282.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1995a46442852386ef34660ac3ac1829", + "title": "2024-05-24 七十二家房客:黄梨梦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2d9c949e856d3aac513b1c5c186f3716.jpg", + "releasedAt": 1716555600000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171656442359.m3u8", + "raw": { + "id": "1995a46442852386ef34660ac3ac1829", + "title": "2024-05-24 七十二家房客:黄梨梦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2d9c949e856d3aac513b1c5c186f3716.jpg", + "contentType": 3, + "releasedAt": 1716555600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171656442359.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad048c4a4fa4d7351ad16407ca0af98d", + "title": "2024-05-23 七十二家房客:媒人福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/dce76a6bc5b9a3e684ef9312ce12f37f.jpg", + "releasedAt": 1716471209000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171647773639.m3u8", + "raw": { + "id": "ad048c4a4fa4d7351ad16407ca0af98d", + "title": "2024-05-23 七十二家房客:媒人福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/dce76a6bc5b9a3e684ef9312ce12f37f.jpg", + "contentType": 3, + "releasedAt": 1716471209000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171647773639.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "944dfe96a89606ca64d0f05b71a3edee", + "title": "2024-05-23 七十二家房客:造反的马仔", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/ff59df643780739336403476bf48eb41.jpg", + "releasedAt": 1716469200000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171647773858.m3u8", + "raw": { + "id": "944dfe96a89606ca64d0f05b71a3edee", + "title": "2024-05-23 七十二家房客:造反的马仔", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/ff59df643780739336403476bf48eb41.jpg", + "contentType": 3, + "releasedAt": 1716469200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171647773858.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7259b493072904ea12dd1bd2a9797458", + "title": "2024-05-22 七十二家房客:托孤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/ef47f067c065fc40104b03195b82b1d2.jpg", + "releasedAt": 1716382800000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171639098770.m3u8", + "raw": { + "id": "7259b493072904ea12dd1bd2a9797458", + "title": "2024-05-22 七十二家房客:托孤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/ef47f067c065fc40104b03195b82b1d2.jpg", + "contentType": 3, + "releasedAt": 1716382800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171639098770.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "34fb74e7fb37930e2188f77be8933a50", + "title": "2024-05-22 七十二家房客:托孤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/b146ea1e0c85f0e8c18f8dfce103839a.jpg", + "releasedAt": 1716382800000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171639099254.m3u8", + "raw": { + "id": "34fb74e7fb37930e2188f77be8933a50", + "title": "2024-05-22 七十二家房客:托孤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/b146ea1e0c85f0e8c18f8dfce103839a.jpg", + "contentType": 3, + "releasedAt": 1716382800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171639099254.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1490cb55eb1de4f7989c96c7465c3393", + "title": "2024-05-21 七十二家房客:过气特工(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/cdbea733d5575d0e3c79b013cb553285.jpg", + "releasedAt": 1716298287000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171630810715.m3u8", + "raw": { + "id": "1490cb55eb1de4f7989c96c7465c3393", + "title": "2024-05-21 七十二家房客:过气特工(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/cdbea733d5575d0e3c79b013cb553285.jpg", + "contentType": 3, + "releasedAt": 1716298287000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171630810715.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "70b72afafaafbec914d0bf41491e6323", + "title": "2024-05-20 七十二家房客:特派专员(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/7ac623b9e15927d0f96adb3e96afcebb.jpg", + "releasedAt": 1716212012000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171622347449.m3u8", + "raw": { + "id": "70b72afafaafbec914d0bf41491e6323", + "title": "2024-05-20 七十二家房客:特派专员(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/7ac623b9e15927d0f96adb3e96afcebb.jpg", + "contentType": 3, + "releasedAt": 1716212012000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171622347449.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "884fbea321b22afd5b33e6d025ed6b59", + "title": "2024-05-20 七十二家房客:特派专员(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d7f1c52b646ddc08eadac087c2ec843a.jpg", + "releasedAt": 1716210000000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171622347762.m3u8", + "raw": { + "id": "884fbea321b22afd5b33e6d025ed6b59", + "title": "2024-05-20 七十二家房客:特派专员(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d7f1c52b646ddc08eadac087c2ec843a.jpg", + "contentType": 3, + "releasedAt": 1716210000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171622347762.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f7059835ad0bc21ec96919a3ee9a5e7e", + "title": "2024-05-19 七十二家房客:明明白白我的心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/4089af5134b7e2533bf80fbd9022ab5b.jpg", + "releasedAt": 1716123600000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171613326142.m3u8", + "raw": { + "id": "f7059835ad0bc21ec96919a3ee9a5e7e", + "title": "2024-05-19 七十二家房客:明明白白我的心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/4089af5134b7e2533bf80fbd9022ab5b.jpg", + "contentType": 3, + "releasedAt": 1716123600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171613326142.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5bb9ded32a01ed40b3a3be5a2f6a1717", + "title": "2024-05-18 七十二家房客:养女阿竹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c4dad2f72dbe73ad64fce0bdad71c2d8.jpg", + "releasedAt": 1716038838000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171604662164.m3u8", + "raw": { + "id": "5bb9ded32a01ed40b3a3be5a2f6a1717", + "title": "2024-05-18 七十二家房客:养女阿竹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c4dad2f72dbe73ad64fce0bdad71c2d8.jpg", + "contentType": 3, + "releasedAt": 1716038838000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171604662164.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fb209215bff009b8cae44d66494aa559", + "title": "2024-05-18 七十二家房客:养女阿竹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d0cf8c7dfd934d5f13ebbf644c619fa3.jpg", + "releasedAt": 1716037200000, + "timeLength": 1359, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171604661490.m3u8", + "raw": { + "id": "fb209215bff009b8cae44d66494aa559", + "title": "2024-05-18 七十二家房客:养女阿竹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d0cf8c7dfd934d5f13ebbf644c619fa3.jpg", + "contentType": 3, + "releasedAt": 1716037200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171604661490.m3u8\"}", + "timeLength": 1359, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "92e7fd146f4c1ef76d0e2f7659db3f14", + "title": "2024-05-17 七十二家房客:孤寒财主(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/66cf8c32383382b848369c438b2b5c27.jpg", + "releasedAt": 1715952797000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171595896655.m3u8", + "raw": { + "id": "92e7fd146f4c1ef76d0e2f7659db3f14", + "title": "2024-05-17 七十二家房客:孤寒财主(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/66cf8c32383382b848369c438b2b5c27.jpg", + "contentType": 3, + "releasedAt": 1715952797000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171595896655.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6571e355608c4600b762950d3ed139a6", + "title": "2024-05-17 七十二家房客:孤寒财主(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d8e2e4729a7319f108ad607170303f6f.jpg", + "releasedAt": 1715950800000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171595911628.m3u8", + "raw": { + "id": "6571e355608c4600b762950d3ed139a6", + "title": "2024-05-17 七十二家房客:孤寒财主(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d8e2e4729a7319f108ad607170303f6f.jpg", + "contentType": 3, + "releasedAt": 1715950800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171595911628.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "49b92c602c004a4b11e9b2ac115fbf34", + "title": "2024-05-16 七十二家房客:偏向虎山行(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/fb176eff33b26e67e6250714b16c021a.jpg", + "releasedAt": 1715866407000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171587171552.m3u8", + "raw": { + "id": "49b92c602c004a4b11e9b2ac115fbf34", + "title": "2024-05-16 七十二家房客:偏向虎山行(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/fb176eff33b26e67e6250714b16c021a.jpg", + "contentType": 3, + "releasedAt": 1715866407000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171587171552.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c9ad672338b0ff74e00ba15bc44810c8", + "title": "2024-05-16 七十二家房客:偏向虎山行(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/8b75b56776a3d3073a24cfc5a7d8b3f2.jpg", + "releasedAt": 1715864400000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171587171085.m3u8", + "raw": { + "id": "c9ad672338b0ff74e00ba15bc44810c8", + "title": "2024-05-16 七十二家房客:偏向虎山行(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/8b75b56776a3d3073a24cfc5a7d8b3f2.jpg", + "contentType": 3, + "releasedAt": 1715864400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171587171085.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f7d4eaf829e9701fe26c12d4e86bcc7f", + "title": "2024-05-15 七十二家房客:一字千金", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/927787adde47517218ba898e62b3fac9.jpg", + "releasedAt": 1715778000000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171578724373.m3u8", + "raw": { + "id": "f7d4eaf829e9701fe26c12d4e86bcc7f", + "title": "2024-05-15 七十二家房客:一字千金", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/927787adde47517218ba898e62b3fac9.jpg", + "contentType": 3, + "releasedAt": 1715778000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171578724373.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d17c1f273d0906eaaa3115b963f2b9a2", + "title": "2024-05-15 七十二家房客:合伙单车", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/6605731854eb0a6b69bb8b12224f0114.jpg", + "releasedAt": 1715778000000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171578602022.m3u8", + "raw": { + "id": "d17c1f273d0906eaaa3115b963f2b9a2", + "title": "2024-05-15 七十二家房客:合伙单车", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/6605731854eb0a6b69bb8b12224f0114.jpg", + "contentType": 3, + "releasedAt": 1715778000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171578602022.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c2f4cf95efe26965c53e4d6228d32eb2", + "title": "2024-05-14 七十二家房客:为善之门(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/bbea89452c22d9407963c046bc2deb60.jpg", + "releasedAt": 1715693525000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171570303429.m3u8", + "raw": { + "id": "c2f4cf95efe26965c53e4d6228d32eb2", + "title": "2024-05-14 七十二家房客:为善之门(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/bbea89452c22d9407963c046bc2deb60.jpg", + "contentType": 3, + "releasedAt": 1715693525000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171570303429.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f8796b8e78921bad1481e7acaabae76f", + "title": "2024-05-14 七十二家房客:为善之门(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/19ac78cf462e198a4f1f7942c152a37c.jpg", + "releasedAt": 1715691600000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171570303372.m3u8", + "raw": { + "id": "f8796b8e78921bad1481e7acaabae76f", + "title": "2024-05-14 七十二家房客:为善之门(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/19ac78cf462e198a4f1f7942c152a37c.jpg", + "contentType": 3, + "releasedAt": 1715691600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171570303372.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f8dad5c31b941480d6e836efa5a527cf", + "title": "2024-05-13 七十二家房客:前辈与晚辈(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2ed405788d1ba0ccb8af8f92f66e5637.jpg", + "releasedAt": 1715607130000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171561419243.m3u8", + "raw": { + "id": "f8dad5c31b941480d6e836efa5a527cf", + "title": "2024-05-13 七十二家房客:前辈与晚辈(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2ed405788d1ba0ccb8af8f92f66e5637.jpg", + "contentType": 3, + "releasedAt": 1715607130000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171561419243.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e56e6802159ec97ec19c0e656ab0c66a", + "title": "2024-05-13 七十二家房客:前辈与晚辈(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/aa1153afbb8313290db7382be5eb9791.jpg", + "releasedAt": 1715605200000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171561417273.m3u8", + "raw": { + "id": "e56e6802159ec97ec19c0e656ab0c66a", + "title": "2024-05-13 七十二家房客:前辈与晚辈(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/aa1153afbb8313290db7382be5eb9791.jpg", + "contentType": 3, + "releasedAt": 1715605200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171561417273.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "46d79ac0e52126b3f387dc1f61b6e7b1", + "title": "2024-05-12 七十二家房客:与虎谋皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/fd6af17cbb985e166937b40776466bdb.jpg", + "releasedAt": 1715518800000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171552611394.m3u8", + "raw": { + "id": "46d79ac0e52126b3f387dc1f61b6e7b1", + "title": "2024-05-12 七十二家房客:与虎谋皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/fd6af17cbb985e166937b40776466bdb.jpg", + "contentType": 3, + "releasedAt": 1715518800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171552611394.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7ef0ffe716ad9ce25fe5b32567219083", + "title": "2024-05-12 七十二家房客:与虎谋皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/56b63c6f8032fdb6009c7d248e66763c.jpg", + "releasedAt": 1715518800000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171552611598.m3u8", + "raw": { + "id": "7ef0ffe716ad9ce25fe5b32567219083", + "title": "2024-05-12 七十二家房客:与虎谋皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/56b63c6f8032fdb6009c7d248e66763c.jpg", + "contentType": 3, + "releasedAt": 1715518800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171552611598.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dfe28a8035139d94e6ced4b4926108a7", + "title": "2024-05-11 七十二家房客:寄居蟹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/b45fd5c4399d6ec8d19265502dbaabd3.jpg", + "releasedAt": 1715434045000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171543848270.m3u8", + "raw": { + "id": "dfe28a8035139d94e6ced4b4926108a7", + "title": "2024-05-11 七十二家房客:寄居蟹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/b45fd5c4399d6ec8d19265502dbaabd3.jpg", + "contentType": 3, + "releasedAt": 1715434045000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171543848270.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "454a9d88a3deb3cbea354b601bd9a167", + "title": "2024-05-11 七十二家房客:寄居蟹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2a333590be897dd2ccf080cbb0a93537.jpg", + "releasedAt": 1715432400000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171543852398.m3u8", + "raw": { + "id": "454a9d88a3deb3cbea354b601bd9a167", + "title": "2024-05-11 七十二家房客:寄居蟹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2a333590be897dd2ccf080cbb0a93537.jpg", + "contentType": 3, + "releasedAt": 1715432400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171543852398.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "49838f489d08bd597e2abf276e57db40", + "title": "2024-05-10 七十二家房客:酒局风波(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/30197c8957a4c6db3675555e7d38097c.jpg", + "releasedAt": 1715346000000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171535458497.m3u8", + "raw": { + "id": "49838f489d08bd597e2abf276e57db40", + "title": "2024-05-10 七十二家房客:酒局风波(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/30197c8957a4c6db3675555e7d38097c.jpg", + "contentType": 3, + "releasedAt": 1715346000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171535458497.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5f169538e82dbc86691c48f22f13ac6b", + "title": "2024-05-10 七十二家房客:酒局风波(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/e3ba25a32186fd9b77e4992fc63998a9.jpg", + "releasedAt": 1715346000000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171535462486.m3u8", + "raw": { + "id": "5f169538e82dbc86691c48f22f13ac6b", + "title": "2024-05-10 七十二家房客:酒局风波(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/e3ba25a32186fd9b77e4992fc63998a9.jpg", + "contentType": 3, + "releasedAt": 1715346000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171535462486.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d7fa42fc906d30d938b10c752db57b3e", + "title": "2024-05-09 七十二家房客:江湖疑凶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/8a1545bb74189c225682a1315c101f60.jpg", + "releasedAt": 1715261515000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171526762684.m3u8", + "raw": { + "id": "d7fa42fc906d30d938b10c752db57b3e", + "title": "2024-05-09 七十二家房客:江湖疑凶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/8a1545bb74189c225682a1315c101f60.jpg", + "contentType": 3, + "releasedAt": 1715261515000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171526762684.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "53abb32e3d7df401fb165938d1a386b2", + "title": "2024-05-09 七十二家房客:江湖疑凶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/0ffc5b9f1310ae9cab994351bf920694.jpg", + "releasedAt": 1715259600000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171526762785.m3u8", + "raw": { + "id": "53abb32e3d7df401fb165938d1a386b2", + "title": "2024-05-09 七十二家房客:江湖疑凶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/0ffc5b9f1310ae9cab994351bf920694.jpg", + "contentType": 3, + "releasedAt": 1715259600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171526762785.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "be36535a4300d2201a109a70b2d523e4", + "title": "2024-05-08 七十二家房客:我不是神经病(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/dafb669ff5009accf4da9c28888f0d26.jpg", + "releasedAt": 1715173200000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171518176684.m3u8", + "raw": { + "id": "be36535a4300d2201a109a70b2d523e4", + "title": "2024-05-08 七十二家房客:我不是神经病(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/dafb669ff5009accf4da9c28888f0d26.jpg", + "contentType": 3, + "releasedAt": 1715173200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171518176684.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2ecb530e5b99de8f50b461be91048e6b", + "title": "2024-05-08 七十二家房客:我不是神经病(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/24445af0d0747273a0223fef39aa6760.jpg", + "releasedAt": 1715173200000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171518175623.m3u8", + "raw": { + "id": "2ecb530e5b99de8f50b461be91048e6b", + "title": "2024-05-08 七十二家房客:我不是神经病(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/24445af0d0747273a0223fef39aa6760.jpg", + "contentType": 3, + "releasedAt": 1715173200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171518175623.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ba384edf5143416854068507e209c746", + "title": "2024-05-07 七十二家房客:土地庙", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/782dc4856323a8b6101c4e4f96504961.jpg", + "releasedAt": 1715088744000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171509870657.m3u8", + "raw": { + "id": "ba384edf5143416854068507e209c746", + "title": "2024-05-07 七十二家房客:土地庙", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/782dc4856323a8b6101c4e4f96504961.jpg", + "contentType": 3, + "releasedAt": 1715088744000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171509870657.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ce4de1d961040178140d46af7bae9679", + "title": "2024-05-07 七十二家房客:怒火街头", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c6bc4c0cce8c3a10ae40418a90f12157.jpg", + "releasedAt": 1715086800000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171509871493.m3u8", + "raw": { + "id": "ce4de1d961040178140d46af7bae9679", + "title": "2024-05-07 七十二家房客:怒火街头", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/c6bc4c0cce8c3a10ae40418a90f12157.jpg", + "contentType": 3, + "releasedAt": 1715086800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171509871493.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "44b6acc2a3ff42cee64489bacf8ad5a0", + "title": "2024-05-06 七十二家房客:左右为难(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/a80d004f843be5b0c88ac44a77d694ff.jpg", + "releasedAt": 1715002340000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171500960684.m3u8", + "raw": { + "id": "44b6acc2a3ff42cee64489bacf8ad5a0", + "title": "2024-05-06 七十二家房客:左右为难(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/a80d004f843be5b0c88ac44a77d694ff.jpg", + "contentType": 3, + "releasedAt": 1715002340000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171500960684.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "359a655fdafc59e5a9ad9cf5585b279f", + "title": "2024-05-06 七十二家房客:左右为难(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/bc557c95f371d793fa2ff5f813907055.jpg", + "releasedAt": 1715000400000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171500960734.m3u8", + "raw": { + "id": "359a655fdafc59e5a9ad9cf5585b279f", + "title": "2024-05-06 七十二家房客:左右为难(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/bc557c95f371d793fa2ff5f813907055.jpg", + "contentType": 3, + "releasedAt": 1715000400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171500960734.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fd7009ba1f96e8ea62bc33b64e0f64ad", + "title": "2024-05-05 七十二家房客:臭味相投(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d0f8582379e95e3dd504f78462b6e7b7.jpg", + "releasedAt": 1714915592000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171492448669.m3u8", + "raw": { + "id": "fd7009ba1f96e8ea62bc33b64e0f64ad", + "title": "2024-05-05 七十二家房客:臭味相投(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/d0f8582379e95e3dd504f78462b6e7b7.jpg", + "contentType": 3, + "releasedAt": 1714915592000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171492448669.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9a72e6f490d04e5933f82cc7daeebb05", + "title": "2024-05-05 七十二家房客:臭味相投(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/7f274099cf0bb3e77e5e88763eb4197f.jpg", + "releasedAt": 1714914000000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171492435925.m3u8", + "raw": { + "id": "9a72e6f490d04e5933f82cc7daeebb05", + "title": "2024-05-05 七十二家房客:臭味相投(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/7f274099cf0bb3e77e5e88763eb4197f.jpg", + "contentType": 3, + "releasedAt": 1714914000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171492435925.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5ebb75e6affc1d4a86086f1da905d59c", + "title": "2024-05-04 七十二家房客:阿香的成长", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/10c5a845250dce6eb7a7003bf44edf93.jpg", + "releasedAt": 1714829198000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171483559196.m3u8", + "raw": { + "id": "5ebb75e6affc1d4a86086f1da905d59c", + "title": "2024-05-04 七十二家房客:阿香的成长", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/10c5a845250dce6eb7a7003bf44edf93.jpg", + "contentType": 3, + "releasedAt": 1714829198000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171483559196.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c307364cbf95a9e0cd232ae1a3f659ea", + "title": "2024-05-04 七十二家房客:送汤记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/34960c0440d9c0d98b6bba727467cf88.jpg", + "releasedAt": 1714827600000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171483563440.m3u8", + "raw": { + "id": "c307364cbf95a9e0cd232ae1a3f659ea", + "title": "2024-05-04 七十二家房客:送汤记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/34960c0440d9c0d98b6bba727467cf88.jpg", + "contentType": 3, + "releasedAt": 1714827600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171483563440.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2cf8a08c5c1070a69a82d25582837f64", + "title": "2024-05-03 七十二家房客:杏林育新枝(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/ea849429bb4433b97a7c0bbda80f8911.jpg", + "releasedAt": 1714743099000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171475104646.m3u8", + "raw": { + "id": "2cf8a08c5c1070a69a82d25582837f64", + "title": "2024-05-03 七十二家房客:杏林育新枝(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/ea849429bb4433b97a7c0bbda80f8911.jpg", + "contentType": 3, + "releasedAt": 1714743099000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171475104646.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0eb11affd037f438f9309ef780274365", + "title": "2024-05-03 七十二家房客:杏林育新枝(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/dd10d0e9428bd4baea6dcef15ba3159a.jpg", + "releasedAt": 1714741200000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171475117181.m3u8", + "raw": { + "id": "0eb11affd037f438f9309ef780274365", + "title": "2024-05-03 七十二家房客:杏林育新枝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/dd10d0e9428bd4baea6dcef15ba3159a.jpg", + "contentType": 3, + "releasedAt": 1714741200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171475117181.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bf59d53cfc27f3edc9463eac5bab87ce", + "title": "2024-05-02 七十二家房客:生子疑团(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2eac523148e1bc2e611591c9898b02e7.jpg", + "releasedAt": 1714654800000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171466071620.m3u8", + "raw": { + "id": "bf59d53cfc27f3edc9463eac5bab87ce", + "title": "2024-05-02 七十二家房客:生子疑团(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/2eac523148e1bc2e611591c9898b02e7.jpg", + "contentType": 3, + "releasedAt": 1714654800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171466071620.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "646b571f4e774b7d6d3b0ce86397864c", + "title": "2024-05-02 七十二家房客:生子疑团(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/01dba448b71cf752f30393193d820355.jpg", + "releasedAt": 1714654800000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171466075655.m3u8", + "raw": { + "id": "646b571f4e774b7d6d3b0ce86397864c", + "title": "2024-05-02 七十二家房客:生子疑团(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/01dba448b71cf752f30393193d820355.jpg", + "contentType": 3, + "releasedAt": 1714654800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171466075655.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c7cb5bedcf4685b5e5a1ada2e7581bc3", + "title": "2024-05-01 七十二家房客:卖故衣(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/588732576d4d03854b685b602de816d6.jpg", + "releasedAt": 1714570311000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171457702960.m3u8", + "raw": { + "id": "c7cb5bedcf4685b5e5a1ada2e7581bc3", + "title": "2024-05-01 七十二家房客:卖故衣(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/588732576d4d03854b685b602de816d6.jpg", + "contentType": 3, + "releasedAt": 1714570311000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171457702960.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cbfb80f60ffebda1982b24500f5010ac", + "title": "2024-05-01 七十二家房客:卖故衣(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/08922e9a6c56aba0076c0ed7eaa74a70.jpg", + "releasedAt": 1714568400000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171457705137.m3u8", + "raw": { + "id": "cbfb80f60ffebda1982b24500f5010ac", + "title": "2024-05-01 七十二家房客:卖故衣(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/08922e9a6c56aba0076c0ed7eaa74a70.jpg", + "contentType": 3, + "releasedAt": 1714568400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171457705137.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dd04afcb04f149d040e4015866145e2b", + "title": "2024-04-30 七十二家房客:抽签游戏", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/65cb8212b5d6e342b29c146d92fa24e2.jpg", + "releasedAt": 1714483913000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171449435851.m3u8", + "raw": { + "id": "dd04afcb04f149d040e4015866145e2b", + "title": "2024-04-30 七十二家房客:抽签游戏", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/65cb8212b5d6e342b29c146d92fa24e2.jpg", + "contentType": 3, + "releasedAt": 1714483913000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171449435851.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "eaf157195baa66e844247a72c71f1a13", + "title": "2024-04-30 七十二家房客:私密照片", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/9a4684bb0966c7a06d7768c3eb22519d.jpg", + "releasedAt": 1714482000000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171449435786.m3u8", + "raw": { + "id": "eaf157195baa66e844247a72c71f1a13", + "title": "2024-04-30 七十二家房客:私密照片", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/05/9a4684bb0966c7a06d7768c3eb22519d.jpg", + "contentType": 3, + "releasedAt": 1714482000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171449435786.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "522dc58b93850647738b72b40dd6b13a", + "title": "2024-04-29 七十二家房客:自黑记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/4d5da1a7a464a34258a15f74459d0c79.jpg", + "releasedAt": 1714397528000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171440455451.m3u8", + "raw": { + "id": "522dc58b93850647738b72b40dd6b13a", + "title": "2024-04-29 七十二家房客:自黑记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/4d5da1a7a464a34258a15f74459d0c79.jpg", + "contentType": 3, + "releasedAt": 1714397528000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171440455451.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0bf1d9c780c401bc51e315a4c509500d", + "title": "2024-04-29 七十二家房客:茶室乐园", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f33ac83cebd83dd39c83072fa6da9bfc.jpg", + "releasedAt": 1714395600000, + "timeLength": 1359, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171440449769.m3u8", + "raw": { + "id": "0bf1d9c780c401bc51e315a4c509500d", + "title": "2024-04-29 七十二家房客:茶室乐园", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f33ac83cebd83dd39c83072fa6da9bfc.jpg", + "contentType": 3, + "releasedAt": 1714395600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171440449769.m3u8\"}", + "timeLength": 1359, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d05db8c15713245697171e5c9e2858f", + "title": "2024-04-28 七十二家房客:各显神通(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/7367161330735fb84bf8f27359f82218.jpg", + "releasedAt": 1714309200000, + "timeLength": 1268, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171431793737.m3u8", + "raw": { + "id": "4d05db8c15713245697171e5c9e2858f", + "title": "2024-04-28 七十二家房客:各显神通(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/7367161330735fb84bf8f27359f82218.jpg", + "contentType": 3, + "releasedAt": 1714309200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171431793737.m3u8\"}", + "timeLength": 1268, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3fe6d36584aedf8ba0d27829922e7bea", + "title": "2024-04-28 七十二家房客:各显神通(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/8f7627033903790814c0226f0c764bcc.jpg", + "releasedAt": 1714309200000, + "timeLength": 1314, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171431780676.m3u8", + "raw": { + "id": "3fe6d36584aedf8ba0d27829922e7bea", + "title": "2024-04-28 七十二家房客:各显神通(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/8f7627033903790814c0226f0c764bcc.jpg", + "contentType": 3, + "releasedAt": 1714309200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171431780676.m3u8\"}", + "timeLength": 1314, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b31143faf14895ffe2f2be687e6b181d", + "title": "2024-04-27 七十二家房客:草药(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/e2bf116f3b718a61d46885b8b0de6ae3.jpg", + "releasedAt": 1714222800000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171423221340.m3u8", + "raw": { + "id": "b31143faf14895ffe2f2be687e6b181d", + "title": "2024-04-27 七十二家房客:草药(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/e2bf116f3b718a61d46885b8b0de6ae3.jpg", + "contentType": 3, + "releasedAt": 1714222800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171423221340.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "974630debcba99f3c1b64be8b55accbb", + "title": "2024-04-27 七十二家房客:草药(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/b2397c28d0229382d818ae8eae78fd52.jpg", + "releasedAt": 1714222800000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171423209753.m3u8", + "raw": { + "id": "974630debcba99f3c1b64be8b55accbb", + "title": "2024-04-27 七十二家房客:草药(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/b2397c28d0229382d818ae8eae78fd52.jpg", + "contentType": 3, + "releasedAt": 1714222800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171423209753.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c22a5e0d3aa317598f203422e77c89b4", + "title": "2024-04-26 七十二家房客:最后一批通行证(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/a4986dc75966721eb1c261f90d46aacb.jpg", + "releasedAt": 1714138308000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171414631643.m3u8", + "raw": { + "id": "c22a5e0d3aa317598f203422e77c89b4", + "title": "2024-04-26 七十二家房客:最后一批通行证(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/a4986dc75966721eb1c261f90d46aacb.jpg", + "contentType": 3, + "releasedAt": 1714138308000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171414631643.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8288b80a680de0f3a11837cbe301cd99", + "title": "2024-04-26 七十二家房客:最后一批通行证(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/0a69debfdcf06a33387d30e2e2eac517.jpg", + "releasedAt": 1714136400000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171414633086.m3u8", + "raw": { + "id": "8288b80a680de0f3a11837cbe301cd99", + "title": "2024-04-26 七十二家房客:最后一批通行证(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/0a69debfdcf06a33387d30e2e2eac517.jpg", + "contentType": 3, + "releasedAt": 1714136400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171414633086.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7f94a3943ac348280a2adcf2a6677179", + "title": "2024-04-25 七十二家房客:理解万岁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/012e6234948db054a8726610c194fb7e.jpg", + "releasedAt": 1714051910000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171405848184.m3u8", + "raw": { + "id": "7f94a3943ac348280a2adcf2a6677179", + "title": "2024-04-25 七十二家房客:理解万岁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/012e6234948db054a8726610c194fb7e.jpg", + "contentType": 3, + "releasedAt": 1714051910000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171405848184.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "33dcbeaae70baf04441c7d940973f328", + "title": "2024-04-25 七十二家房客:理解万岁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/db19523f95e26153f8d5d88dac67e1c4.jpg", + "releasedAt": 1714050000000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171405848132.m3u8", + "raw": { + "id": "33dcbeaae70baf04441c7d940973f328", + "title": "2024-04-25 七十二家房客:理解万岁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/db19523f95e26153f8d5d88dac67e1c4.jpg", + "contentType": 3, + "releasedAt": 1714050000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171405848132.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "592681584a9eb836e67a4ba29812f91d", + "title": "2024-04-24 七十二家房客:到嘴的鸭子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/bf1baf6baded48f72cfe478f3db48456.jpg", + "releasedAt": 1713963600000, + "timeLength": 1281, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171397037438.m3u8", + "raw": { + "id": "592681584a9eb836e67a4ba29812f91d", + "title": "2024-04-24 七十二家房客:到嘴的鸭子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/bf1baf6baded48f72cfe478f3db48456.jpg", + "contentType": 3, + "releasedAt": 1713963600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171397037438.m3u8\"}", + "timeLength": 1281, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0b2678b183a9a1e29f818d507ff1fbbb", + "title": "2024-04-24 七十二家房客:到嘴的鸭子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/dead986492e3dfb18a6a1e12a1642ae1.jpg", + "releasedAt": 1713963600000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171397037358.m3u8", + "raw": { + "id": "0b2678b183a9a1e29f818d507ff1fbbb", + "title": "2024-04-24 七十二家房客:到嘴的鸭子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/dead986492e3dfb18a6a1e12a1642ae1.jpg", + "contentType": 3, + "releasedAt": 1713963600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171397037358.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c57f61517288e0a9400bd4ec224fc6ec", + "title": "2024-04-23 七十二家房客:放鹰计划(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/1e4634dc837b2c7bbc0fc6efd354d74e.jpg", + "releasedAt": 1713879143000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171388830385.m3u8", + "raw": { + "id": "c57f61517288e0a9400bd4ec224fc6ec", + "title": "2024-04-23 七十二家房客:放鹰计划(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/1e4634dc837b2c7bbc0fc6efd354d74e.jpg", + "contentType": 3, + "releasedAt": 1713879143000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171388830385.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aea87c5f5321c782349d8acb5ed143c9", + "title": "2024-04-23 七十二家房客:放鹰计划(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/d6d11aa729bcfb9997b51e25fe8a8cef.jpg", + "releasedAt": 1713877200000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202405/171388830261.m3u8", + "raw": { + "id": "aea87c5f5321c782349d8acb5ed143c9", + "title": "2024-04-23 七十二家房客:放鹰计划(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/d6d11aa729bcfb9997b51e25fe8a8cef.jpg", + "contentType": 3, + "releasedAt": 1713877200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202405/171388830261.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e7d5e34359e017b477b4e37d61e71311", + "title": "2024-04-22 七十二家房客:妇女救星(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/dbaacc6c105d5c6df2a97157568914aa.jpg", + "releasedAt": 1713792745000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171380113060.m3u8", + "raw": { + "id": "e7d5e34359e017b477b4e37d61e71311", + "title": "2024-04-22 七十二家房客:妇女救星(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/dbaacc6c105d5c6df2a97157568914aa.jpg", + "contentType": 3, + "releasedAt": 1713792745000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171380113060.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cb9c00f1bb51823c7764ce65a367b8c8", + "title": "2024-04-22 七十二家房客:妇女救星(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/ef8374e26c59e6f412d03d5c371052ba.jpg", + "releasedAt": 1713790800000, + "timeLength": 1358, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171380113269.m3u8", + "raw": { + "id": "cb9c00f1bb51823c7764ce65a367b8c8", + "title": "2024-04-22 七十二家房客:妇女救星(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/ef8374e26c59e6f412d03d5c371052ba.jpg", + "contentType": 3, + "releasedAt": 1713790800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171380113269.m3u8\"}", + "timeLength": 1358, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1043fd5aa07649bcb7a00f9e9f0741fc", + "title": "2024-04-21 七十二家房客:寸草心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/3db9b07705e70b27403a825fb9c6f1c0.jpg", + "releasedAt": 1713704400000, + "timeLength": 1289, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171371029712.m3u8", + "raw": { + "id": "1043fd5aa07649bcb7a00f9e9f0741fc", + "title": "2024-04-21 七十二家房客:寸草心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/3db9b07705e70b27403a825fb9c6f1c0.jpg", + "contentType": 3, + "releasedAt": 1713704400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171371029712.m3u8\"}", + "timeLength": 1289, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8739518622df884b860b34a551aabf4b", + "title": "2024-04-21 七十二家房客:寸草心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/0422a0cf2a131da46fffa971232b5cbf.jpg", + "releasedAt": 1713704400000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171371026428.m3u8", + "raw": { + "id": "8739518622df884b860b34a551aabf4b", + "title": "2024-04-21 七十二家房客:寸草心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/0422a0cf2a131da46fffa971232b5cbf.jpg", + "contentType": 3, + "releasedAt": 1713704400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171371026428.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "deddb17a15f8bf9fb49edb80d6abfea6", + "title": "2024-04-20 七十二家房客:才女悲歌", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/a2e6fc69f3491d75f0058b6dfa765432.jpg", + "releasedAt": 1713619663000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171363282759.m3u8", + "raw": { + "id": "deddb17a15f8bf9fb49edb80d6abfea6", + "title": "2024-04-20 七十二家房客:才女悲歌", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/a2e6fc69f3491d75f0058b6dfa765432.jpg", + "contentType": 3, + "releasedAt": 1713619663000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171363282759.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "59cadca347f582794ef2b7cdf58198ba", + "title": "2024-04-20 七十二家房客:真君子明算账", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/b27e3f3ddeddeb886f1f009c4ce90baf.jpg", + "releasedAt": 1713618000000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171363274215.m3u8", + "raw": { + "id": "59cadca347f582794ef2b7cdf58198ba", + "title": "2024-04-20 七十二家房客:真君子明算账", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/b27e3f3ddeddeb886f1f009c4ce90baf.jpg", + "contentType": 3, + "releasedAt": 1713618000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171363274215.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "75246df3532caea30c4d93853a040f4d", + "title": "2024-04-19 七十二家房客:师出同门(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/7c5c16824f9aa7a1970b1abd64b6f881.jpg", + "releasedAt": 1713533521000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171361118758.m3u8", + "raw": { + "id": "75246df3532caea30c4d93853a040f4d", + "title": "2024-04-19 七十二家房客:师出同门(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/7c5c16824f9aa7a1970b1abd64b6f881.jpg", + "contentType": 3, + "releasedAt": 1713533521000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171361118758.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f64de7cbb7a10c16f21e4a5daf9b6eac", + "title": "2024-04-19 七十二家房客:师出同门(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f5814020eed133d24c36a12098cd6a95.jpg", + "releasedAt": 1713531600000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171361112925.m3u8", + "raw": { + "id": "f64de7cbb7a10c16f21e4a5daf9b6eac", + "title": "2024-04-19 七十二家房客:师出同门(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f5814020eed133d24c36a12098cd6a95.jpg", + "contentType": 3, + "releasedAt": 1713531600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171361112925.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "929ccd67e54ba0ecda8eedd07eaa625c", + "title": "2024-04-18 七十二家房客:师出同门(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/eabd75b733a608e8fb2fe0714e9fccd3.jpg", + "releasedAt": 1713447135000, + "timeLength": 1266, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171345315484.m3u8", + "raw": { + "id": "929ccd67e54ba0ecda8eedd07eaa625c", + "title": "2024-04-18 七十二家房客:师出同门(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/eabd75b733a608e8fb2fe0714e9fccd3.jpg", + "contentType": 3, + "releasedAt": 1713447135000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171345315484.m3u8\"}", + "timeLength": 1266, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "048145e644d0db252965419c444232fa", + "title": "2024-04-18 七十二家房客:师出同门(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/b60bfa18901f9625677d62ee71670d54.jpg", + "releasedAt": 1713445200000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171345321413.m3u8", + "raw": { + "id": "048145e644d0db252965419c444232fa", + "title": "2024-04-18 七十二家房客:师出同门(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/b60bfa18901f9625677d62ee71670d54.jpg", + "contentType": 3, + "releasedAt": 1713445200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171345321413.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "142ff2c96d7669e0344e7000a83baed2", + "title": "2024-04-17 七十二家房客:扎灯笼(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/06518ce280ca425e49dfecb683bc0086.jpg", + "releasedAt": 1713360707000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171337036935.m3u8", + "raw": { + "id": "142ff2c96d7669e0344e7000a83baed2", + "title": "2024-04-17 七十二家房客:扎灯笼(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/06518ce280ca425e49dfecb683bc0086.jpg", + "contentType": 3, + "releasedAt": 1713360707000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171337036935.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c0046cf34301fba424ee82f28bc094f6", + "title": "2024-04-17 七十二家房客:扎灯笼(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/6d1de271c4d91ebdb84f37ea6c883659.jpg", + "releasedAt": 1713358800000, + "timeLength": 1330, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171337035827.m3u8", + "raw": { + "id": "c0046cf34301fba424ee82f28bc094f6", + "title": "2024-04-17 七十二家房客:扎灯笼(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/6d1de271c4d91ebdb84f37ea6c883659.jpg", + "contentType": 3, + "releasedAt": 1713358800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171337035827.m3u8\"}", + "timeLength": 1330, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "53ca9d6a23fa91840bdee29e2c227c43", + "title": "2024-04-16 七十二家房客:胆战心惊(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f5eec5843360c0172ec24eb2032427ce.jpg", + "releasedAt": 1713274317000, + "timeLength": 1270, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171328157673.m3u8", + "raw": { + "id": "53ca9d6a23fa91840bdee29e2c227c43", + "title": "2024-04-16 七十二家房客:胆战心惊(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f5eec5843360c0172ec24eb2032427ce.jpg", + "contentType": 3, + "releasedAt": 1713274317000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171328157673.m3u8\"}", + "timeLength": 1270, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8c01bda949e8ab3a8208534fdc0be4d4", + "title": "2024-04-16 七十二家房客:胆战心惊(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/5ccc18e3bf7e9776bd92333a3cf50ce1.jpg", + "releasedAt": 1713272400000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171328158283.m3u8", + "raw": { + "id": "8c01bda949e8ab3a8208534fdc0be4d4", + "title": "2024-04-16 七十二家房客:胆战心惊(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/5ccc18e3bf7e9776bd92333a3cf50ce1.jpg", + "contentType": 3, + "releasedAt": 1713272400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171328158283.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f9926f0d6560681a0507234f316f3ef3", + "title": "2024-04-15 七十二家房客:假红娘(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/5e9eb23c55ebf0c3915e5725dcdc37a4.jpg", + "releasedAt": 1713187905000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171319616742.m3u8", + "raw": { + "id": "f9926f0d6560681a0507234f316f3ef3", + "title": "2024-04-15 七十二家房客:假红娘(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/5e9eb23c55ebf0c3915e5725dcdc37a4.jpg", + "contentType": 3, + "releasedAt": 1713187905000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171319616742.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "dbcc5d8a14d3c4f5d99969bf96855a25", + "title": "2024-04-15 七十二家房客:假红娘(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/28a9b9204b2de4768855f3867777f49e.jpg", + "releasedAt": 1713186000000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171319616671.m3u8", + "raw": { + "id": "dbcc5d8a14d3c4f5d99969bf96855a25", + "title": "2024-04-15 七十二家房客:假红娘(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/28a9b9204b2de4768855f3867777f49e.jpg", + "contentType": 3, + "releasedAt": 1713186000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171319616671.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "90962be5151e40e262a91bd5edc41c44", + "title": "2024-04-14 七十二家房客:不是有情郎(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/15364be0d9f2f0e01387f6f35a5d1b18.jpg", + "releasedAt": 1713099600000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171310650276.m3u8", + "raw": { + "id": "90962be5151e40e262a91bd5edc41c44", + "title": "2024-04-14 七十二家房客:不是有情郎(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/15364be0d9f2f0e01387f6f35a5d1b18.jpg", + "contentType": 3, + "releasedAt": 1713099600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171310650276.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b3ff814a800ece1bf55de46a383cd96f", + "title": "2024-04-14 七十二家房客:不是有情郎(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/70fca39688c641c7eb1fe66fc29a4e63.jpg", + "releasedAt": 1713099600000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171310653691.m3u8", + "raw": { + "id": "b3ff814a800ece1bf55de46a383cd96f", + "title": "2024-04-14 七十二家房客:不是有情郎(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/70fca39688c641c7eb1fe66fc29a4e63.jpg", + "contentType": 3, + "releasedAt": 1713099600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171310653691.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a9eced0c3814db53856674be0389ad96", + "title": "2024-04-13 七十二家房客:真假好人(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/1bdbf654d9f90ec88e444dc24458ef83.jpg", + "releasedAt": 1713014793000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171302677383.m3u8", + "raw": { + "id": "a9eced0c3814db53856674be0389ad96", + "title": "2024-04-13 七十二家房客:真假好人(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/1bdbf654d9f90ec88e444dc24458ef83.jpg", + "contentType": 3, + "releasedAt": 1713014793000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171302677383.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56186300439627ea865bcd928b10f3f4", + "title": "2024-04-13 七十二家房客:真假好人(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/2e74748bc55dbba7b0ec793ef2dbadd6.jpg", + "releasedAt": 1713013200000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171302671699.m3u8", + "raw": { + "id": "56186300439627ea865bcd928b10f3f4", + "title": "2024-04-13 七十二家房客:真假好人(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/2e74748bc55dbba7b0ec793ef2dbadd6.jpg", + "contentType": 3, + "releasedAt": 1713013200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171302671699.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0bb56ac32ed343e0065c62736249d1d9", + "title": "2024-04-12 七十二家房客:师弟来了(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/bdd673b9ed869efafee28110f4059966.jpg", + "releasedAt": 1712928709000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171293469196.m3u8", + "raw": { + "id": "0bb56ac32ed343e0065c62736249d1d9", + "title": "2024-04-12 七十二家房客:师弟来了(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/bdd673b9ed869efafee28110f4059966.jpg", + "contentType": 3, + "releasedAt": 1712928709000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171293469196.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cc02cc099ba2cef42742a89e3c64849d", + "title": "2024-04-12 七十二家房客:师弟来了(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/537dbe22609e5f8672f22959721f0b89.jpg", + "releasedAt": 1712926800000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171293469535.m3u8", + "raw": { + "id": "cc02cc099ba2cef42742a89e3c64849d", + "title": "2024-04-12 七十二家房客:师弟来了(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/537dbe22609e5f8672f22959721f0b89.jpg", + "contentType": 3, + "releasedAt": 1712926800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171293469535.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e701a2cf1b3308aadc9d91f51733f08e", + "title": "2024-04-11 七十二家房客:沽名钓誉(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/7f354a925494d02af8bfabe855a86ca7.jpg", + "releasedAt": 1712842338000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171284840939.m3u8", + "raw": { + "id": "e701a2cf1b3308aadc9d91f51733f08e", + "title": "2024-04-11 七十二家房客:沽名钓誉(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/7f354a925494d02af8bfabe855a86ca7.jpg", + "contentType": 3, + "releasedAt": 1712842338000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171284840939.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "187bcfd3da55dfb20a04101d6a25359b", + "title": "2024-04-11 七十二家房客:沽名钓誉(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/447b68a0a56759e8e635e2c41d098107.jpg", + "releasedAt": 1712840400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171284841517.m3u8", + "raw": { + "id": "187bcfd3da55dfb20a04101d6a25359b", + "title": "2024-04-11 七十二家房客:沽名钓誉(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/447b68a0a56759e8e635e2c41d098107.jpg", + "contentType": 3, + "releasedAt": 1712840400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171284841517.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2a3687bd2c16508b1c63d0a6dfb2b97b", + "title": "2024-04-10 七十二家房客:夺命船(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/da6beb8862a7f8f1d6a4e57c2efc8c64.jpg", + "releasedAt": 1712755925000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171276078996.m3u8", + "raw": { + "id": "2a3687bd2c16508b1c63d0a6dfb2b97b", + "title": "2024-04-10 七十二家房客:夺命船(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/da6beb8862a7f8f1d6a4e57c2efc8c64.jpg", + "contentType": 3, + "releasedAt": 1712755925000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171276078996.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "06a4e9bdb492f269590015a4b58546d9", + "title": "2024-04-10 七十二家房客:夺命船(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/24bc90c68ca5a712f0cffb037ec285c9.jpg", + "releasedAt": 1712754000000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171276079044.m3u8", + "raw": { + "id": "06a4e9bdb492f269590015a4b58546d9", + "title": "2024-04-10 七十二家房客:夺命船(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/24bc90c68ca5a712f0cffb037ec285c9.jpg", + "contentType": 3, + "releasedAt": 1712754000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171276079044.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "26b6eb93a8bbec32be4df7c4a6d9d6a8", + "title": "2024-04-09 七十二家房客:炳的宴席", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/1ed9402a0374411639fb7900df6811b0.jpg", + "releasedAt": 1712669469000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171267570550.m3u8", + "raw": { + "id": "26b6eb93a8bbec32be4df7c4a6d9d6a8", + "title": "2024-04-09 七十二家房客:炳的宴席", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/1ed9402a0374411639fb7900df6811b0.jpg", + "contentType": 3, + "releasedAt": 1712669469000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171267570550.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "25b3515b80c9e4266623f40bf071af23", + "title": "2024-04-09 七十二家房客:一笔私藏钱", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/aa43605d91428e562fda5510b8f85755.jpg", + "releasedAt": 1712667600000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171267570228.m3u8", + "raw": { + "id": "25b3515b80c9e4266623f40bf071af23", + "title": "2024-04-09 七十二家房客:一笔私藏钱", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/aa43605d91428e562fda5510b8f85755.jpg", + "contentType": 3, + "releasedAt": 1712667600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171267570228.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ca284c14796cbd65bac84f53501b815c", + "title": "2024-04-08 七十二家房客:不请自来(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/a1faa97639f4532b0b6367a6b27a8c97.jpg", + "releasedAt": 1712583089000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171259341528.m3u8", + "raw": { + "id": "ca284c14796cbd65bac84f53501b815c", + "title": "2024-04-08 七十二家房客:不请自来(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/a1faa97639f4532b0b6367a6b27a8c97.jpg", + "contentType": 3, + "releasedAt": 1712583089000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171259341528.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0c4a39c9b63490986078b823a47c1e37", + "title": "2024-04-08 七十二家房客:不请自来(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f562bdac904db6467c866364c7cd77d9.jpg", + "releasedAt": 1712581200000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171259340051.m3u8", + "raw": { + "id": "0c4a39c9b63490986078b823a47c1e37", + "title": "2024-04-08 七十二家房客:不请自来(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/f562bdac904db6467c866364c7cd77d9.jpg", + "contentType": 3, + "releasedAt": 1712581200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171259340051.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a3f8d510a6b962232fb7b8a0ec660e3a", + "title": "2024-04-07 七十二家房客:匹配者(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/30911e817c9db66bcffbbb66e6736dac.jpg", + "releasedAt": 1712496439000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171250377133.m3u8", + "raw": { + "id": "a3f8d510a6b962232fb7b8a0ec660e3a", + "title": "2024-04-07 七十二家房客:匹配者(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/30911e817c9db66bcffbbb66e6736dac.jpg", + "contentType": 3, + "releasedAt": 1712496439000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171250377133.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c4ddf16bcfc65d53d8033b8d3119f526", + "title": "2024-04-07 七十二家房客:匹配者(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/50644c7ebced388a42b32152073fd516.jpg", + "releasedAt": 1712494800000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171250382371.m3u8", + "raw": { + "id": "c4ddf16bcfc65d53d8033b8d3119f526", + "title": "2024-04-07 七十二家房客:匹配者(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/50644c7ebced388a42b32152073fd516.jpg", + "contentType": 3, + "releasedAt": 1712494800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171250382371.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2003683b954749d29546fc485142c467", + "title": "2024-04-06 七十二家房客:有惊无险(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/fcf182fefaf7987a329c422c997524bb.jpg", + "releasedAt": 1712408400000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171241651149.m3u8", + "raw": { + "id": "2003683b954749d29546fc485142c467", + "title": "2024-04-06 七十二家房客:有惊无险(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/fcf182fefaf7987a329c422c997524bb.jpg", + "contentType": 3, + "releasedAt": 1712408400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171241651149.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "63ba47f023ec3e4430a6b100c98b5d42", + "title": "2024-04-06 七十二家房客:有惊无险(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/fc874b0d864399d65360598ffa63005f.jpg", + "releasedAt": 1712408400000, + "timeLength": 1333, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171241654278.m3u8", + "raw": { + "id": "63ba47f023ec3e4430a6b100c98b5d42", + "title": "2024-04-06 七十二家房客:有惊无险(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/fc874b0d864399d65360598ffa63005f.jpg", + "contentType": 3, + "releasedAt": 1712408400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171241654278.m3u8\"}", + "timeLength": 1333, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d7b154031b16dfa095fddf330cc6d815", + "title": "2024-04-05 七十二家房客:八姑酸梅鹅", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/71401291046511ad1e7537ac8ae6d319.jpg", + "releasedAt": 1712322000000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171233100678.m3u8", + "raw": { + "id": "d7b154031b16dfa095fddf330cc6d815", + "title": "2024-04-05 七十二家房客:八姑酸梅鹅", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/71401291046511ad1e7537ac8ae6d319.jpg", + "contentType": 3, + "releasedAt": 1712322000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171233100678.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "af8cb19bb675568d0297c8cfadab5f7c", + "title": "2024-04-05 七十二家房客:服旧如新", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/20bee83a49052c84223ed10681602a84.jpg", + "releasedAt": 1712322000000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171233097875.m3u8", + "raw": { + "id": "af8cb19bb675568d0297c8cfadab5f7c", + "title": "2024-04-05 七十二家房客:服旧如新", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/20bee83a49052c84223ed10681602a84.jpg", + "contentType": 3, + "releasedAt": 1712322000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171233097875.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ec0102cec43c659865ad4786b6c599c4", + "title": "2024-04-04 七十二家房客:情暖童心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/09dd70ffd4669b93169f6903b52f0698.jpg", + "releasedAt": 1712237473000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171225369346.m3u8", + "raw": { + "id": "ec0102cec43c659865ad4786b6c599c4", + "title": "2024-04-04 七十二家房客:情暖童心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/09dd70ffd4669b93169f6903b52f0698.jpg", + "contentType": 3, + "releasedAt": 1712237473000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171225369346.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c7beb037d9bf23bd3f92bc0d229219f6", + "title": "2024-04-04 七十二家房客:情暖童心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/6c5d286487694ec832dbbfb738f86e45.jpg", + "releasedAt": 1712235600000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171225369544.m3u8", + "raw": { + "id": "c7beb037d9bf23bd3f92bc0d229219f6", + "title": "2024-04-04 七十二家房客:情暖童心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/6c5d286487694ec832dbbfb738f86e45.jpg", + "contentType": 3, + "releasedAt": 1712235600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171225369544.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d836d0049471b71fe17f4cc7dc08d7df", + "title": "2024-04-02 七十二家房客:失踪的阿香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/96c8b30f76e3fa11d69d386344128fdd.jpg", + "releasedAt": 1712151075000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171215826915.m3u8", + "raw": { + "id": "d836d0049471b71fe17f4cc7dc08d7df", + "title": "2024-04-02 七十二家房客:失踪的阿香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/96c8b30f76e3fa11d69d386344128fdd.jpg", + "contentType": 3, + "releasedAt": 1712151075000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171215826915.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8b7587950f8583a5d34507a3d6678de7", + "title": "2024-04-02 七十二家房客:失踪的阿香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/2200b0ed82eb3cae92156c1fdcea14ce.jpg", + "releasedAt": 1712149200000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171215824974.m3u8", + "raw": { + "id": "8b7587950f8583a5d34507a3d6678de7", + "title": "2024-04-02 七十二家房客:失踪的阿香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/2200b0ed82eb3cae92156c1fdcea14ce.jpg", + "contentType": 3, + "releasedAt": 1712149200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171215824974.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1c055f8d6f2808df79af4b331d5cd024", + "title": "2024-04-02 七十二家房客:顾家女人", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/0c8fca1c07fe389bd0464421811873db.jpg", + "releasedAt": 1712064670000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171207274924.m3u8", + "raw": { + "id": "1c055f8d6f2808df79af4b331d5cd024", + "title": "2024-04-02 七十二家房客:顾家女人", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/0c8fca1c07fe389bd0464421811873db.jpg", + "contentType": 3, + "releasedAt": 1712064670000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171207274924.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4d3e00178957c8bc7d8f9a93f03490d4", + "title": "2024-04-02 七十二家房客:荷兰水", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/85c0a03fc374395e76ec58975e9cc391.jpg", + "releasedAt": 1712062800000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171207275772.m3u8", + "raw": { + "id": "4d3e00178957c8bc7d8f9a93f03490d4", + "title": "2024-04-02 七十二家房客:荷兰水", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/85c0a03fc374395e76ec58975e9cc391.jpg", + "contentType": 3, + "releasedAt": 1712062800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171207275772.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "57331fbd40de3908daf65367266a91d3", + "title": "2024-04-01 七十二家房客:寻人启事(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/de1bccf9228c2e46aa6f639164ee22c8.jpg", + "releasedAt": 1711978265000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171198970973.m3u8", + "raw": { + "id": "57331fbd40de3908daf65367266a91d3", + "title": "2024-04-01 七十二家房客:寻人启事(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/de1bccf9228c2e46aa6f639164ee22c8.jpg", + "contentType": 3, + "releasedAt": 1711978265000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171198970973.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "976b7ebdea19a95b932a2bfadae7f0ec", + "title": "2024-04-01 七十二家房客:寻人启事(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/d6d886b29dda00a66fb14338927a1eab.jpg", + "releasedAt": 1711976400000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171198970912.m3u8", + "raw": { + "id": "976b7ebdea19a95b932a2bfadae7f0ec", + "title": "2024-04-01 七十二家房客:寻人启事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/04/d6d886b29dda00a66fb14338927a1eab.jpg", + "contentType": 3, + "releasedAt": 1711976400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171198970912.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0d616350b5f2523964e2673ea54063f7", + "title": "2024-03-31 七十二家房客:无畏(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/20bb778efa7dfd4d7930044844426f44.jpg", + "releasedAt": 1711890000000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171189524327.m3u8", + "raw": { + "id": "0d616350b5f2523964e2673ea54063f7", + "title": "2024-03-31 七十二家房客:无畏(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/20bb778efa7dfd4d7930044844426f44.jpg", + "contentType": 3, + "releasedAt": 1711890000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171189524327.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5245701cfc0f40507811d3d86f2d6894", + "title": "2024-03-31 七十二家房客:无畏(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/83dc4b3a15c64064eff4b13f0715dc9e.jpg", + "releasedAt": 1711890000000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171189722326.m3u8", + "raw": { + "id": "5245701cfc0f40507811d3d86f2d6894", + "title": "2024-03-31 七十二家房客:无畏(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/83dc4b3a15c64064eff4b13f0715dc9e.jpg", + "contentType": 3, + "releasedAt": 1711890000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171189722326.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e250abf3e2c2d919e9816f4be8daba43", + "title": "2024-03-30 七十二家房客:我有压力(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/3d83a092b7d2489fbc06d3ded933c17e.jpg", + "releasedAt": 1711805202000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171181552634.m3u8", + "raw": { + "id": "e250abf3e2c2d919e9816f4be8daba43", + "title": "2024-03-30 七十二家房客:我有压力(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/3d83a092b7d2489fbc06d3ded933c17e.jpg", + "contentType": 3, + "releasedAt": 1711805202000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171181552634.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2b45e67f7402de853972852e770042cf", + "title": "2024-03-30 七十二家房客:我有压力(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7cb1e7457c1bd811050eb997195a0015.jpg", + "releasedAt": 1711803600000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171181541756.m3u8", + "raw": { + "id": "2b45e67f7402de853972852e770042cf", + "title": "2024-03-30 七十二家房客:我有压力(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7cb1e7457c1bd811050eb997195a0015.jpg", + "contentType": 3, + "releasedAt": 1711803600000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171181541756.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b169cf1ef5dbbe57f8f5574dd582c1db", + "title": "2024-03-29 七十二家房客:人穷志不短", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/d5b7901e6d6157df24ce988c26f6c201.jpg", + "releasedAt": 1711719058000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171172728432.m3u8", + "raw": { + "id": "b169cf1ef5dbbe57f8f5574dd582c1db", + "title": "2024-03-29 七十二家房客:人穷志不短", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/d5b7901e6d6157df24ce988c26f6c201.jpg", + "contentType": 3, + "releasedAt": 1711719058000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171172728432.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b9a8aaf0324574779445a2a4c68d1a25", + "title": "2024-03-29 七十二家房客:我要阿香", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/718ef83f844d238e9c443ce7714a1ed4.jpg", + "releasedAt": 1711717200000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171172729673.m3u8", + "raw": { + "id": "b9a8aaf0324574779445a2a4c68d1a25", + "title": "2024-03-29 七十二家房客:我要阿香", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/718ef83f844d238e9c443ce7714a1ed4.jpg", + "contentType": 3, + "releasedAt": 1711717200000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171172729673.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5194c3c724b05eb4d918b88a35ded019", + "title": "2024-03-28 七十二家房客:女学徒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/fba6d793a6930cc1d367261173c93f95.jpg", + "releasedAt": 1711632664000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171163955096.m3u8", + "raw": { + "id": "5194c3c724b05eb4d918b88a35ded019", + "title": "2024-03-28 七十二家房客:女学徒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/fba6d793a6930cc1d367261173c93f95.jpg", + "contentType": 3, + "releasedAt": 1711632664000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171163955096.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4373cae980f5394befb6613cf7821154", + "title": "2024-03-28 七十二家房客:女学徒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/c64a0e2c2d5ab02480852eff8a474c08.jpg", + "releasedAt": 1711630800000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171163954942.m3u8", + "raw": { + "id": "4373cae980f5394befb6613cf7821154", + "title": "2024-03-28 七十二家房客:女学徒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/c64a0e2c2d5ab02480852eff8a474c08.jpg", + "contentType": 3, + "releasedAt": 1711630800000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171163954942.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1dbbe3029be071da14fe973b180aa2c9", + "title": "2024-03-27 七十二家房客:返工啦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/56b859699707b4ef33764bc454c2e867.jpg", + "releasedAt": 1711546269000, + "timeLength": 1258, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171155307564.m3u8", + "raw": { + "id": "1dbbe3029be071da14fe973b180aa2c9", + "title": "2024-03-27 七十二家房客:返工啦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/56b859699707b4ef33764bc454c2e867.jpg", + "contentType": 3, + "releasedAt": 1711546269000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171155307564.m3u8\"}", + "timeLength": 1258, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b4c7752b1f34b26c2ba4e26c8fa38f69", + "title": "2024-03-27 七十二家房客:返工啦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7fc168a7deec4b223323c35ae5201b73.jpg", + "releasedAt": 1711544400000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171155308674.m3u8", + "raw": { + "id": "b4c7752b1f34b26c2ba4e26c8fa38f69", + "title": "2024-03-27 七十二家房客:返工啦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7fc168a7deec4b223323c35ae5201b73.jpg", + "contentType": 3, + "releasedAt": 1711544400000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171155308674.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7e9b5237382f871b9f33b6a714118ad9", + "title": "2024-03-26 七十二家房客:婆媳怨(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4fac01349ae7858cc88edd45fb3460d6.jpg", + "releasedAt": 1711459860000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171146781721.m3u8", + "raw": { + "id": "7e9b5237382f871b9f33b6a714118ad9", + "title": "2024-03-26 七十二家房客:婆媳怨(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4fac01349ae7858cc88edd45fb3460d6.jpg", + "contentType": 3, + "releasedAt": 1711459860000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171146781721.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fe78fd9be92cd8c402cabf1a3857f6e1", + "title": "2024-03-26 七十二家房客:婆媳怨(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/9c5801f36cd3975d6301d8969a1c2fda.jpg", + "releasedAt": 1711458419000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171146781828.m3u8", + "raw": { + "id": "fe78fd9be92cd8c402cabf1a3857f6e1", + "title": "2024-03-26 七十二家房客:婆媳怨(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/9c5801f36cd3975d6301d8969a1c2fda.jpg", + "contentType": 3, + "releasedAt": 1711458419000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171146781828.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1145a6a45a5ddb59642f48322dca5a49", + "title": "2024-03-25 七十二家房客:暗度(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/f7e23913331b1b5dfac62224487c106e.jpg", + "releasedAt": 1711373430000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171138119720.m3u8", + "raw": { + "id": "1145a6a45a5ddb59642f48322dca5a49", + "title": "2024-03-25 七十二家房客:暗度(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/f7e23913331b1b5dfac62224487c106e.jpg", + "contentType": 3, + "releasedAt": 1711373430000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171138119720.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cbb5c1a5d794517ca4bd5d937987adbb", + "title": "2024-03-25 七十二家房客:暗度(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/5d8d78ebfade4d3206e2e7a1ede5149e.jpg", + "releasedAt": 1711372007000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171138119653.m3u8", + "raw": { + "id": "cbb5c1a5d794517ca4bd5d937987adbb", + "title": "2024-03-25 七十二家房客:暗度(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/5d8d78ebfade4d3206e2e7a1ede5149e.jpg", + "contentType": 3, + "releasedAt": 1711372007000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171138119653.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "17b11e8ba2663dc44508c588829003c7", + "title": "2024-03-24 七十二家房客:间谍之王(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/358d66f38e091a1d05076f4a49cf2d8a.jpg", + "releasedAt": 1711286907000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171129111415.m3u8", + "raw": { + "id": "17b11e8ba2663dc44508c588829003c7", + "title": "2024-03-24 七十二家房客:间谍之王(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/358d66f38e091a1d05076f4a49cf2d8a.jpg", + "contentType": 3, + "releasedAt": 1711286907000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171129111415.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "29751dc822b15c3abec3c4130dc22a6b", + "title": "2024-03-24 七十二家房客:间谍之王(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/2c50f6b65bf1a83183d5617128220d46.jpg", + "releasedAt": 1711285292000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171129109784.m3u8", + "raw": { + "id": "29751dc822b15c3abec3c4130dc22a6b", + "title": "2024-03-24 七十二家房客:间谍之王(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/2c50f6b65bf1a83183d5617128220d46.jpg", + "contentType": 3, + "releasedAt": 1711285292000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171129109784.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8caf2304747fd23ee58caaa559c4728a", + "title": "2024-03-23 七十二家房客:老公的事(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/cda219ad40c6d391144b00996883e226.jpg", + "releasedAt": 1711200372000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171120983435.m3u8", + "raw": { + "id": "8caf2304747fd23ee58caaa559c4728a", + "title": "2024-03-23 七十二家房客:老公的事(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/cda219ad40c6d391144b00996883e226.jpg", + "contentType": 3, + "releasedAt": 1711200372000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171120983435.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "97fbc3b429e484e5210561e991bfc68e", + "title": "2024-03-23 七十二家房客:老公的事(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2024/03/1184fa94f53824e487d4dfd76da9965e.png", + "releasedAt": 1711198856000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171120984064.m3u8", + "raw": { + "id": "97fbc3b429e484e5210561e991bfc68e", + "title": "2024-03-23 七十二家房客:老公的事(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2024/03/1184fa94f53824e487d4dfd76da9965e.png", + "contentType": 3, + "releasedAt": 1711198856000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171120984064.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0f051413c8e79194f71cff5299d9a617", + "title": "2024-03-22 七十二家房客:悲惨世界(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/53c5dd82c86a08519014d0c271cbfcf5.jpg", + "releasedAt": 1711114248000, + "timeLength": 1265, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171112140278.m3u8", + "raw": { + "id": "0f051413c8e79194f71cff5299d9a617", + "title": "2024-03-22 七十二家房客:悲惨世界(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/53c5dd82c86a08519014d0c271cbfcf5.jpg", + "contentType": 3, + "releasedAt": 1711114248000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171112140278.m3u8\"}", + "timeLength": 1265, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a0d0ebc1998e6348540a54df34dc8336", + "title": "2024-03-22 七十二家房客:悲惨世界(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/21db26ef9ddc583ff969833a49e59b9d.jpg", + "releasedAt": 1711112807000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171112131593.m3u8", + "raw": { + "id": "a0d0ebc1998e6348540a54df34dc8336", + "title": "2024-03-22 七十二家房客:悲惨世界(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/21db26ef9ddc583ff969833a49e59b9d.jpg", + "contentType": 3, + "releasedAt": 1711112807000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171112131593.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3937efd8c991821bdb6707d5bf412cec", + "title": "2024-03-21 七十二家房客:白云猪手(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/e50b6fef2d5979d560813299651e08e2.jpg", + "releasedAt": 1711027838000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171103356664.m3u8", + "raw": { + "id": "3937efd8c991821bdb6707d5bf412cec", + "title": "2024-03-21 七十二家房客:白云猪手(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/e50b6fef2d5979d560813299651e08e2.jpg", + "contentType": 3, + "releasedAt": 1711027838000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171103356664.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b2b8ca27aa38116966e6881510da1bc2", + "title": "2024-03-21 七十二家房客:白云猪手(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/f38fbe457096239cae730e350dd339ee.jpg", + "releasedAt": 1711026406000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202404/171103356639.m3u8", + "raw": { + "id": "b2b8ca27aa38116966e6881510da1bc2", + "title": "2024-03-21 七十二家房客:白云猪手(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/f38fbe457096239cae730e350dd339ee.jpg", + "contentType": 3, + "releasedAt": 1711026406000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202404/171103356639.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "db7b66f8d34c5a136a9d99f6694dfb23", + "title": "2024-03-20 七十二家房客:自灸", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7b53c71f455e9116efe4c7881a09d09a.jpg", + "releasedAt": 1710941438000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171094732997.m3u8", + "raw": { + "id": "db7b66f8d34c5a136a9d99f6694dfb23", + "title": "2024-03-20 七十二家房客:自灸", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7b53c71f455e9116efe4c7881a09d09a.jpg", + "contentType": 3, + "releasedAt": 1710941438000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171094732997.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "018576dbb7df745dfaffd769f87dbcab", + "title": "2024-03-20 七十二家房客:绵羊发威", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/de607a5ce9fc53564c25be50b4dad348.jpg", + "releasedAt": 1710940000000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171094733432.m3u8", + "raw": { + "id": "018576dbb7df745dfaffd769f87dbcab", + "title": "2024-03-20 七十二家房客:绵羊发威", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/de607a5ce9fc53564c25be50b4dad348.jpg", + "contentType": 3, + "releasedAt": 1710940000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171094733432.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "df86b80dd8b83d0ceaa9b2eff22db4c0", + "title": "2024-03-19 七十二家房客:大炮禄(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4f7aeb0f508695aacb973a20c89c1fac.jpg", + "releasedAt": 1710855037000, + "timeLength": 1261, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171086306428.m3u8", + "raw": { + "id": "df86b80dd8b83d0ceaa9b2eff22db4c0", + "title": "2024-03-19 七十二家房客:大炮禄(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4f7aeb0f508695aacb973a20c89c1fac.jpg", + "contentType": 3, + "releasedAt": 1710855037000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171086306428.m3u8\"}", + "timeLength": 1261, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1961a77c24e15b518bceaea262c638af", + "title": "2024-03-19 七十二家房客:大炮禄(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/c1b16f766c1a1dad54e71ffb1b107522.jpg", + "releasedAt": 1710853596000, + "timeLength": 1346, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171086306236.m3u8", + "raw": { + "id": "1961a77c24e15b518bceaea262c638af", + "title": "2024-03-19 七十二家房客:大炮禄(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/c1b16f766c1a1dad54e71ffb1b107522.jpg", + "contentType": 3, + "releasedAt": 1710853596000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171086306236.m3u8\"}", + "timeLength": 1346, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5b8107ae0ec6f67f85a9f53f3b303f89", + "title": "2024-03-18 七十二家房客:销赃(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/c3ef8b60b79f720672f2e4ef07f83b07.jpg", + "releasedAt": 1710768624000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171077402096.m3u8", + "raw": { + "id": "5b8107ae0ec6f67f85a9f53f3b303f89", + "title": "2024-03-18 七十二家房客:销赃(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/c3ef8b60b79f720672f2e4ef07f83b07.jpg", + "contentType": 3, + "releasedAt": 1710768624000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171077402096.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "199beb0ff8e6f662a6fc758388936fc5", + "title": "2024-03-18 七十二家房客:销赃(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/6d7315753ef50dfe2c5adbbd05795d82.jpg", + "releasedAt": 1710767204000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171077402364.m3u8", + "raw": { + "id": "199beb0ff8e6f662a6fc758388936fc5", + "title": "2024-03-18 七十二家房客:销赃(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/6d7315753ef50dfe2c5adbbd05795d82.jpg", + "contentType": 3, + "releasedAt": 1710767204000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171077402364.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d97ebf836ff38b51747b012c50aea3a9", + "title": "2024-03-17 七十二家房客:新爸爸的烦恼(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/542ef493e293fa4e80ad9a16ccaee16d.jpg", + "releasedAt": 1710682091000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171068906679.m3u8", + "raw": { + "id": "d97ebf836ff38b51747b012c50aea3a9", + "title": "2024-03-17 七十二家房客:新爸爸的烦恼(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/542ef493e293fa4e80ad9a16ccaee16d.jpg", + "contentType": 3, + "releasedAt": 1710682091000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171068906679.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b2f8218bed03d693c44da970866de98a", + "title": "2024-03-17 七十二家房客:新爸爸的烦恼(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/22b4ca5dbe41bfeda7008994347d0d68.jpg", + "releasedAt": 1710680507000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171068909051.m3u8", + "raw": { + "id": "b2f8218bed03d693c44da970866de98a", + "title": "2024-03-17 七十二家房客:新爸爸的烦恼(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/22b4ca5dbe41bfeda7008994347d0d68.jpg", + "contentType": 3, + "releasedAt": 1710680507000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171068909051.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2165e6aa1c39ad36716655c2ee33581e", + "title": "2024-03-16 七十二家房客:灵媒奇案(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/f1fc97ae967e1fe60a1df26c0ae33d60.jpg", + "releasedAt": 1710595578000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171060491384.m3u8", + "raw": { + "id": "2165e6aa1c39ad36716655c2ee33581e", + "title": "2024-03-16 七十二家房客:灵媒奇案(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/f1fc97ae967e1fe60a1df26c0ae33d60.jpg", + "contentType": 3, + "releasedAt": 1710595578000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171060491384.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e2747b2d61616efa797c963e7c256f69", + "title": "2024-03-16 七十二家房客:灵媒奇案(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/74168fd3d671c3d80f856e3403585229.jpg", + "releasedAt": 1710594062000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171060486733.m3u8", + "raw": { + "id": "e2747b2d61616efa797c963e7c256f69", + "title": "2024-03-16 七十二家房客:灵媒奇案(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/74168fd3d671c3d80f856e3403585229.jpg", + "contentType": 3, + "releasedAt": 1710594062000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171060486733.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c030f5ac77766bed15d09010c2b9840a", + "title": "2024-03-15 七十二家房客:泥潭记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/50eacbe9b8bd1022079bd25280e80f2c.jpg", + "releasedAt": 1710509433000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171051765220.m3u8", + "raw": { + "id": "c030f5ac77766bed15d09010c2b9840a", + "title": "2024-03-15 七十二家房客:泥潭记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/50eacbe9b8bd1022079bd25280e80f2c.jpg", + "contentType": 3, + "releasedAt": 1710509433000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171051765220.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7f94ed7aa204daed314eacdbcf13d42c", + "title": "2024-03-15 七十二家房客:泥潭记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4de0be36a250f56d83629c7187f874a8.jpg", + "releasedAt": 1710507989000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171051773211.m3u8", + "raw": { + "id": "7f94ed7aa204daed314eacdbcf13d42c", + "title": "2024-03-15 七十二家房客:泥潭记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4de0be36a250f56d83629c7187f874a8.jpg", + "contentType": 3, + "releasedAt": 1710507989000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171051773211.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a500788b78c197b0a1a284e7bc69bcea", + "title": "2024-03-14 七十二家房客:十月螺肉香(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/fde133b1842af9d3225f8a62cf008367.jpg", + "releasedAt": 1710423054000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171046750097.m3u8", + "raw": { + "id": "a500788b78c197b0a1a284e7bc69bcea", + "title": "2024-03-14 七十二家房客:十月螺肉香(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/fde133b1842af9d3225f8a62cf008367.jpg", + "contentType": 3, + "releasedAt": 1710423054000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171046750097.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e8d0264a1ae69f470aa1f83a58af8202", + "title": "2024-03-14 七十二家房客:十月螺肉香(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/8030317a5312c900454a0266a88d2e19.jpg", + "releasedAt": 1710421604000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171046749147.m3u8", + "raw": { + "id": "e8d0264a1ae69f470aa1f83a58af8202", + "title": "2024-03-14 七十二家房客:十月螺肉香(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/8030317a5312c900454a0266a88d2e19.jpg", + "contentType": 3, + "releasedAt": 1710421604000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171046749147.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "91149425dea1e22c3d1aa8b80de2e554", + "title": "2024-03-13 七十二家房客:取之有道(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/1b5230d70554f30a239ffaac67e68e57.jpg", + "releasedAt": 1710336658000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171034267394.m3u8", + "raw": { + "id": "91149425dea1e22c3d1aa8b80de2e554", + "title": "2024-03-13 七十二家房客:取之有道(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/1b5230d70554f30a239ffaac67e68e57.jpg", + "contentType": 3, + "releasedAt": 1710336658000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171034267394.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2611a07d284bd314f43230b4003385a7", + "title": "2024-03-12 七十二家房客:苦肉计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/6ff29872013511aea0772909996a1fe9.jpg", + "releasedAt": 1710250221000, + "timeLength": 1278, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171028927721.m3u8", + "raw": { + "id": "2611a07d284bd314f43230b4003385a7", + "title": "2024-03-12 七十二家房客:苦肉计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/6ff29872013511aea0772909996a1fe9.jpg", + "contentType": 3, + "releasedAt": 1710250221000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171028927721.m3u8\"}", + "timeLength": 1278, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cd9cfd61f0871007ceb09d63e169036c", + "title": "2024-03-12 七十二家房客:苦肉计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/d4fd427e80807fb1dff5ef61b0b856a1.jpg", + "releasedAt": 1710248784000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171028925664.m3u8", + "raw": { + "id": "cd9cfd61f0871007ceb09d63e169036c", + "title": "2024-03-12 七十二家房客:苦肉计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/d4fd427e80807fb1dff5ef61b0b856a1.jpg", + "contentType": 3, + "releasedAt": 1710248784000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171028925664.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "73705bbccbff2ba96a4c16c919f300d2", + "title": "2024-03-11 七十二家房客:红鸡蛋与合卺酒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/821d3d84c3f510f97d813577d8a33e23.jpg", + "releasedAt": 1710163839000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171016935017.m3u8", + "raw": { + "id": "73705bbccbff2ba96a4c16c919f300d2", + "title": "2024-03-11 七十二家房客:红鸡蛋与合卺酒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/821d3d84c3f510f97d813577d8a33e23.jpg", + "contentType": 3, + "releasedAt": 1710163839000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171016935017.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "56ab928f550af92a5e6cdbe2c8860a96", + "title": "2024-03-11 七十二家房客:红鸡蛋与合卺酒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4e378a1e6ff65c806c9ad957b4cec15b.jpg", + "releasedAt": 1710162388000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171016923742.m3u8", + "raw": { + "id": "56ab928f550af92a5e6cdbe2c8860a96", + "title": "2024-03-11 七十二家房客:红鸡蛋与合卺酒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/4e378a1e6ff65c806c9ad957b4cec15b.jpg", + "contentType": 3, + "releasedAt": 1710162388000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171016923742.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2a1c2f74425b60767841cb619f12e9e3", + "title": "2024-03-10 七十二家房客:身份之谜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/06a144830bce643fa75ba147a017454e.jpg", + "releasedAt": 1710077280000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171008294229.m3u8", + "raw": { + "id": "2a1c2f74425b60767841cb619f12e9e3", + "title": "2024-03-10 七十二家房客:身份之谜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/06a144830bce643fa75ba147a017454e.jpg", + "contentType": 3, + "releasedAt": 1710077280000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171008294229.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7c8a72c2245013ba5279a5e88782b6c3", + "title": "2024-03-10 七十二家房客:身份之谜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7e5cd73c561c320024118e4960e84e48.jpg", + "releasedAt": 1710075667000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/171008294257.m3u8", + "raw": { + "id": "7c8a72c2245013ba5279a5e88782b6c3", + "title": "2024-03-10 七十二家房客:身份之谜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7e5cd73c561c320024118e4960e84e48.jpg", + "contentType": 3, + "releasedAt": 1710075667000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/171008294257.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b5fe95b14d0714390f45496e11b729c7", + "title": "2024-03-09 七十二家房客:孙锦珍的报复(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/49dc8aa018606d7e26e05f360dd822ca.jpg", + "releasedAt": 1709990787000, + "timeLength": 1272, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170999947987.m3u8", + "raw": { + "id": "b5fe95b14d0714390f45496e11b729c7", + "title": "2024-03-09 七十二家房客:孙锦珍的报复(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/49dc8aa018606d7e26e05f360dd822ca.jpg", + "contentType": 3, + "releasedAt": 1709990787000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170999947987.m3u8\"}", + "timeLength": 1272, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3b092fe3a50dccb3a12875a1e9d028ce", + "title": "2024-03-09 七十二家房客:孙锦珍的报复(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/d97b3e00944e7fbca67012191e8b22ac.jpg", + "releasedAt": 1709989286000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170999950695.m3u8", + "raw": { + "id": "3b092fe3a50dccb3a12875a1e9d028ce", + "title": "2024-03-09 七十二家房客:孙锦珍的报复(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/d97b3e00944e7fbca67012191e8b22ac.jpg", + "contentType": 3, + "releasedAt": 1709989286000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170999950695.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cf58874b4e180c6daf4a858b1016058c", + "title": "2024-03-08 七十二家房客:孙锦珍的报复(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/1d5f58f3be91c104b3b8f0cb0e19c361.jpg", + "releasedAt": 1709904653000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170991346976.m3u8", + "raw": { + "id": "cf58874b4e180c6daf4a858b1016058c", + "title": "2024-03-08 七十二家房客:孙锦珍的报复(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/1d5f58f3be91c104b3b8f0cb0e19c361.jpg", + "contentType": 3, + "releasedAt": 1709904653000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170991346976.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a37916a11bb8c46aa120735c3fb78707", + "title": "2024-03-08 七十二家房客:孙锦珍的报复(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7ff77a67a49615c850063c3c96071352.jpg", + "releasedAt": 1709903203000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170991351832.m3u8", + "raw": { + "id": "a37916a11bb8c46aa120735c3fb78707", + "title": "2024-03-08 七十二家房客:孙锦珍的报复(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7ff77a67a49615c850063c3c96071352.jpg", + "contentType": 3, + "releasedAt": 1709903203000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170991351832.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "793658e7eab336216fd044b91a0b0c58", + "title": "2024-03-07 七十二家房客:猪脚姜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/61382bc76c9aade5def9e5588ce1e59a.jpg", + "releasedAt": 1709818248000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170982393484.m3u8", + "raw": { + "id": "793658e7eab336216fd044b91a0b0c58", + "title": "2024-03-07 七十二家房客:猪脚姜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/61382bc76c9aade5def9e5588ce1e59a.jpg", + "contentType": 3, + "releasedAt": 1709818248000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170982393484.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bd4f09310bbe3c65090a4fd492ddb7f6", + "title": "2024-03-07 七十二家房客:猪脚姜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/0f6f280f7fc28109004f21fc42df278a.jpg", + "releasedAt": 1709816810000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170982394666.m3u8", + "raw": { + "id": "bd4f09310bbe3c65090a4fd492ddb7f6", + "title": "2024-03-07 七十二家房客:猪脚姜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/0f6f280f7fc28109004f21fc42df278a.jpg", + "contentType": 3, + "releasedAt": 1709816810000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170982394666.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bcea7a253b843be7ade3b9ce3fbe573e", + "title": "2024-03-06 七十二家房客:乌龙产子记(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/3dad3d811897f1e91853abc913296242.jpg", + "releasedAt": 1709731807000, + "timeLength": 1267, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170974489241.m3u8", + "raw": { + "id": "bcea7a253b843be7ade3b9ce3fbe573e", + "title": "2024-03-06 七十二家房客:乌龙产子记(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/3dad3d811897f1e91853abc913296242.jpg", + "contentType": 3, + "releasedAt": 1709731807000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170974489241.m3u8\"}", + "timeLength": 1267, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "69f712e27dbeaf27a4b876f21d97ed12", + "title": "2024-03-06 七十二家房客:乌龙产子记(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/76804436d0de50fd66370fbc952dd8f5.jpg", + "releasedAt": 1709730384000, + "timeLength": 1328, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170974490030.m3u8", + "raw": { + "id": "69f712e27dbeaf27a4b876f21d97ed12", + "title": "2024-03-06 七十二家房客:乌龙产子记(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/76804436d0de50fd66370fbc952dd8f5.jpg", + "contentType": 3, + "releasedAt": 1709730384000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170974490030.m3u8\"}", + "timeLength": 1328, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b8e16f68182220bbb5f43f7fdfc6dc75", + "title": "2024-03-05 七十二家房客:撬墙角(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/04e30521da748b556ca1003d24ea2465.jpg", + "releasedAt": 1709645448000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170965208839.m3u8", + "raw": { + "id": "b8e16f68182220bbb5f43f7fdfc6dc75", + "title": "2024-03-05 七十二家房客:撬墙角(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/04e30521da748b556ca1003d24ea2465.jpg", + "contentType": 3, + "releasedAt": 1709645448000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170965208839.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "67fe1c626eb70bee613af82f3ca54834", + "title": "2024-03-05 七十二家房客:撬墙角(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7b0d3cdf6e0fe248e4b1be709b4a6c0b.jpg", + "releasedAt": 1709643997000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170965210468.m3u8", + "raw": { + "id": "67fe1c626eb70bee613af82f3ca54834", + "title": "2024-03-05 七十二家房客:撬墙角(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/7b0d3cdf6e0fe248e4b1be709b4a6c0b.jpg", + "contentType": 3, + "releasedAt": 1709643997000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170965210468.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "25162e1a64b4c41d3acca5a330a3f95a", + "title": "2024-03-04 七十二家房客:人善被人欺", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/ead953739871fb0c7075f1a7ba54ee29.jpg", + "releasedAt": 1709559052000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202403/170956708139.m3u8", + "raw": { + "id": "25162e1a64b4c41d3acca5a330a3f95a", + "title": "2024-03-04 七十二家房客:人善被人欺", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2024/03/ead953739871fb0c7075f1a7ba54ee29.jpg", + "contentType": 3, + "releasedAt": 1709559052000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202403/170956708139.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ae3afc18c6f00025a407a7e2aef4ab49", + "title": "2023-12-31 七十二家房客:心魔(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/687c750852aecc9d830be7ba6b5c7741.jpg", + "releasedAt": 1704029470000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170403625986.m3u8", + "raw": { + "id": "ae3afc18c6f00025a407a7e2aef4ab49", + "title": "2023-12-31 七十二家房客:心魔(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/687c750852aecc9d830be7ba6b5c7741.jpg", + "contentType": 3, + "releasedAt": 1704029470000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170403625986.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4155081e91f4ca0c5cf5b5ec1e0dd9f5", + "title": "2023-12-31 七十二家房客:心魔(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/fa42839dfd66d603a97bf9eedc7a2a3e.jpg", + "releasedAt": 1704027914000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170403628870.m3u8", + "raw": { + "id": "4155081e91f4ca0c5cf5b5ec1e0dd9f5", + "title": "2023-12-31 七十二家房客:心魔(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/fa42839dfd66d603a97bf9eedc7a2a3e.jpg", + "contentType": 3, + "releasedAt": 1704027914000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170403628870.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2ebbce76d29c8861e2eb400a547a5878", + "title": "2023-12-30 七十二家房客:姜埋奶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/164389ef1cab1b2fbe8d87135fcc4ca7.jpg", + "releasedAt": 1703943004000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170395233796.m3u8", + "raw": { + "id": "2ebbce76d29c8861e2eb400a547a5878", + "title": "2023-12-30 七十二家房客:姜埋奶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/164389ef1cab1b2fbe8d87135fcc4ca7.jpg", + "contentType": 3, + "releasedAt": 1703943004000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170395233796.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "401fed3d29c8d6508752d957cb26050d", + "title": "2023-12-30 七十二家房客:姜埋奶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/a15bf96ee445ea86e45d3ad203922737.jpg", + "releasedAt": 1703941322000, + "timeLength": 1355, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170395230939.m3u8", + "raw": { + "id": "401fed3d29c8d6508752d957cb26050d", + "title": "2023-12-30 七十二家房客:姜埋奶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/a15bf96ee445ea86e45d3ad203922737.jpg", + "contentType": 3, + "releasedAt": 1703941322000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170395230939.m3u8\"}", + "timeLength": 1355, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0112872461d122317809a6c916572474", + "title": "2023-12-29 七十二家房客:无畏(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/6e29af7d0f5569166d8ca507ab58f641.jpg", + "releasedAt": 1703856484000, + "timeLength": 1268, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170386325368.m3u8", + "raw": { + "id": "0112872461d122317809a6c916572474", + "title": "2023-12-29 七十二家房客:无畏(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/6e29af7d0f5569166d8ca507ab58f641.jpg", + "contentType": 3, + "releasedAt": 1703856484000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170386325368.m3u8\"}", + "timeLength": 1268, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a4a69eceff91afa3565528dec804d96", + "title": "2023-12-29 七十二家房客:无畏(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b16208317b5fad87eaa571a2047c64dc.jpg", + "releasedAt": 1703854918000, + "timeLength": 1340, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170386321063.m3u8", + "raw": { + "id": "6a4a69eceff91afa3565528dec804d96", + "title": "2023-12-29 七十二家房客:无畏(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b16208317b5fad87eaa571a2047c64dc.jpg", + "contentType": 3, + "releasedAt": 1703854918000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170386321063.m3u8\"}", + "timeLength": 1340, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f09afb3712e4f237e7c9d98107d8f309", + "title": "2023-12-28 七十二家房客:温暖的送别", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/7f340d1c6fcdecd1517f0ede63a5127b.jpg", + "releasedAt": 1703770081000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170377796972.m3u8", + "raw": { + "id": "f09afb3712e4f237e7c9d98107d8f309", + "title": "2023-12-28 七十二家房客:温暖的送别", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/7f340d1c6fcdecd1517f0ede63a5127b.jpg", + "contentType": 3, + "releasedAt": 1703770081000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170377796972.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aac752747e212c9466a27b03178c3a39", + "title": "2023-12-28 七十二家房客:祸福香炉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/cc994402d124dbc9a758df7a61ea1de1.jpg", + "releasedAt": 1703768523000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170377791589.m3u8", + "raw": { + "id": "aac752747e212c9466a27b03178c3a39", + "title": "2023-12-28 七十二家房客:祸福香炉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/cc994402d124dbc9a758df7a61ea1de1.jpg", + "contentType": 3, + "releasedAt": 1703768523000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170377791589.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ec9335af716675ee91a860f082b46090", + "title": "2023-12-27 七十二家房客:闹剧(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/833c8d8279928dbd8971804853527a28.jpg", + "releasedAt": 1703683675000, + "timeLength": 1275, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170368999887.m3u8", + "raw": { + "id": "ec9335af716675ee91a860f082b46090", + "title": "2023-12-27 七十二家房客:闹剧(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/833c8d8279928dbd8971804853527a28.jpg", + "contentType": 3, + "releasedAt": 1703683675000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170368999887.m3u8\"}", + "timeLength": 1275, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c220381123f70ecb6ef5254e5bd5f97a", + "title": "2023-12-27 七十二家房客:闹剧(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/fbb149744ac92597a90563e46ae6ada0.jpg", + "releasedAt": 1703682118000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170369002712.m3u8", + "raw": { + "id": "c220381123f70ecb6ef5254e5bd5f97a", + "title": "2023-12-27 七十二家房客:闹剧(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/fbb149744ac92597a90563e46ae6ada0.jpg", + "contentType": 3, + "releasedAt": 1703682118000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170369002712.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b0177814f1667ab076a5613cadbe1335", + "title": "2023-12-26 七十二家房客:女人心计(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/8028c42d2d41e3999b06d816d09b6781.jpg", + "releasedAt": 1703597283000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170360403455.m3u8", + "raw": { + "id": "b0177814f1667ab076a5613cadbe1335", + "title": "2023-12-26 七十二家房客:女人心计(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/8028c42d2d41e3999b06d816d09b6781.jpg", + "contentType": 3, + "releasedAt": 1703597283000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170360403455.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "58485235a07a41dd108519bc68ae9f76", + "title": "2023-12-26 七十二家房客:女人心计(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/06cce6b0c5b368122398cd99b28e257d.jpg", + "releasedAt": 1703595723000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170360400664.m3u8", + "raw": { + "id": "58485235a07a41dd108519bc68ae9f76", + "title": "2023-12-26 七十二家房客:女人心计(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/06cce6b0c5b368122398cd99b28e257d.jpg", + "contentType": 3, + "releasedAt": 1703595723000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170360400664.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "44fb5cf8dc2a756148a128a6a6aa2668", + "title": "2023-12-25 七十二家房客:过房儿子(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/26f2c0b9680e7db5858cda49401d5907.jpg", + "releasedAt": 1703510960000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170351763350.m3u8", + "raw": { + "id": "44fb5cf8dc2a756148a128a6a6aa2668", + "title": "2023-12-25 七十二家房客:过房儿子(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/26f2c0b9680e7db5858cda49401d5907.jpg", + "contentType": 3, + "releasedAt": 1703510960000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170351763350.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1bcea5e6428647262b55eaf479ffd4e8", + "title": "2023-12-25 七十二家房客:过房儿子(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/dd7b6e5044ac47d08cdf37070d3a642f.jpg", + "releasedAt": 1703509348000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170351766372.m3u8", + "raw": { + "id": "1bcea5e6428647262b55eaf479ffd4e8", + "title": "2023-12-25 七十二家房客:过房儿子(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/dd7b6e5044ac47d08cdf37070d3a642f.jpg", + "contentType": 3, + "releasedAt": 1703509348000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170351766372.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6132eb516f0c94f02893fddd1994f218", + "title": "2023-12-24 七十二家房客:黄梨梦(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/cc33c9665e4509f9dbccd71bc4eb0442.jpg", + "releasedAt": 1703424713000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170351577158.m3u8", + "raw": { + "id": "6132eb516f0c94f02893fddd1994f218", + "title": "2023-12-24 七十二家房客:黄梨梦(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/cc33c9665e4509f9dbccd71bc4eb0442.jpg", + "contentType": 3, + "releasedAt": 1703424713000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170351577158.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "64e25973736e456816266c36c31fb21c", + "title": "2023-12-24 七十二家房客:黄梨梦(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/96c25a148df3da4702a0e8f9562f3ae2.jpg", + "releasedAt": 1703422968000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170343163636.m3u8", + "raw": { + "id": "64e25973736e456816266c36c31fb21c", + "title": "2023-12-24 七十二家房客:黄梨梦(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/96c25a148df3da4702a0e8f9562f3ae2.jpg", + "contentType": 3, + "releasedAt": 1703422968000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170343163636.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c36f4c31874fe351c4341798979bcc49", + "title": "2023-12-23 七十二家房客:媒人福", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/318446a8df9537a9f28902f3aaffa352.jpg", + "releasedAt": 1703338114000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170334403947.m3u8", + "raw": { + "id": "c36f4c31874fe351c4341798979bcc49", + "title": "2023-12-23 七十二家房客:媒人福", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/318446a8df9537a9f28902f3aaffa352.jpg", + "contentType": 3, + "releasedAt": 1703338114000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170334403947.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f9c487e67a0ed4b65f6a1e819b215693", + "title": "2023-12-23 七十二家房客:造反的马仔", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b808b274363451ed2d70040d22b867ce.jpg", + "releasedAt": 1703336448000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202401/170334403532.m3u8", + "raw": { + "id": "f9c487e67a0ed4b65f6a1e819b215693", + "title": "2023-12-23 七十二家房客:造反的马仔", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b808b274363451ed2d70040d22b867ce.jpg", + "contentType": 3, + "releasedAt": 1703336448000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202401/170334403532.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8756ce711b106009856d73df0ff87293", + "title": "2023-12-22 七十二家房客:托孤(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d8da63d0e7a3fa96e8b77ac7b902a7fb.jpg", + "releasedAt": 1703251792000, + "timeLength": 1290, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170325986730.m3u8", + "raw": { + "id": "8756ce711b106009856d73df0ff87293", + "title": "2023-12-22 七十二家房客:托孤(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d8da63d0e7a3fa96e8b77ac7b902a7fb.jpg", + "contentType": 3, + "releasedAt": 1703251792000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170325986730.m3u8\"}", + "timeLength": 1290, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "20dbba0385746376f911d4f185a6e2de", + "title": "2023-12-22 七十二家房客:托孤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/35dd5edcea22fd444c3e6ccb2c228f19.jpg", + "releasedAt": 1703250153000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170325982526.m3u8", + "raw": { + "id": "20dbba0385746376f911d4f185a6e2de", + "title": "2023-12-22 七十二家房客:托孤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/35dd5edcea22fd444c3e6ccb2c228f19.jpg", + "contentType": 3, + "releasedAt": 1703250153000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170325982526.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0f35456cc21a3c3bb860457449d68e52", + "title": "2023-12-21 七十二家房客:过气特工(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/3afde04d4a97f12c2965fdbad9f41333.jpg", + "releasedAt": 1703165356000, + "timeLength": 1228, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170317015380.m3u8", + "raw": { + "id": "0f35456cc21a3c3bb860457449d68e52", + "title": "2023-12-21 七十二家房客:过气特工(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/3afde04d4a97f12c2965fdbad9f41333.jpg", + "contentType": 3, + "releasedAt": 1703165356000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170317015380.m3u8\"}", + "timeLength": 1228, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6a762fb9d8b24bde1f5719f39744fdfc", + "title": "2023-12-21 七十二家房客:过气特工(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/6c348c8888d9860ccc1f063ca6febe91.jpg", + "releasedAt": 1703163733000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170317022852.m3u8", + "raw": { + "id": "6a762fb9d8b24bde1f5719f39744fdfc", + "title": "2023-12-21 七十二家房客:过气特工(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/6c348c8888d9860ccc1f063ca6febe91.jpg", + "contentType": 3, + "releasedAt": 1703163733000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170317022852.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "57f81300f18c72c555cc8102f0e3c3d2", + "title": "2023-12-20 七十二家房客:特派专员(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ecedec39d28617b940334d0847e328ec.jpg", + "releasedAt": 1703078941000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170308411084.m3u8", + "raw": { + "id": "57f81300f18c72c555cc8102f0e3c3d2", + "title": "2023-12-20 七十二家房客:特派专员(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ecedec39d28617b940334d0847e328ec.jpg", + "contentType": 3, + "releasedAt": 1703078941000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170308411084.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e6a901442a4edaf57fa69e7cbafa72fe", + "title": "2023-12-20 七十二家房客:特派专员(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/84341e29b7a32b3373edd61c0db11c63.jpg", + "releasedAt": 1703077338000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170308409538.m3u8", + "raw": { + "id": "e6a901442a4edaf57fa69e7cbafa72fe", + "title": "2023-12-20 七十二家房客:特派专员(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/84341e29b7a32b3373edd61c0db11c63.jpg", + "contentType": 3, + "releasedAt": 1703077338000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170308409538.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "aa1c8dfde5eab479ad78abddc1a91ca9", + "title": "2023-12-19 七十二家房客:明明白白我的心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/220c735ab342dbbbf8ec0c74b2158b86.jpg", + "releasedAt": 1702992507000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170300029615.m3u8", + "raw": { + "id": "aa1c8dfde5eab479ad78abddc1a91ca9", + "title": "2023-12-19 七十二家房客:明明白白我的心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/220c735ab342dbbbf8ec0c74b2158b86.jpg", + "contentType": 3, + "releasedAt": 1702992507000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170300029615.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "58b3daf841c20a480b567014e1ea5d87", + "title": "2023-12-19 七十二家房客:明明白白我的心(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/5774758110a577014abb792a2d53b1cc.jpg", + "releasedAt": 1702990888000, + "timeLength": 1349, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170300026227.m3u8", + "raw": { + "id": "58b3daf841c20a480b567014e1ea5d87", + "title": "2023-12-19 七十二家房客:明明白白我的心(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/5774758110a577014abb792a2d53b1cc.jpg", + "contentType": 3, + "releasedAt": 1702990888000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170300026227.m3u8\"}", + "timeLength": 1349, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "00eb08a9b3c0fecfd80d38c5d6c01794", + "title": "2023-12-18 七十二家房客:养女阿竹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d9d7c10b09490bba3b85eb3ca3970393.jpg", + "releasedAt": 1702906152000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170291171249.m3u8", + "raw": { + "id": "00eb08a9b3c0fecfd80d38c5d6c01794", + "title": "2023-12-18 七十二家房客:养女阿竹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d9d7c10b09490bba3b85eb3ca3970393.jpg", + "contentType": 3, + "releasedAt": 1702906152000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170291171249.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e90bd2d281476762311cb6e89e7843ff", + "title": "2023-12-18 七十二家房客:养女阿竹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/01f90b9cff629ec0698c618bed0d7df5.jpg", + "releasedAt": 1702904537000, + "timeLength": 1360, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170291161551.m3u8", + "raw": { + "id": "e90bd2d281476762311cb6e89e7843ff", + "title": "2023-12-18 七十二家房客:养女阿竹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/01f90b9cff629ec0698c618bed0d7df5.jpg", + "contentType": 3, + "releasedAt": 1702904537000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170291161551.m3u8\"}", + "timeLength": 1360, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3ab1b6e8880723a6e57e06b28f8723be", + "title": "2023-12-17 七十二家房客:孤寒财主(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/77dfcf97670fa0009e03f18f155f3005.jpg", + "releasedAt": 1702819902000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170282618948.m3u8", + "raw": { + "id": "3ab1b6e8880723a6e57e06b28f8723be", + "title": "2023-12-17 七十二家房客:孤寒财主(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/77dfcf97670fa0009e03f18f155f3005.jpg", + "contentType": 3, + "releasedAt": 1702819902000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170282618948.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "18a09678bb4a2a4aaf38f819a6230986", + "title": "2023-12-17 七十二家房客:孤寒财主(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ce296b83d770f5b924761c024a35f703.jpg", + "releasedAt": 1702818143000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170282622533.m3u8", + "raw": { + "id": "18a09678bb4a2a4aaf38f819a6230986", + "title": "2023-12-17 七十二家房客:孤寒财主(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ce296b83d770f5b924761c024a35f703.jpg", + "contentType": 3, + "releasedAt": 1702818143000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170282622533.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9884ec9708b22850abb54408d2945c7b", + "title": "2023-12-16 七十二家房客:偏向虎山行(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/4d29a1e7264978c4119eb27b3e2be556.jpg", + "releasedAt": 1702733448000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170274054062.m3u8", + "raw": { + "id": "9884ec9708b22850abb54408d2945c7b", + "title": "2023-12-16 七十二家房客:偏向虎山行(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/4d29a1e7264978c4119eb27b3e2be556.jpg", + "contentType": 3, + "releasedAt": 1702733448000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170274054062.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "78ac983d7b33c02aeb39bbe52fea3d91", + "title": "2023-12-16 七十二家房客:偏向虎山行(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b9a54b5ca3819b9df5fb7f0004479ad2.jpg", + "releasedAt": 1702731676000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170274053413.m3u8", + "raw": { + "id": "78ac983d7b33c02aeb39bbe52fea3d91", + "title": "2023-12-16 七十二家房客:偏向虎山行(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b9a54b5ca3819b9df5fb7f0004479ad2.jpg", + "contentType": 3, + "releasedAt": 1702731676000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170274053413.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "054be5fd92b29867c6179005a5d06cd5", + "title": "2023-12-15 七十二家房客:合伙单车", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b6ce8c02393cdc7be97ca81429685cd0.jpg", + "releasedAt": 1702646953000, + "timeLength": 1283, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170270267557.m3u8", + "raw": { + "id": "054be5fd92b29867c6179005a5d06cd5", + "title": "2023-12-15 七十二家房客:合伙单车", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b6ce8c02393cdc7be97ca81429685cd0.jpg", + "contentType": 3, + "releasedAt": 1702646953000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170270267557.m3u8\"}", + "timeLength": 1283, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "444ffe9c2c8b7b35fcffc708e9bf386b", + "title": "2023-12-15 七十二家房客:一字千金", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/48d75049abe12b82a8a972919d7d42ef.jpg", + "releasedAt": 1702645386000, + "timeLength": 1341, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170270267637.m3u8", + "raw": { + "id": "444ffe9c2c8b7b35fcffc708e9bf386b", + "title": "2023-12-15 七十二家房客:一字千金", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/48d75049abe12b82a8a972919d7d42ef.jpg", + "contentType": 3, + "releasedAt": 1702645386000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170270267637.m3u8\"}", + "timeLength": 1341, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "786093664e445cc57112bee8603644a2", + "title": "2023-12-14 七十二家房客:为善之门(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/f52d2a0fef631bb218652d7f195304e2.jpg", + "releasedAt": 1702560544000, + "timeLength": 1253, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170256726319.m3u8", + "raw": { + "id": "786093664e445cc57112bee8603644a2", + "title": "2023-12-14 七十二家房客:为善之门(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/f52d2a0fef631bb218652d7f195304e2.jpg", + "contentType": 3, + "releasedAt": 1702560544000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170256726319.m3u8\"}", + "timeLength": 1253, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "17db4918bc914e9fa1a28932847df5b9", + "title": "2023-12-14 七十二家房客:为善之门(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/5651276455b83f66912d04c429f08856.jpg", + "releasedAt": 1702558991000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170256729035.m3u8", + "raw": { + "id": "17db4918bc914e9fa1a28932847df5b9", + "title": "2023-12-14 七十二家房客:为善之门(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/5651276455b83f66912d04c429f08856.jpg", + "contentType": 3, + "releasedAt": 1702558991000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170256729035.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "348f9d538c7f199c12b5f6dfe5be8cd4", + "title": "2023-12-13 七十二家房客:前辈与晚辈(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/282af5d460bceac5639495ad233d8deb.jpg", + "releasedAt": 1702474124000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170248249599.m3u8", + "raw": { + "id": "348f9d538c7f199c12b5f6dfe5be8cd4", + "title": "2023-12-13 七十二家房客:前辈与晚辈(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/282af5d460bceac5639495ad233d8deb.jpg", + "contentType": 3, + "releasedAt": 1702474124000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170248249599.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a8b7af2ecf4c41aa55ee3e3a340fa688", + "title": "2023-12-13 七十二家房客:前辈与晚辈(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/0c49905c56229ca46c15ae349585a59a.jpg", + "releasedAt": 1702472567000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170248243537.m3u8", + "raw": { + "id": "a8b7af2ecf4c41aa55ee3e3a340fa688", + "title": "2023-12-13 七十二家房客:前辈与晚辈(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/0c49905c56229ca46c15ae349585a59a.jpg", + "contentType": 3, + "releasedAt": 1702472567000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170248243537.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "fa37fb9ea53fd5ff89f75a079e158d22", + "title": "2023-12-12 七十二家房客:与虎谋皮(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/7b6052151c2fb82fc36003c0728ca290.jpg", + "releasedAt": 1702387754000, + "timeLength": 1282, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170239394482.m3u8", + "raw": { + "id": "fa37fb9ea53fd5ff89f75a079e158d22", + "title": "2023-12-12 七十二家房客:与虎谋皮(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/7b6052151c2fb82fc36003c0728ca290.jpg", + "contentType": 3, + "releasedAt": 1702387754000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170239394482.m3u8\"}", + "timeLength": 1282, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6cebbcc459f2462d3b17d698e00006f4", + "title": "2023-12-12 七十二家房客:与虎谋皮(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/0ee8cc857d6e893ba2518968d8824931.jpg", + "releasedAt": 1702386189000, + "timeLength": 1350, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170239381865.m3u8", + "raw": { + "id": "6cebbcc459f2462d3b17d698e00006f4", + "title": "2023-12-12 七十二家房客:与虎谋皮(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/0ee8cc857d6e893ba2518968d8824931.jpg", + "contentType": 3, + "releasedAt": 1702386189000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170239381865.m3u8\"}", + "timeLength": 1350, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1eb99784af103c814f04395d128942df", + "title": "2023-12-11 七十二家房客:寄居蟹(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ea502ca76cb90d4a6cb4d8f6a05b222b.jpg", + "releasedAt": 1702301349000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170230723287.m3u8", + "raw": { + "id": "1eb99784af103c814f04395d128942df", + "title": "2023-12-11 七十二家房客:寄居蟹(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ea502ca76cb90d4a6cb4d8f6a05b222b.jpg", + "contentType": 3, + "releasedAt": 1702301349000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170230723287.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "70e9d5e5e63df226728b6db69eff7537", + "title": "2023-12-11 七十二家房客:寄居蟹(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/6ccfd6df1ae2d18635546ff935838c1c.jpg", + "releasedAt": 1702299770000, + "timeLength": 1354, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170230722954.m3u8", + "raw": { + "id": "70e9d5e5e63df226728b6db69eff7537", + "title": "2023-12-11 七十二家房客:寄居蟹(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/6ccfd6df1ae2d18635546ff935838c1c.jpg", + "contentType": 3, + "releasedAt": 1702299770000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170230722954.m3u8\"}", + "timeLength": 1354, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "96cfa08d31c2e0064ca9f8755dec45ec", + "title": "2023-12-10 七十二家房客:酒局风波(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/39caa5efe6e3ab6b2d67126ed85cb88a.jpg", + "releasedAt": 1702215016000, + "timeLength": 1271, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170222276586.m3u8", + "raw": { + "id": "96cfa08d31c2e0064ca9f8755dec45ec", + "title": "2023-12-10 七十二家房客:酒局风波(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/39caa5efe6e3ab6b2d67126ed85cb88a.jpg", + "contentType": 3, + "releasedAt": 1702215016000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170222276586.m3u8\"}", + "timeLength": 1271, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6164f5adf91e226fb923a8812a7db9aa", + "title": "2023-12-10 七十二家房客:酒局风波(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/2c43d2bc03fc489775d1c9c8d58d326b.jpg", + "releasedAt": 1702213314000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170222275051.m3u8", + "raw": { + "id": "6164f5adf91e226fb923a8812a7db9aa", + "title": "2023-12-10 七十二家房客:酒局风波(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/2c43d2bc03fc489775d1c9c8d58d326b.jpg", + "contentType": 3, + "releasedAt": 1702213314000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170222275051.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9982c071f5a9918183958b0b8a669c1f", + "title": "2023-12-09 七十二家房客:江湖疑凶(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/e13a2022d0e3837b6343d2ec1774a65d.jpg", + "releasedAt": 1702128610000, + "timeLength": 1285, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170213454953.m3u8", + "raw": { + "id": "9982c071f5a9918183958b0b8a669c1f", + "title": "2023-12-09 七十二家房客:江湖疑凶(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/e13a2022d0e3837b6343d2ec1774a65d.jpg", + "contentType": 3, + "releasedAt": 1702128610000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170213454953.m3u8\"}", + "timeLength": 1285, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "122fba6f5a153390b0882580925adad7", + "title": "2023-12-09 七十二家房客:江湖疑凶(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/71ee03ef4bbc7c88ec9dc42367a07aa6.jpg", + "releasedAt": 1702126897000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170213452931.m3u8", + "raw": { + "id": "122fba6f5a153390b0882580925adad7", + "title": "2023-12-09 七十二家房客:江湖疑凶(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/71ee03ef4bbc7c88ec9dc42367a07aa6.jpg", + "contentType": 3, + "releasedAt": 1702126897000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170213452931.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "70f812a7f738a3f2b39be7efad4b4d50", + "title": "2023-12-08 七十二家房客:我不是神经病(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/51bee8f5071b2b285b821e0e9b74de66.jpg", + "releasedAt": 1702042106000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170204844066.m3u8", + "raw": { + "id": "70f812a7f738a3f2b39be7efad4b4d50", + "title": "2023-12-08 七十二家房客:我不是神经病(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/51bee8f5071b2b285b821e0e9b74de66.jpg", + "contentType": 3, + "releasedAt": 1702042106000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170204844066.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "00f3b69af10186ed79d957cbef77ff80", + "title": "2023-12-08 七十二家房客:我不是神经病(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/387e7d2ceeabd052902fb3dd3549875f.jpg", + "releasedAt": 1702040579000, + "timeLength": 1342, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170204846493.m3u8", + "raw": { + "id": "00f3b69af10186ed79d957cbef77ff80", + "title": "2023-12-08 七十二家房客:我不是神经病(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/387e7d2ceeabd052902fb3dd3549875f.jpg", + "contentType": 3, + "releasedAt": 1702040579000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170204846493.m3u8\"}", + "timeLength": 1342, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4c03eebc37d849e817b27718a42615e2", + "title": "2023-12-07 七十二家房客:土地庙", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/e7f2fe19924a2645118d1ba69a0da345.jpg", + "releasedAt": 1701955705000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170196139447.m3u8", + "raw": { + "id": "4c03eebc37d849e817b27718a42615e2", + "title": "2023-12-07 七十二家房客:土地庙", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/e7f2fe19924a2645118d1ba69a0da345.jpg", + "contentType": 3, + "releasedAt": 1701955705000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170196139447.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0db825ae459486d8f3645835d030c479", + "title": "2023-12-07 七十二家房客:怒火街头", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ac786a1aa9ce88f09890ae9a50180df5.jpg", + "releasedAt": 1701954174000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170196141399.m3u8", + "raw": { + "id": "0db825ae459486d8f3645835d030c479", + "title": "2023-12-07 七十二家房客:怒火街头", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ac786a1aa9ce88f09890ae9a50180df5.jpg", + "contentType": 3, + "releasedAt": 1701954174000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170196141399.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "16b3e634d0c26d50856b5965918d55bd", + "title": "2023-12-06 七十二家房客:左右为难(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ed481fb7cd4cc0d201ef5cc2cd5eac70.jpg", + "releasedAt": 1701869380000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170187544428.m3u8", + "raw": { + "id": "16b3e634d0c26d50856b5965918d55bd", + "title": "2023-12-06 七十二家房客:左右为难(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/ed481fb7cd4cc0d201ef5cc2cd5eac70.jpg", + "contentType": 3, + "releasedAt": 1701869380000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170187544428.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b56855b147159a0ebbfcdd2152bc6f56", + "title": "2023-12-06 七十二家房客:左右为难(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/2c996f1f03a94a25f2b78e1d548eeb1a.jpg", + "releasedAt": 1701867814000, + "timeLength": 1356, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170187542172.m3u8", + "raw": { + "id": "b56855b147159a0ebbfcdd2152bc6f56", + "title": "2023-12-06 七十二家房客:左右为难(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/2c996f1f03a94a25f2b78e1d548eeb1a.jpg", + "contentType": 3, + "releasedAt": 1701867814000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170187542172.m3u8\"}", + "timeLength": 1356, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "75d60ed67aff74ddd3d31c6bfebac878", + "title": "2023-12-05 七十二家房客:臭味相投(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d422294c0aabf60df2f9131bded2545c.jpg", + "releasedAt": 1701782964000, + "timeLength": 1287, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170178923436.m3u8", + "raw": { + "id": "75d60ed67aff74ddd3d31c6bfebac878", + "title": "2023-12-05 七十二家房客:臭味相投(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d422294c0aabf60df2f9131bded2545c.jpg", + "contentType": 3, + "releasedAt": 1701782964000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170178923436.m3u8\"}", + "timeLength": 1287, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "777a0ca63cda1084078e929eb9f591b7", + "title": "2023-12-05 七十二家房客:臭味相投(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/a271579663d47ea8b124f192a6c121c6.jpg", + "releasedAt": 1701781396000, + "timeLength": 1343, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170178918783.m3u8", + "raw": { + "id": "777a0ca63cda1084078e929eb9f591b7", + "title": "2023-12-05 七十二家房客:臭味相投(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/a271579663d47ea8b124f192a6c121c6.jpg", + "contentType": 3, + "releasedAt": 1701781396000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170178918783.m3u8\"}", + "timeLength": 1343, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9d6bf028a5bf27eb102be3741b113e79", + "title": "2023-12-04 七十二家房客:阿香的成长", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b659f65363468273cf7d0c6042f78517.jpg", + "releasedAt": 1701696592000, + "timeLength": 1291, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170170307194.m3u8", + "raw": { + "id": "9d6bf028a5bf27eb102be3741b113e79", + "title": "2023-12-04 七十二家房客:阿香的成长", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/b659f65363468273cf7d0c6042f78517.jpg", + "contentType": 3, + "releasedAt": 1701696592000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170170307194.m3u8\"}", + "timeLength": 1291, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7f8f2228876581b4addb2d21c46ab98e", + "title": "2023-12-04 七十二家房客:送汤记", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/bef723a5c483d9883e890f2a9e059d92.jpg", + "releasedAt": 1701695000000, + "timeLength": 1352, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170170300736.m3u8", + "raw": { + "id": "7f8f2228876581b4addb2d21c46ab98e", + "title": "2023-12-04 七十二家房客:送汤记", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/bef723a5c483d9883e890f2a9e059d92.jpg", + "contentType": 3, + "releasedAt": 1701695000000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170170300736.m3u8\"}", + "timeLength": 1352, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f2170b69e42c12b610b9856015c252c4", + "title": "2023-12-03 七十二家房客:杏林育新枝(下)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2023/12/8180d6e80bcbe1abf90863d88f2fb071.jpg", + "releasedAt": 1701610283000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170161655863.m3u8", + "raw": { + "id": "f2170b69e42c12b610b9856015c252c4", + "title": "2023-12-03 七十二家房客:杏林育新枝(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2023/12/8180d6e80bcbe1abf90863d88f2fb071.jpg", + "contentType": 3, + "releasedAt": 1701610283000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170161655863.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "29e01863dbf57613c02a06b64e508180", + "title": "2023-12-03 七十二家房客:杏林育新枝(上)", + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2023/12/008cb79951b031475ac1c207169a4cc0.jpg", + "releasedAt": 1701608547000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170161658118.m3u8", + "raw": { + "id": "29e01863dbf57613c02a06b64e508180", + "title": "2023-12-03 七十二家房客:杏林育新枝(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/livmedia/img/2023/12/008cb79951b031475ac1c207169a4cc0.jpg", + "contentType": 3, + "releasedAt": 1701608547000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170161658118.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "df4767b903550fe6285bcf5fb43a571b", + "title": "2023-12-02 七十二家房客:生子疑团(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/8c15b7f4ac44bc3e6ebccbfe95325751.jpg", + "releasedAt": 1701523834000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170153069691.m3u8", + "raw": { + "id": "df4767b903550fe6285bcf5fb43a571b", + "title": "2023-12-02 七十二家房客:生子疑团(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/8c15b7f4ac44bc3e6ebccbfe95325751.jpg", + "contentType": 3, + "releasedAt": 1701523834000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170153069691.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b99093cb3c07ba7dbc4b2b32b579b704", + "title": "2023-12-02 七十二家房客:生子疑团(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d986b11486dfa1d986221f4fc3a46fe2.jpg", + "releasedAt": 1701522115000, + "timeLength": 1348, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170153072350.m3u8", + "raw": { + "id": "b99093cb3c07ba7dbc4b2b32b579b704", + "title": "2023-12-02 七十二家房客:生子疑团(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/d986b11486dfa1d986221f4fc3a46fe2.jpg", + "contentType": 3, + "releasedAt": 1701522115000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170153072350.m3u8\"}", + "timeLength": 1348, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a878bc6bc44f3fcbe75e2fb5fa355257", + "title": "2023-12-01 七十二家房客:卖故衣(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/7878cf12c28e2a51d5ddcbaefc96d07b.jpg", + "releasedAt": 1701435798000, + "timeLength": 1353, + "videoUrl": "https://vod.gdtv.cn/m3u8/202312/170144404317.m3u8", + "raw": { + "id": "a878bc6bc44f3fcbe75e2fb5fa355257", + "title": "2023-12-01 七十二家房客:卖故衣(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2023/12/7878cf12c28e2a51d5ddcbaefc96d07b.jpg", + "contentType": 3, + "releasedAt": 1701435798000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202312/170144404317.m3u8\"}", + "timeLength": 1353, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "12dc464dd97add6cc66e4a75ad3f1eb5", + "title": "2022-12-31 七十二家房客:销赃(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/393afce22e7087a5f736edd4d93232fc.jpg", + "releasedAt": 1672493139000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167249911986.m3u8", + "raw": { + "id": "12dc464dd97add6cc66e4a75ad3f1eb5", + "title": "2022-12-31 七十二家房客:销赃(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/393afce22e7087a5f736edd4d93232fc.jpg", + "contentType": 3, + "releasedAt": 1672493139000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167249911986.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d05f690624788a5224a88547d1a711e3", + "title": "2022-12-31 七十二家房客:销赃(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/86148abbf7d7ef3e640ce71a3995b44d.jpg", + "releasedAt": 1672491397000, + "timeLength": 1336, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167249911828.m3u8", + "raw": { + "id": "d05f690624788a5224a88547d1a711e3", + "title": "2022-12-31 七十二家房客:销赃(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/86148abbf7d7ef3e640ce71a3995b44d.jpg", + "contentType": 3, + "releasedAt": 1672491397000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167249911828.m3u8\"}", + "timeLength": 1336, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4ccc49158f6b7c9260788a339554cd05", + "title": "2022-12-30 七十二家房客:红鸡蛋与合卺酒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1e7a5f21e36084d2a1c877570c5e871d.jpg", + "releasedAt": 1672413461000, + "timeLength": 1286, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241678629.m3u8", + "raw": { + "id": "4ccc49158f6b7c9260788a339554cd05", + "title": "2022-12-30 七十二家房客:红鸡蛋与合卺酒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1e7a5f21e36084d2a1c877570c5e871d.jpg", + "contentType": 3, + "releasedAt": 1672413461000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241678629.m3u8\"}", + "timeLength": 1286, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "20036dee393d40cf9d0091a5ff2ea15b", + "title": "2022-12-30 七十二家房客:身份之谜(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/3873daa655ac70011aba3ce66a27400f.jpg", + "releasedAt": 1672412198000, + "timeLength": 1252, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241564950.m3u8", + "raw": { + "id": "20036dee393d40cf9d0091a5ff2ea15b", + "title": "2022-12-30 七十二家房客:身份之谜(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/3873daa655ac70011aba3ce66a27400f.jpg", + "contentType": 3, + "releasedAt": 1672412198000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241564950.m3u8\"}", + "timeLength": 1252, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4ddcf91b34efc07120509c72e0d16c15", + "title": "2022-12-30 七十二家房客:身份之谜(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1e2fb1f4dd663ac0150fc3ef7b961bbc.jpg", + "releasedAt": 1672410918000, + "timeLength": 1254, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241567817.m3u8", + "raw": { + "id": "4ddcf91b34efc07120509c72e0d16c15", + "title": "2022-12-30 七十二家房客:身份之谜(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1e2fb1f4dd663ac0150fc3ef7b961bbc.jpg", + "contentType": 3, + "releasedAt": 1672410918000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241567817.m3u8\"}", + "timeLength": 1254, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7de39d58c5dca0cc66596eebf6d62e0b", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/6924fa28089755d1b8a0d6d81627e0c4.jpg", + "releasedAt": 1672409651000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241564836.m3u8", + "raw": { + "id": "7de39d58c5dca0cc66596eebf6d62e0b", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/6924fa28089755d1b8a0d6d81627e0c4.jpg", + "contentType": 3, + "releasedAt": 1672409651000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241564836.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "99835701f85a963f1c407bfb6af2abae", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/c24c84cb63d25c86240d6d95679cfe11.jpg", + "releasedAt": 1672408288000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241564740.m3u8", + "raw": { + "id": "99835701f85a963f1c407bfb6af2abae", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/c24c84cb63d25c86240d6d95679cfe11.jpg", + "contentType": 3, + "releasedAt": 1672408288000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241564740.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1a20bf2f0d6aefb72d55a6e445328d6f", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(二)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/4e3e0c878617e6f71ba4077836a8b83e.jpg", + "releasedAt": 1672406896000, + "timeLength": 1274, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241559012.m3u8", + "raw": { + "id": "1a20bf2f0d6aefb72d55a6e445328d6f", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(二)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/4e3e0c878617e6f71ba4077836a8b83e.jpg", + "contentType": 3, + "releasedAt": 1672406896000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241559012.m3u8\"}", + "timeLength": 1274, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8b409e8d818931c051759d53306de44c", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(一)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cab15bd5b1586c02cb777a3b8fad960f.jpg", + "releasedAt": 1672405389000, + "timeLength": 1351, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241564974.m3u8", + "raw": { + "id": "8b409e8d818931c051759d53306de44c", + "title": "2022-12-30 七十二家房客:孙锦珍的报复(一)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cab15bd5b1586c02cb777a3b8fad960f.jpg", + "contentType": 3, + "releasedAt": 1672405389000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241564974.m3u8\"}", + "timeLength": 1351, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8045ea9f0483edc79e5016b7d020a904", + "title": "2022-12-29 七十二家房客:迟来的道歉", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e3498602ed3d5c523798cf7f01fde67f.jpg", + "releasedAt": 1672324634000, + "timeLength": 1288, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167241111468.m3u8", + "raw": { + "id": "8045ea9f0483edc79e5016b7d020a904", + "title": "2022-12-29 七十二家房客:迟来的道歉", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e3498602ed3d5c523798cf7f01fde67f.jpg", + "contentType": 3, + "releasedAt": 1672324634000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167241111468.m3u8\"}", + "timeLength": 1288, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "391a7417f0a97ddf942b2ba9c9f3468c", + "title": "2022-12-29 七十二家房客:冒牌房东", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/6447109c367e15b172171fd2adcac451.jpg", + "releasedAt": 1672323367000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167232690720.m3u8", + "raw": { + "id": "391a7417f0a97ddf942b2ba9c9f3468c", + "title": "2022-12-29 七十二家房客:冒牌房东", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/6447109c367e15b172171fd2adcac451.jpg", + "contentType": 3, + "releasedAt": 1672323367000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167232690720.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "31bfb66bbc7357db46a8607d711f8a46", + "title": "2022-12-29 七十二家房客:八姑下厨", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e42f05f9005e8e4ed36568e9240d093d.jpg", + "releasedAt": 1672321998000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167232687495.m3u8", + "raw": { + "id": "31bfb66bbc7357db46a8607d711f8a46", + "title": "2022-12-29 七十二家房客:八姑下厨", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e42f05f9005e8e4ed36568e9240d093d.jpg", + "contentType": 3, + "releasedAt": 1672321998000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167232687495.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "799940e45399b2bce9538b105a091100", + "title": "2022-12-29 七十二家房客:嫉妒(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2ed03382baf41051573b1599ae77f763.jpg", + "releasedAt": 1672320544000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167232690957.m3u8", + "raw": { + "id": "799940e45399b2bce9538b105a091100", + "title": "2022-12-29 七十二家房客:嫉妒(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2ed03382baf41051573b1599ae77f763.jpg", + "contentType": 3, + "releasedAt": 1672320544000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167232690957.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bfdf51cf2b954ab23b0c417f1fa25c74", + "title": "2022-12-29 七十二家房客:嫉妒(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/7606dc2b93fd5f8e6a4abc226adcae57.jpg", + "releasedAt": 1672318965000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167232687374.m3u8", + "raw": { + "id": "bfdf51cf2b954ab23b0c417f1fa25c74", + "title": "2022-12-29 七十二家房客:嫉妒(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/7606dc2b93fd5f8e6a4abc226adcae57.jpg", + "contentType": 3, + "releasedAt": 1672318965000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167232687374.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ad998f9c404d0c059d9b8d714dae1774", + "title": "2022-12-28 七十二家房客:梦醒时分(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/011bde86c7d3a7949b41bffc80200dc2.jpg", + "releasedAt": 1672240566000, + "timeLength": 1280, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167224530770.m3u8", + "raw": { + "id": "ad998f9c404d0c059d9b8d714dae1774", + "title": "2022-12-28 七十二家房客:梦醒时分(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/011bde86c7d3a7949b41bffc80200dc2.jpg", + "contentType": 3, + "releasedAt": 1672240566000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167224530770.m3u8\"}", + "timeLength": 1280, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "f3692d094e257f992a2e7176ad396f34", + "title": "2022-12-28 七十二家房客:梦醒时分(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cd00859d6bf5f17483e0b57bb0e399d0.jpg", + "releasedAt": 1672239324000, + "timeLength": 1232, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167224533886.m3u8", + "raw": { + "id": "f3692d094e257f992a2e7176ad396f34", + "title": "2022-12-28 七十二家房客:梦醒时分(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cd00859d6bf5f17483e0b57bb0e399d0.jpg", + "contentType": 3, + "releasedAt": 1672239324000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167224533886.m3u8\"}", + "timeLength": 1232, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "49a683cf7d1ff8968b8609865560271a", + "title": "2022-12-28 七十二家房客:舍我其谁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/33c6690039cda1e591bf30f3e4496689.jpg", + "releasedAt": 1672238073000, + "timeLength": 1226, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167224530831.m3u8", + "raw": { + "id": "49a683cf7d1ff8968b8609865560271a", + "title": "2022-12-28 七十二家房客:舍我其谁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/33c6690039cda1e591bf30f3e4496689.jpg", + "contentType": 3, + "releasedAt": 1672238073000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167224530831.m3u8\"}", + "timeLength": 1226, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c623da66c8a4d88561e52f0b9bf21b70", + "title": "2022-12-28 七十二家房客:舍我其谁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/0efad002539b5d9f34781e6b333e600f.jpg", + "releasedAt": 1672236808000, + "timeLength": 1240, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167224525525.m3u8", + "raw": { + "id": "c623da66c8a4d88561e52f0b9bf21b70", + "title": "2022-12-28 七十二家房客:舍我其谁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/0efad002539b5d9f34781e6b333e600f.jpg", + "contentType": 3, + "releasedAt": 1672236808000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167224525525.m3u8\"}", + "timeLength": 1240, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "11041b0b2d32068d954695b7cdd2720e", + "title": "2022-12-28 七十二家房客:一山还有一山高(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/818f2745785a7147d451656cfdbe0935.jpg", + "releasedAt": 1672235470000, + "timeLength": 1312, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167224525691.m3u8", + "raw": { + "id": "11041b0b2d32068d954695b7cdd2720e", + "title": "2022-12-28 七十二家房客:一山还有一山高(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/818f2745785a7147d451656cfdbe0935.jpg", + "contentType": 3, + "releasedAt": 1672235470000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167224525691.m3u8\"}", + "timeLength": 1312, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9df33ad8af54147a7cac47970d98e42b", + "title": "2022-12-28 七十二家房客:一山还有一山高(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1b146e859961ae14d921eece78238678.jpg", + "releasedAt": 1672234081000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167224527837.m3u8", + "raw": { + "id": "9df33ad8af54147a7cac47970d98e42b", + "title": "2022-12-28 七十二家房客:一山还有一山高(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1b146e859961ae14d921eece78238678.jpg", + "contentType": 3, + "releasedAt": 1672234081000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167224527837.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "afe7d509f5014c0e2320aac04d2ddb65", + "title": "2022-12-27 七十二家房客:阿凤(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/a2fbbd5eb770ecd8ea3dbe53c7524cb4.jpg", + "releasedAt": 1672153799000, + "timeLength": 1269, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167220224835.m3u8", + "raw": { + "id": "afe7d509f5014c0e2320aac04d2ddb65", + "title": "2022-12-27 七十二家房客:阿凤(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/a2fbbd5eb770ecd8ea3dbe53c7524cb4.jpg", + "contentType": 3, + "releasedAt": 1672153799000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167220224835.m3u8\"}", + "timeLength": 1269, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7f2e421968999f0cbb02c9c54fb3156b", + "title": "2022-12-27 七十二家房客:大师与儒商(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/f482582ea033e9c75a4375e31aa5366d.jpg", + "releasedAt": 1672152529000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167220221981.m3u8", + "raw": { + "id": "7f2e421968999f0cbb02c9c54fb3156b", + "title": "2022-12-27 七十二家房客:大师与儒商(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/f482582ea033e9c75a4375e31aa5366d.jpg", + "contentType": 3, + "releasedAt": 1672152529000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167220221981.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1725877780e8081f343f136e0467761b", + "title": "2022-12-27 七十二家房客:大师与儒商(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/515e9903910dc3c0534e4768f9a4b5f6.jpg", + "releasedAt": 1672151167000, + "timeLength": 1336, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167215674538.m3u8", + "raw": { + "id": "1725877780e8081f343f136e0467761b", + "title": "2022-12-27 七十二家房客:大师与儒商(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/515e9903910dc3c0534e4768f9a4b5f6.jpg", + "contentType": 3, + "releasedAt": 1672151167000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167215674538.m3u8\"}", + "timeLength": 1336, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "a5e25a76373737cbebf2d3df2a2bd496", + "title": "2022-12-27 七十二家房客:烧须神探(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/0f1784507621c920aba5f4bc182fdaa3.jpg", + "releasedAt": 1672147876000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167215344549.m3u8", + "raw": { + "id": "a5e25a76373737cbebf2d3df2a2bd496", + "title": "2022-12-27 七十二家房客:烧须神探(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/0f1784507621c920aba5f4bc182fdaa3.jpg", + "contentType": 3, + "releasedAt": 1672147876000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167215344549.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bc81c72eee31e5770eaf667adeb35c67", + "title": "2022-12-27 七十二家房客:烧须神探(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/b36d779908ba209fffd047dc551155ad.jpg", + "releasedAt": 1672146254000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167215347532.m3u8", + "raw": { + "id": "bc81c72eee31e5770eaf667adeb35c67", + "title": "2022-12-27 七十二家房客:烧须神探(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/b36d779908ba209fffd047dc551155ad.jpg", + "contentType": 3, + "releasedAt": 1672146254000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167215347532.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "22469612216e062c2fc9f50caf15d08f", + "title": "2022-12-26 七十二家房客:原配在此(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/58a279a7e48ee96b7e28e22da2976904.jpg", + "releasedAt": 1672067716000, + "timeLength": 1262, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207111124.m3u8", + "raw": { + "id": "22469612216e062c2fc9f50caf15d08f", + "title": "2022-12-26 七十二家房客:原配在此(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/58a279a7e48ee96b7e28e22da2976904.jpg", + "contentType": 3, + "releasedAt": 1672067716000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207111124.m3u8\"}", + "timeLength": 1262, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "733dbb770f4a6ae46457bfaf213289a2", + "title": "2022-12-26 七十二家房客:原配在此(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/c937c3ba15e351756863e2c11e70d9ed.jpg", + "releasedAt": 1672066482000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207099538.m3u8", + "raw": { + "id": "733dbb770f4a6ae46457bfaf213289a2", + "title": "2022-12-26 七十二家房客:原配在此(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/c937c3ba15e351756863e2c11e70d9ed.jpg", + "contentType": 3, + "releasedAt": 1672066482000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207099538.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "08079cf025283c7e8de87e20d52971af", + "title": "2022-12-26 七十二家房客:命犯桃花(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/41046ff740049ab140d1a7fa7198532d.jpg", + "releasedAt": 1672065222000, + "timeLength": 1234, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207111236.m3u8", + "raw": { + "id": "08079cf025283c7e8de87e20d52971af", + "title": "2022-12-26 七十二家房客:命犯桃花(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/41046ff740049ab140d1a7fa7198532d.jpg", + "contentType": 3, + "releasedAt": 1672065222000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207111236.m3u8\"}", + "timeLength": 1234, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5e05bc086f49cebcedf6a0bbeb2514e8", + "title": "2022-12-26 七十二家房客:命犯桃花(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/bb6dea58e8a9d63c18474db065791b58.jpg", + "releasedAt": 1672063955000, + "timeLength": 1241, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207099690.m3u8", + "raw": { + "id": "5e05bc086f49cebcedf6a0bbeb2514e8", + "title": "2022-12-26 七十二家房客:命犯桃花(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/bb6dea58e8a9d63c18474db065791b58.jpg", + "contentType": 3, + "releasedAt": 1672063955000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207099690.m3u8\"}", + "timeLength": 1241, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4b3146b20960e9f2e6af250dd1649f4e", + "title": "2022-12-26 七十二家房客:至亲不如邻(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/a46c9438501ecc19879fb9586040b461.jpg", + "releasedAt": 1672062596000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207111225.m3u8", + "raw": { + "id": "4b3146b20960e9f2e6af250dd1649f4e", + "title": "2022-12-26 七十二家房客:至亲不如邻(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/a46c9438501ecc19879fb9586040b461.jpg", + "contentType": 3, + "releasedAt": 1672062596000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207111225.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8ffa2c6391444af8c5416ffc07955d4d", + "title": "2022-12-26 七十二家房客:至亲不如邻(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/960f57363ec564afec1bf76b40ec7342.jpg", + "releasedAt": 1672061220000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207111365.m3u8", + "raw": { + "id": "8ffa2c6391444af8c5416ffc07955d4d", + "title": "2022-12-26 七十二家房客:至亲不如邻(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/960f57363ec564afec1bf76b40ec7342.jpg", + "contentType": 3, + "releasedAt": 1672061220000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207111365.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5f5e83b711e385e6ab96eb33563b8514", + "title": "2022-12-26 七十二家房客:", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/4ead2c427ae0dac356afef06a9b6844e.jpg", + "releasedAt": 1672059780000, + "timeLength": 1210, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167207099462.m3u8", + "raw": { + "id": "5f5e83b711e385e6ab96eb33563b8514", + "title": "2022-12-26 七十二家房客:", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/4ead2c427ae0dac356afef06a9b6844e.jpg", + "contentType": 3, + "releasedAt": 1672059780000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167207099462.m3u8\"}", + "timeLength": 1210, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c1115c068bdeee395c69d9c88bb42a25", + "title": "2022-12-25 七十二家房客:风声(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1095035ea1cde9428430cb4a008f968f.jpg", + "releasedAt": 1671974757000, + "timeLength": 1270, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167198103253.m3u8", + "raw": { + "id": "c1115c068bdeee395c69d9c88bb42a25", + "title": "2022-12-25 七十二家房客:风声(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/1095035ea1cde9428430cb4a008f968f.jpg", + "contentType": 3, + "releasedAt": 1671974757000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167198103253.m3u8\"}", + "timeLength": 1270, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7d1ee14041eda7d0c20471d22b0555a7", + "title": "2022-12-25 七十二家房客:风声(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/c7a21f56c4657cefdbc0f237d9f40198.jpg", + "releasedAt": 1671972962000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167198108563.m3u8", + "raw": { + "id": "7d1ee14041eda7d0c20471d22b0555a7", + "title": "2022-12-25 七十二家房客:风声(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/c7a21f56c4657cefdbc0f237d9f40198.jpg", + "contentType": 3, + "releasedAt": 1671972962000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167198108563.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "75efd9a60e469964b791f471c054fd7f", + "title": "2022-12-24 七十二家房客:夫妻本是同林鸟(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/39c89f5c7f011ad69a6846850b95a038.jpg", + "releasedAt": 1671888237000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167189255775.m3u8", + "raw": { + "id": "75efd9a60e469964b791f471c054fd7f", + "title": "2022-12-24 七十二家房客:夫妻本是同林鸟(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/39c89f5c7f011ad69a6846850b95a038.jpg", + "contentType": 3, + "releasedAt": 1671888237000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167189255775.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "917810652af4eb9b7dd3bb7fea5ff876", + "title": "2022-12-24 七十二家房客:满腹疑心(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/065b00e29d78a3f5c7439d2be5555a3f.jpg", + "releasedAt": 1671886558000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202301/167189253145.m3u8", + "raw": { + "id": "917810652af4eb9b7dd3bb7fea5ff876", + "title": "2022-12-24 七十二家房客:满腹疑心(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/065b00e29d78a3f5c7439d2be5555a3f.jpg", + "contentType": 3, + "releasedAt": 1671886558000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202301/167189253145.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bb23f0b030f9ae392b9d11aea7b85e14", + "title": "2022-12-23 七十二家房客:童养媳(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/06342f70927ee4a5853932e8a9edba44.jpg", + "releasedAt": 1671807315000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167187706832.m3u8", + "raw": { + "id": "bb23f0b030f9ae392b9d11aea7b85e14", + "title": "2022-12-23 七十二家房客:童养媳(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/06342f70927ee4a5853932e8a9edba44.jpg", + "contentType": 3, + "releasedAt": 1671807315000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167187706832.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c4a3f970ed76add9bdceba8b77e0d06a", + "title": "2022-12-23 七十二家房客:童养媳(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2198c57e61d6bb91d795f9f8a2a584e1.jpg", + "releasedAt": 1671806056000, + "timeLength": 1233, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167187704049.m3u8", + "raw": { + "id": "c4a3f970ed76add9bdceba8b77e0d06a", + "title": "2022-12-23 七十二家房客:童养媳(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2198c57e61d6bb91d795f9f8a2a584e1.jpg", + "contentType": 3, + "releasedAt": 1671806056000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167187704049.m3u8\"}", + "timeLength": 1233, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "89cd5d1db8d00da80bcfa7cf55664f0c", + "title": "2022-12-23 七十二家房客:为富须有仁(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/6789d2e7f8b6f8b53851c60d92c28d1a.jpg", + "releasedAt": 1671804787000, + "timeLength": 1244, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167180828952.m3u8", + "raw": { + "id": "89cd5d1db8d00da80bcfa7cf55664f0c", + "title": "2022-12-23 七十二家房客:为富须有仁(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/6789d2e7f8b6f8b53851c60d92c28d1a.jpg", + "contentType": 3, + "releasedAt": 1671804787000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167180828952.m3u8\"}", + "timeLength": 1244, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "0419ef56ef203bed63927a609b1247fa", + "title": "2022-12-23 七十二家房客:为富须有仁(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/9937a0daf858142338f8f8c3070ad967.jpg", + "releasedAt": 1671803424000, + "timeLength": 1339, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167180801931.m3u8", + "raw": { + "id": "0419ef56ef203bed63927a609b1247fa", + "title": "2022-12-23 七十二家房客:为富须有仁(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/9937a0daf858142338f8f8c3070ad967.jpg", + "contentType": 3, + "releasedAt": 1671803424000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167180801931.m3u8\"}", + "timeLength": 1339, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9337e5e96394c311368ddfc9697441b4", + "title": "2022-12-23 七十二家房客:炳哥的复仇(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/9634e33cb6fe1effa8ee89dca59eb227.jpg", + "releasedAt": 1671802063000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167180801831.m3u8", + "raw": { + "id": "9337e5e96394c311368ddfc9697441b4", + "title": "2022-12-23 七十二家房客:炳哥的复仇(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/9634e33cb6fe1effa8ee89dca59eb227.jpg", + "contentType": 3, + "releasedAt": 1671802063000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167180801831.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d28923d6f83067c3cfef9d05f8017057", + "title": "2022-12-23 七十二家房客:炳哥的复仇(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/f33da0c51c5a3427163cde122ffb8bf8.jpg", + "releasedAt": 1671800565000, + "timeLength": 1313, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167180802044.m3u8", + "raw": { + "id": "d28923d6f83067c3cfef9d05f8017057", + "title": "2022-12-23 七十二家房客:炳哥的复仇(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/f33da0c51c5a3427163cde122ffb8bf8.jpg", + "contentType": 3, + "releasedAt": 1671800565000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167180802044.m3u8\"}", + "timeLength": 1313, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b4488d3502477cfa1fb85e98b6e3acc8", + "title": "2022-12-22 七十二家房客:军队之光(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/50e174d86de3882c23934a460d4961d3.jpg", + "releasedAt": 1671721020000, + "timeLength": 1232, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167177272190.m3u8", + "raw": { + "id": "b4488d3502477cfa1fb85e98b6e3acc8", + "title": "2022-12-22 七十二家房客:军队之光(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/50e174d86de3882c23934a460d4961d3.jpg", + "contentType": 3, + "releasedAt": 1671721020000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167177272190.m3u8\"}", + "timeLength": 1232, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ecff1f05f3a6ac96d4238fa08750bec9", + "title": "2022-12-22 七十二家房客:横财(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/a5e445ff0947c245ba618612c579e1cc.jpg", + "releasedAt": 1671719739000, + "timeLength": 1255, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167172505571.m3u8", + "raw": { + "id": "ecff1f05f3a6ac96d4238fa08750bec9", + "title": "2022-12-22 七十二家房客:横财(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/a5e445ff0947c245ba618612c579e1cc.jpg", + "contentType": 3, + "releasedAt": 1671719739000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167172505571.m3u8\"}", + "timeLength": 1255, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bfae16d4dc73b818f04ffeb7ffd3b361", + "title": "2022-12-22 七十二家房客:横财(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/0536b25071dacf81cc49c9366c587835.jpg", + "releasedAt": 1671718471000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167172193136.m3u8", + "raw": { + "id": "bfae16d4dc73b818f04ffeb7ffd3b361", + "title": "2022-12-22 七十二家房客:横财(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/0536b25071dacf81cc49c9366c587835.jpg", + "contentType": 3, + "releasedAt": 1671718471000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167172193136.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9199041863c99b590fc7265c1215b384", + "title": "2022-12-22 七十二家房客:茫茫返乡路(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/bcff8975e3fd1d534269af04334384db.jpg", + "releasedAt": 1671717111000, + "timeLength": 1335, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167172166145.m3u8", + "raw": { + "id": "9199041863c99b590fc7265c1215b384", + "title": "2022-12-22 七十二家房客:茫茫返乡路(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/bcff8975e3fd1d534269af04334384db.jpg", + "contentType": 3, + "releasedAt": 1671717111000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167172166145.m3u8\"}", + "timeLength": 1335, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "004181cceee72d0c049635e84c6be4c5", + "title": "2022-12-22 七十二家房客:茫茫返乡路(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/4d65ffaff09ab428b63e3d3a764ca982.jpg", + "releasedAt": 1671715718000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167172169358.m3u8", + "raw": { + "id": "004181cceee72d0c049635e84c6be4c5", + "title": "2022-12-22 七十二家房客:茫茫返乡路(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/4d65ffaff09ab428b63e3d3a764ca982.jpg", + "contentType": 3, + "releasedAt": 1671715718000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167172169358.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "2f50db872a440ad40ec219299693eebd", + "title": "2022-12-22 七十二家房客:人言可畏(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/3583698a67059ef3ee9f5fc8d915fe6e.jpg", + "releasedAt": 1671714195000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167172165960.m3u8", + "raw": { + "id": "2f50db872a440ad40ec219299693eebd", + "title": "2022-12-22 七十二家房客:人言可畏(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/3583698a67059ef3ee9f5fc8d915fe6e.jpg", + "contentType": 3, + "releasedAt": 1671714195000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167172165960.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "7b4a6b778f8c51bc0a5ee2519bc708f6", + "title": "2022-12-21 七十二家房客:禄禄无为(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/7121ab7998b349ac2e423b9e8271f6e2.jpg", + "releasedAt": 1671634630000, + "timeLength": 1277, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167170326574.m3u8", + "raw": { + "id": "7b4a6b778f8c51bc0a5ee2519bc708f6", + "title": "2022-12-21 七十二家房客:禄禄无为(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/7121ab7998b349ac2e423b9e8271f6e2.jpg", + "contentType": 3, + "releasedAt": 1671634630000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167170326574.m3u8\"}", + "timeLength": 1277, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "8150a78693779c6d7c25cc1b2261dd10", + "title": "2022-12-21 七十二家房客:禄禄无为(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/ed02f2577ad5407d0cbb224a0dc36c94.jpg", + "releasedAt": 1671633374000, + "timeLength": 1231, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167170326234.m3u8", + "raw": { + "id": "8150a78693779c6d7c25cc1b2261dd10", + "title": "2022-12-21 七十二家房客:禄禄无为(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/ed02f2577ad5407d0cbb224a0dc36c94.jpg", + "contentType": 3, + "releasedAt": 1671633374000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167170326234.m3u8\"}", + "timeLength": 1231, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "d7d7c5f418ca72956648ddad26b629de", + "title": "2022-12-21 七十二家房客:舍车保帅(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e01ced52fb7107b295ebda8f56ded800.jpg", + "releasedAt": 1671632067000, + "timeLength": 1222, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167170329136.m3u8", + "raw": { + "id": "d7d7c5f418ca72956648ddad26b629de", + "title": "2022-12-21 七十二家房客:舍车保帅(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e01ced52fb7107b295ebda8f56ded800.jpg", + "contentType": 3, + "releasedAt": 1671632067000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167170329136.m3u8\"}", + "timeLength": 1222, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4425a1f1fbca6cac4071d6410d84197b", + "title": "2022-12-21 七十二家房客:舍车保帅(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/781bda34153a99abef7607977f299c7d.jpg", + "releasedAt": 1671630697000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167163546350.m3u8", + "raw": { + "id": "4425a1f1fbca6cac4071d6410d84197b", + "title": "2022-12-21 七十二家房客:舍车保帅(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/781bda34153a99abef7607977f299c7d.jpg", + "contentType": 3, + "releasedAt": 1671630697000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167163546350.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "46521c0d0dff622458c163ca0e9b5f9b", + "title": "2022-12-21 七十二家房客:知恩图报(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e5d8a5a6455827e9939c19d62240f30a.jpg", + "releasedAt": 1671629296000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167163545621.m3u8", + "raw": { + "id": "46521c0d0dff622458c163ca0e9b5f9b", + "title": "2022-12-21 七十二家房客:知恩图报(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e5d8a5a6455827e9939c19d62240f30a.jpg", + "contentType": 3, + "releasedAt": 1671629296000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167163545621.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "3a5904e5c768e39517b93971e6923c99", + "title": "2022-12-21 七十二家房客:知恩图报(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/818f08c982c447c32f88f913ed1849ee.jpg", + "releasedAt": 1671627764000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167163545810.m3u8", + "raw": { + "id": "3a5904e5c768e39517b93971e6923c99", + "title": "2022-12-21 七十二家房客:知恩图报(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/818f08c982c447c32f88f913ed1849ee.jpg", + "contentType": 3, + "releasedAt": 1671627764000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167163545810.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "10efcbb49c33ea513204c844a0f213c4", + "title": "2022-12-21 七十二家房客:知恩图报(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/790008e6793d6e14bf2e53b2da37849a.jpg", + "releasedAt": 1671627764000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167163545989.m3u8", + "raw": { + "id": "10efcbb49c33ea513204c844a0f213c4", + "title": "2022-12-21 七十二家房客:知恩图报(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/790008e6793d6e14bf2e53b2da37849a.jpg", + "contentType": 3, + "releasedAt": 1671627764000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167163545989.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "386da0294e52cdea6eae7320e6ff71ca", + "title": "2022-12-20 七十二家房客:生财厕所", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/5ac45613c0c9c5783eddca3d27b54c7f.jpg", + "releasedAt": 1671548252000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167160280117.m3u8", + "raw": { + "id": "386da0294e52cdea6eae7320e6ff71ca", + "title": "2022-12-20 七十二家房客:生财厕所", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/5ac45613c0c9c5783eddca3d27b54c7f.jpg", + "contentType": 3, + "releasedAt": 1671548252000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167160280117.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e3a31c5c3c74e603daefca9f1884ff53", + "title": "2022-12-20 七十二家房客:我不是潘金莲(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/388959f528c7f1ac82b1d2def6428cce.jpg", + "releasedAt": 1671546967000, + "timeLength": 1259, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167155185472.m3u8", + "raw": { + "id": "e3a31c5c3c74e603daefca9f1884ff53", + "title": "2022-12-20 七十二家房客:我不是潘金莲(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/388959f528c7f1ac82b1d2def6428cce.jpg", + "contentType": 3, + "releasedAt": 1671546967000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167155185472.m3u8\"}", + "timeLength": 1259, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ec2ee3ff21f513a553adec403e04b3a5", + "title": "2022-12-20 七十二家房客:我不是潘金莲(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/65fe80671546474930395408b6248f8e.jpg", + "releasedAt": 1671545637000, + "timeLength": 1245, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167155188549.m3u8", + "raw": { + "id": "ec2ee3ff21f513a553adec403e04b3a5", + "title": "2022-12-20 七十二家房客:我不是潘金莲(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/65fe80671546474930395408b6248f8e.jpg", + "contentType": 3, + "releasedAt": 1671545637000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167155188549.m3u8\"}", + "timeLength": 1245, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "94c6e664fb1849af00a0004958606c66", + "title": "2022-12-20 七十二家房客:绝路求生(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/38cfcc902835c48e22e0d2bba0883707.jpg", + "releasedAt": 1671544266000, + "timeLength": 1344, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167155188331.m3u8", + "raw": { + "id": "94c6e664fb1849af00a0004958606c66", + "title": "2022-12-20 七十二家房客:绝路求生(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/38cfcc902835c48e22e0d2bba0883707.jpg", + "contentType": 3, + "releasedAt": 1671544266000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167155188331.m3u8\"}", + "timeLength": 1344, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e71e956766f63c15fef8232ce0ced975", + "title": "2022-12-20 七十二家房客:绝路求生(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/8e2a72f5b40562ae546cac8eb7b7e454.jpg", + "releasedAt": 1671542880000, + "timeLength": 1270, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167155185355.m3u8", + "raw": { + "id": "e71e956766f63c15fef8232ce0ced975", + "title": "2022-12-20 七十二家房客:绝路求生(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/8e2a72f5b40562ae546cac8eb7b7e454.jpg", + "contentType": 3, + "releasedAt": 1671542880000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167155185355.m3u8\"}", + "timeLength": 1270, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "1e722ee1f0c5aff3fd97c094d96ea109", + "title": "2022-12-20 七十二家房客:蝎子过河(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/b6437e52e3ebf595ec6ccc3f51a2c487.jpg", + "releasedAt": 1671541394000, + "timeLength": 1345, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167155188846.m3u8", + "raw": { + "id": "1e722ee1f0c5aff3fd97c094d96ea109", + "title": "2022-12-20 七十二家房客:蝎子过河(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/b6437e52e3ebf595ec6ccc3f51a2c487.jpg", + "contentType": 3, + "releasedAt": 1671541394000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167155188846.m3u8\"}", + "timeLength": 1345, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "12745445924a5581657a792739e5856b", + "title": "2022-12-19 七十二家房客:风月惜真情(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2c7841fd519f9b12592b6783a79b4790.jpg", + "releasedAt": 1671461804000, + "timeLength": 1276, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167149869125.m3u8", + "raw": { + "id": "12745445924a5581657a792739e5856b", + "title": "2022-12-19 七十二家房客:风月惜真情(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2c7841fd519f9b12592b6783a79b4790.jpg", + "contentType": 3, + "releasedAt": 1671461804000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167149869125.m3u8\"}", + "timeLength": 1276, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "26219b4d2195dcfb616b19a5f67f1ca3", + "title": "2022-12-19 七十二家房客:风月惜真情(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cc869f4978ab57656348d53157543722.jpg", + "releasedAt": 1671460531000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167149872142.m3u8", + "raw": { + "id": "26219b4d2195dcfb616b19a5f67f1ca3", + "title": "2022-12-19 七十二家房客:风月惜真情(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cc869f4978ab57656348d53157543722.jpg", + "contentType": 3, + "releasedAt": 1671460531000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167149872142.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "90bb826debb38501e7b00029fbd2598e", + "title": "2022-12-19 七十二家房客:骨气(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/123bd1e376de363fde0620d27b1982a5.jpg", + "releasedAt": 1671459197000, + "timeLength": 1249, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167146412652.m3u8", + "raw": { + "id": "90bb826debb38501e7b00029fbd2598e", + "title": "2022-12-19 七十二家房客:骨气(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/123bd1e376de363fde0620d27b1982a5.jpg", + "contentType": 3, + "releasedAt": 1671459197000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167146412652.m3u8\"}", + "timeLength": 1249, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "4ecce6a06f88ba7f919ee4adcb43efba", + "title": "2022-12-19 七十二家房客:骨气(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/65a379567008fe3ad61fd81c07013e5a.jpg", + "releasedAt": 1671457841000, + "timeLength": 1331, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167149869664.m3u8", + "raw": { + "id": "4ecce6a06f88ba7f919ee4adcb43efba", + "title": "2022-12-19 七十二家房客:骨气(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/65a379567008fe3ad61fd81c07013e5a.jpg", + "contentType": 3, + "releasedAt": 1671457841000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167149869664.m3u8\"}", + "timeLength": 1331, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "198c73b454ab170493984b2f4b09402a", + "title": "2022-12-19 七十二家房客:最佳保镖(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/8818ec29d61477999913750dd1ed6dde.jpg", + "releasedAt": 1671456470000, + "timeLength": 1269, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167146076335.m3u8", + "raw": { + "id": "198c73b454ab170493984b2f4b09402a", + "title": "2022-12-19 七十二家房客:最佳保镖(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/8818ec29d61477999913750dd1ed6dde.jpg", + "contentType": 3, + "releasedAt": 1671456470000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167146076335.m3u8\"}", + "timeLength": 1269, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "6d00fa15eaeeba49bfb85d811f13227a", + "title": "2022-12-19 七十二家房客:最佳保镖(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e6b33d2fd4c74f72cc161d4bfaae0d58.jpg", + "releasedAt": 1671454979000, + "timeLength": 1336, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167146079898.m3u8", + "raw": { + "id": "6d00fa15eaeeba49bfb85d811f13227a", + "title": "2022-12-19 七十二家房客:最佳保镖(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/e6b33d2fd4c74f72cc161d4bfaae0d58.jpg", + "contentType": 3, + "releasedAt": 1671454979000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167146079898.m3u8\"}", + "timeLength": 1336, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "e4b2e207582df82f87a9af440232226a", + "title": "2022-12-18 七十二家房客:一念之间(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2243b366aa51162339db52f66d2f4aff.jpg", + "releasedAt": 1671369958000, + "timeLength": 1284, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167137490053.m3u8", + "raw": { + "id": "e4b2e207582df82f87a9af440232226a", + "title": "2022-12-18 七十二家房客:一念之间(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/2243b366aa51162339db52f66d2f4aff.jpg", + "contentType": 3, + "releasedAt": 1671369958000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167137490053.m3u8\"}", + "timeLength": 1284, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "de099335b7438911df21d3d45145c812", + "title": "2022-12-18 七十二家房客:一念之间(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/53abd87a174571fd1498a67d77112e5d.jpg", + "releasedAt": 1671368175000, + "timeLength": 1347, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167137489913.m3u8", + "raw": { + "id": "de099335b7438911df21d3d45145c812", + "title": "2022-12-18 七十二家房客:一念之间(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/53abd87a174571fd1498a67d77112e5d.jpg", + "contentType": 3, + "releasedAt": 1671368175000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167137489913.m3u8\"}", + "timeLength": 1347, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "48994989928e755f0fe39aac15b75c00", + "title": "2022-12-17 七十二家房客:如厕风云", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/dd8d8258ee87fb1b10e5b22c4d07075a.jpg", + "releasedAt": 1671283455000, + "timeLength": 1261, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167129090121.m3u8", + "raw": { + "id": "48994989928e755f0fe39aac15b75c00", + "title": "2022-12-17 七十二家房客:如厕风云", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/dd8d8258ee87fb1b10e5b22c4d07075a.jpg", + "contentType": 3, + "releasedAt": 1671283455000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167129090121.m3u8\"}", + "timeLength": 1261, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "c54a894582864839df73d924fd7b8e4e", + "title": "2022-12-17 七十二家房客:亚华做衫", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/ff9392f21696243e1830aeb1bec60014.jpg", + "releasedAt": 1671281772000, + "timeLength": 1337, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167129087390.m3u8", + "raw": { + "id": "c54a894582864839df73d924fd7b8e4e", + "title": "2022-12-17 七十二家房客:亚华做衫", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/ff9392f21696243e1830aeb1bec60014.jpg", + "contentType": 3, + "releasedAt": 1671281772000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167129087390.m3u8\"}", + "timeLength": 1337, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b9c65183554147948c315f40ce6272fe", + "title": "2022-12-16 七十二家房客:家厨", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/3598197d494ffd9c03de37b6fc0039b4.jpg", + "releasedAt": 1671202480000, + "timeLength": 1279, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167120699743.m3u8", + "raw": { + "id": "b9c65183554147948c315f40ce6272fe", + "title": "2022-12-16 七十二家房客:家厨", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/3598197d494ffd9c03de37b6fc0039b4.jpg", + "contentType": 3, + "releasedAt": 1671202480000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167120699743.m3u8\"}", + "timeLength": 1279, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "bec665d194d19580d269f83ae86c92be", + "title": "2022-12-16 七十二家房客:妈仔妈心肝", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/03dc20a6b5d10ade8123797a580b4628.jpg", + "releasedAt": 1671201207000, + "timeLength": 1247, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167120696889.m3u8", + "raw": { + "id": "bec665d194d19580d269f83ae86c92be", + "title": "2022-12-16 七十二家房客:妈仔妈心肝", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/03dc20a6b5d10ade8123797a580b4628.jpg", + "contentType": 3, + "releasedAt": 1671201207000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167120696889.m3u8\"}", + "timeLength": 1247, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "5fe9f091306ee83f7ba11020b0cc2cce", + "title": "2022-12-16 七十二家房客:一张银票(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/ed1cfe7df8b99a40a5774a9d0ab9534c.jpg", + "releasedAt": 1671199944000, + "timeLength": 1237, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167120691497.m3u8", + "raw": { + "id": "5fe9f091306ee83f7ba11020b0cc2cce", + "title": "2022-12-16 七十二家房客:一张银票(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/ed1cfe7df8b99a40a5774a9d0ab9534c.jpg", + "contentType": 3, + "releasedAt": 1671199944000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167120691497.m3u8\"}", + "timeLength": 1237, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "425020b4b589b2b95172fceeec5fd33e", + "title": "2022-12-16 七十二家房客:一张银票(上)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/455234ebb3f9092407197d2ec4d8c7ac.jpg", + "releasedAt": 1671198581000, + "timeLength": 1338, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167120693686.m3u8", + "raw": { + "id": "425020b4b589b2b95172fceeec5fd33e", + "title": "2022-12-16 七十二家房客:一张银票(上)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/455234ebb3f9092407197d2ec4d8c7ac.jpg", + "contentType": 3, + "releasedAt": 1671198581000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167120693686.m3u8\"}", + "timeLength": 1338, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "9f551609b48feb9095ea850839db748b", + "title": "2022-12-16 七十二家房客:门口狗三六九(四)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/5679261f59785cd3835faac340148718.jpg", + "releasedAt": 1671197237000, + "timeLength": 1242, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167120691430.m3u8", + "raw": { + "id": "9f551609b48feb9095ea850839db748b", + "title": "2022-12-16 七十二家房客:门口狗三六九(四)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/5679261f59785cd3835faac340148718.jpg", + "contentType": 3, + "releasedAt": 1671197237000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167120691430.m3u8\"}", + "timeLength": 1242, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "b238a21c1270142a89a39697322ec3de", + "title": "2022-12-16 七十二家房客:门口狗三六九(三)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/534efc3b9219696578b55d6f74906399.jpg", + "releasedAt": 1671195762000, + "timeLength": 1334, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167120691335.m3u8", + "raw": { + "id": "b238a21c1270142a89a39697322ec3de", + "title": "2022-12-16 七十二家房客:门口狗三六九(三)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/534efc3b9219696578b55d6f74906399.jpg", + "contentType": 3, + "releasedAt": 1671195762000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167120691335.m3u8\"}", + "timeLength": 1334, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "df35d12a24ea780e4a4a67106494b3a5", + "title": "2022-12-15 七十二家房客:大院恶少", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/72a5fcae01e9e2523d334d2314ebd1b6.jpg", + "releasedAt": 1671116146000, + "timeLength": 1273, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167115867762.m3u8", + "raw": { + "id": "df35d12a24ea780e4a4a67106494b3a5", + "title": "2022-12-15 七十二家房客:大院恶少", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/72a5fcae01e9e2523d334d2314ebd1b6.jpg", + "contentType": 3, + "releasedAt": 1671116146000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167115867762.m3u8\"}", + "timeLength": 1273, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "cfb4f5233885b025ae3b65afa3674eb9", + "title": "2022-12-15 七十二家房客:事与愿违", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/b11d9ae89385bb3561816c12c2173724.jpg", + "releasedAt": 1671114865000, + "timeLength": 1256, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167115865418.m3u8", + "raw": { + "id": "cfb4f5233885b025ae3b65afa3674eb9", + "title": "2022-12-15 七十二家房客:事与愿违", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/b11d9ae89385bb3561816c12c2173724.jpg", + "contentType": 3, + "releasedAt": 1671114865000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167115865418.m3u8\"}", + "timeLength": 1256, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + }, + { + "id": "ff02a20c63d1d4b0cc88b0215d949783", + "title": "2022-12-15 七十二家房客:捧名角(下)", + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cec45c8d1246a71d0a20f8363871a0a7.jpg", + "releasedAt": 1671113596000, + "timeLength": 1243, + "videoUrl": "https://vod.gdtv.cn/m3u8/202212/167115865027.m3u8", + "raw": { + "id": "ff02a20c63d1d4b0cc88b0215d949783", + "title": "2022-12-15 七十二家房客:捧名角(下)", + "titleStyle": null, + "titleColor": null, + "subTitle": "", + "preSubTitle": null, + "coverUrl": "https://img.grtn.cn/material/mediaserver/img/2022/12/cec45c8d1246a71d0a20f8363871a0a7.jpg", + "contentType": 3, + "releasedAt": 1671113596000, + "readCount": 0, + "author": null, + "objectType": 0, + "memberNum": 0, + "videoUrl": "{\"hd\":\"https://vod.gdtv.cn/m3u8/202212/167115865027.m3u8\"}", + "timeLength": 1243, + "imageCount": 0, + "recentVisitTime": 0, + "keyword": null, + "serialsInfo": null, + "crawlUrl": null, + "newsList": null + } + } + ] +} \ No newline at end of file diff --git a/backServer/lib/cache.js b/backServer/lib/cache.js new file mode 100644 index 0000000..00e3b30 --- /dev/null +++ b/backServer/lib/cache.js @@ -0,0 +1,76 @@ +import fs from 'node:fs' +import path from 'node:path' +import { fileURLToPath } from 'node:url' + +const __filename = fileURLToPath(import.meta.url) +const __dirname = path.dirname(__filename) + +const dataDir = path.resolve(__dirname, '../data') +const cacheFile = path.join(dataDir, 'qishier-cache.json') +const statusFile = path.join(dataDir, 'capture-status.json') + +function ensureDir() { + if (!fs.existsSync(dataDir)) { + fs.mkdirSync(dataDir, { recursive: true }) + } +} + +export function ensureDataFiles() { + ensureDir() + + if (!fs.existsSync(cacheFile)) { + fs.writeFileSync( + cacheFile, + JSON.stringify( + { + updatedAt: null, + name: '七十二家房客', + coverUrl: '', + displayType: 0, + pages: {}, + beginScoreMap: {}, + items: [] + }, + null, + 2 + ), + 'utf-8' + ) + } + + if (!fs.existsSync(statusFile)) { + fs.writeFileSync( + statusFile, + JSON.stringify( + { + running: false, + lastMessage: '未启动采集', + updatedAt: null + }, + null, + 2 + ), + 'utf-8' + ) + } +} + +export function readCache() { + ensureDataFiles() + return JSON.parse(fs.readFileSync(cacheFile, 'utf-8')) +} + +export function writeCache(data) { + ensureDataFiles() + fs.writeFileSync(cacheFile, JSON.stringify(data, null, 2), 'utf-8') +} + +export function readStatus() { + ensureDataFiles() + return JSON.parse(fs.readFileSync(statusFile, 'utf-8')) +} + +export function writeStatus(status) { + ensureDataFiles() + fs.writeFileSync(statusFile, JSON.stringify(status, null, 2), 'utf-8') +}