| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639 |
- -- MySQL dump 10.13 Distrib 8.0.19, for Win64 (x86_64)
- --
- -- Host: 192.168.123.242 Database: data_easy
- -- ------------------------------------------------------
- -- Server version 8.0.36
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!50503 SET NAMES utf8mb4 */;
- /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
- /*!40103 SET TIME_ZONE='+00:00' */;
- /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
- /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
- /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
- /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
- --
- -- Table structure for table `data_da_le_tou`
- --
- DROP TABLE IF EXISTS `data_da_le_tou`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `data_da_le_tou` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `number` varchar(30) NOT NULL COMMENT '开奖号码,以竖杠隔开',
- `number1` varchar(2) DEFAULT NULL COMMENT '特别号码1,第一个尾号',
- `number2` varchar(2) DEFAULT NULL COMMENT '特别号码2,第二个尾号',
- `qihao` char(5) NOT NULL COMMENT '期号',
- `time` char(10) DEFAULT NULL COMMENT '开奖日期',
- `no1num` int NOT NULL DEFAULT '0' COMMENT '一等奖注数',
- `no2num` int NOT NULL DEFAULT '0' COMMENT '二等奖注数',
- `no3num` int NOT NULL DEFAULT '0' COMMENT '三等奖注数',
- `no4num` int NOT NULL DEFAULT '0' COMMENT '四等奖注数',
- `no5num` int NOT NULL DEFAULT '0' COMMENT '五等奖注数',
- `no6num` int NOT NULL DEFAULT '0' COMMENT '六等奖注数',
- `no7num` int NOT NULL DEFAULT '0' COMMENT '七等奖注数',
- `no8num` int NOT NULL DEFAULT '0' COMMENT '八等奖注数',
- `no9num` int NOT NULL DEFAULT '0' COMMENT '九等奖注数',
- `no1money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '一等奖金额',
- `no2money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '二等奖金额',
- `no3money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '三等奖金额',
- `no4money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '四等奖金额',
- `no5money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '五等奖金额',
- `no6money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '六等奖金额',
- `no7money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '七等奖金额',
- `no8money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '八等奖金额',
- `no9money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '九等奖金额',
- `name` varchar(30) DEFAULT NULL COMMENT '彩票名称',
- `xiaoshou` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '销售额',
- `jiangchi` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '奖池金额',
- `endtime` char(19) DEFAULT NULL COMMENT '截止兑奖时间',
- `no1numjia` int NOT NULL DEFAULT '0' COMMENT '一等奖追加注数',
- `no1moneyjia` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '一等奖追加奖金',
- `no2numjia` int NOT NULL DEFAULT '0' COMMENT '二等奖追加注数',
- `no2moneyjia` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '二等奖追加奖金',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='大乐透数据表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `data_da_le_tou`
- --
- LOCK TABLES `data_da_le_tou` WRITE;
- /*!40000 ALTER TABLE `data_da_le_tou` DISABLE KEYS */;
- INSERT INTO `data_da_le_tou` VALUES (21,'02|03|07|17|30|01|09','1','9','25026',NULL,1,80,194,922,20755,33244,43895,923286,9364895,10000000.00,161515.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313696373.00,1039296516.67,NULL,0,-1.00,21,129212.00,2,'2025-03-13 02:22:57',2,'2025-03-13 02:22:57',1,0),(32,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,NULL,4,7123324.00,43,102019.00,4,'2025-03-18 01:03:31',4,'2025-03-18 03:20:47',1,1),(33,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,'2025-05-16 23:59:59',4,7123324.00,43,102019.00,4,'2025-03-18 01:11:06',4,'2025-03-18 03:20:47',1,1),(34,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,'2025-05-16 23:59:59',4,7123324.00,43,102019.00,4,'2025-03-18 03:13:12',4,'2025-03-18 03:20:47',1,1),(35,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,'2025-05-16 23:59:59',4,7123324.00,43,102019.00,4,'2025-03-18 03:14:37',4,'2025-03-18 03:20:47',1,1),(36,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,'2025-05-16 23:59:59',4,7123324.00,43,102019.00,4,'2025-03-18 03:16:23',4,'2025-03-18 03:20:47',1,1),(37,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,'2025-05-16 23:59:59',4,7123324.00,43,102019.00,4,'2025-03-18 03:18:34',4,'2025-03-18 03:20:47',1,1),(38,'06|08|20|25|29|03|07','3','7','25028','2025-03-17',7,103,221,969,19622,29414,38288,823182,8204713,8904156.00,127524.00,10000.00,3000.00,300.00,200.00,100.00,15.00,5.00,'超级大乐透',313737340.00,1006966152.10,'2025-05-16 23:59:59',4,7123324.00,43,102019.00,4,'2025-03-18 03:20:47',4,'2025-03-18 03:20:47',1,0);
- /*!40000 ALTER TABLE `data_da_le_tou` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `data_ipo_bond`
- --
- DROP TABLE IF EXISTS `data_ipo_bond`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `data_ipo_bond` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `bond_code` varchar(10) NOT NULL COMMENT '债券代码',
- `bond_short_name` varchar(30) NOT NULL COMMENT '债券简称',
- `announcement_date` date DEFAULT NULL COMMENT '公告日期',
- `issue_start_date` date DEFAULT NULL COMMENT '发行起始日',
- `issue_end_date` date DEFAULT NULL COMMENT '发行终止日',
- `planned_issue_amount` decimal(22,4) DEFAULT NULL COMMENT '计划发行总量',
- `actual_issue_amount` decimal(22,4) DEFAULT NULL COMMENT '实际发行总量',
- `issue_par_value` decimal(20,2) DEFAULT NULL COMMENT '发行面值',
- `issue_price` decimal(20,2) DEFAULT NULL COMMENT '发行价格',
- `issue_method` varchar(200) DEFAULT NULL COMMENT '发行方式',
- `issue_target` varchar(2000) DEFAULT NULL COMMENT '发行对象',
- `issue_scope` varchar(200) DEFAULT NULL COMMENT '发行范围',
- `underwriting_method` varchar(30) DEFAULT NULL COMMENT '承销方式',
- `fundraising_purpose` varchar(200) DEFAULT NULL COMMENT '募资用途说明',
- `initial_conversion_price` decimal(20,2) DEFAULT NULL COMMENT '初始转股价格',
- `conversion_start_date` date DEFAULT NULL COMMENT '转股开始日期',
- `conversion_end_date` date DEFAULT NULL COMMENT '转股终止日期',
- `online_subscription_date` date DEFAULT NULL COMMENT '网上申购日期',
- `online_subscription_code` varchar(10) DEFAULT NULL COMMENT '网上申购代码',
- `online_subscription_short_name` varchar(30) DEFAULT NULL COMMENT '网上申购简称',
- `online_subscription_max` decimal(20,2) DEFAULT NULL COMMENT '网上申购数量上限',
- `online_subscription_min` decimal(20,2) DEFAULT NULL COMMENT '网上申购数量下限',
- `online_subscription_unit` decimal(20,2) DEFAULT NULL COMMENT '网上申购单位',
- `online_subscription_result_date` date DEFAULT NULL COMMENT '网上申购中签结果公告日及退款日',
- `priority_subscription_date` date DEFAULT NULL COMMENT '优先申购日',
- `allotment_price` decimal(20,2) DEFAULT NULL COMMENT '配售价格',
- `creditor_registration_date` date DEFAULT NULL COMMENT '债权登记日',
- `priority_subscription_payment_date` date DEFAULT NULL COMMENT '优先申购缴款日',
- `conversion_code` varchar(10) DEFAULT NULL COMMENT '转股代码',
- `trading_market` varchar(30) DEFAULT NULL COMMENT '交易市场',
- `bond_name` varchar(100) DEFAULT NULL COMMENT '债券名称',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='新债数据表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `data_ipo_bond`
- --
- LOCK TABLES `data_ipo_bond` WRITE;
- /*!40000 ALTER TABLE `data_ipo_bond` DISABLE KEYS */;
- INSERT INTO `data_ipo_bond` VALUES (1,'118052','浩瀚转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人的原股东优先配售:发行公告公布的股权登记日(即2025年3月12日,T-1日)收市后中国结算上海分公司登记在册的发行人所有A股股东。(2)网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','补充资金,项目建设',24.38,NULL,NULL,'2025-03-17','718292','浩瀚发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'688292','上交所','2025年北京浩瀚深度信息技术股份有限公司向不特定对象发行可转换公司债券',2,'2025-03-13 02:47:26',2,'2025-03-17 08:21:35',1,0),(2,'123253','永贵转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售发行人在股权登记日(2025年3月12日,T-1日)收市后中国证券登记结算有限责任公司深圳分公司(以下简称“中国结算深圳分公司”或“登记公司”)登记在册的发行人所有股东。(2)网上发行持有深交所证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。其中自然人需根据《关于完善可转换公司债券投资者适当性管理相关事项的通知》(深证上〔2023〕511号)等规定已开通向不特定对象发行的可转债交易权限。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','深交所综合协议交易平台','余额包销','连接器智能化及超充产业升级项目、华东基地产业建设项目、研发中心升级项目,补充流动资金',18.29,NULL,NULL,NULL,'370351','永贵发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'300351','深交所','2025年浙江永贵电器股份有限公司向不特定对象发行可转换公司债券',2,'2025-03-13 02:47:26',2,'2025-03-13 02:47:26',1,0),(5,'113693','志邦转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,NULL,NULL,NULL,'754801','志邦发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 00:46:06',4,'2025-03-18 00:46:06',1,0),(6,'118053','正帆转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,NULL,NULL,NULL,'718596','正帆发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 00:46:06',4,'2025-03-18 00:46:06',1,0),(7,'113693','志邦转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,NULL,NULL,NULL,'754801','志邦发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 00:47:19',4,'2025-03-18 00:47:19',1,0),(8,'118053','正帆转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,NULL,NULL,NULL,'718596','正帆发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 00:47:19',4,'2025-03-18 00:47:19',1,0),(9,'113693','志邦转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,NULL,NULL,NULL,'754801','志邦发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:15:38',4,'2025-03-18 01:15:38',1,0),(10,'118053','正帆转债',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,NULL,NULL,NULL,'718596','正帆发债',NULL,0.10,0.10,NULL,NULL,NULL,NULL,NULL,'688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:15:38',4,'2025-03-18 01:15:38',1,0),(11,'113693','志邦转债',NULL,NULL,NULL,67000.0000,67000.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,NULL,NULL,NULL,'754801','志邦发债',NULL,0.10,0.10,NULL,NULL,100.00,NULL,NULL,'603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:23:06',4,'2025-03-18 01:23:06',1,0),(12,'118053','正帆转债',NULL,NULL,NULL,104109.5000,104110.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,NULL,NULL,NULL,'718596','正帆发债',NULL,0.10,0.10,NULL,NULL,100.00,NULL,NULL,'688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:23:06',4,'2025-03-18 01:23:06',1,0),(13,'113693','志邦转债','2025-03-14','2025-03-18','2025-03-18',67000.0000,67000.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,'2025-09-24','2025-03-17','2025-03-18','754801','志邦发债',NULL,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:30:09',4,'2025-03-18 03:30:05',1,1),(14,'118053','正帆转债','2025-03-14','2025-03-18','2025-03-18',104109.5000,104110.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,'2025-09-24','2025-03-17','2025-03-18','718596','正帆发债',NULL,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:30:09',4,'2025-03-18 03:30:05',1,1),(15,'113693','志邦转债','2025-03-14','2025-03-18','2025-03-18',67000.0000,67000.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,'2025-09-24','2025-03-17','2025-03-18','754801','志邦发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:32:10',4,'2025-03-18 03:30:05',1,1),(16,'118053','正帆转债','2025-03-14','2025-03-18','2025-03-18',104109.5000,104110.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,'2025-09-24','2025-03-17','2025-03-18','718596','正帆发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 01:32:10',4,'2025-03-18 03:30:05',1,1),(17,'113693','志邦转债','2025-03-14','2025-03-18','2025-03-18',67000.0000,67000.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,'2025-09-24','2025-03-17','2025-03-18','754801','志邦发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 03:30:05',4,'2025-03-18 04:58:19',1,1),(18,'118053','正帆转债','2025-03-14','2025-03-18','2025-03-18',104109.5000,104110.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,'2025-09-24','2025-03-17','2025-03-18','718596','正帆发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 03:30:05',4,'2025-03-18 04:58:19',1,1),(19,'113693','志邦转债','2025-03-14','2025-03-18','2025-03-18',67000.0000,67000.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,'2025-09-24','2025-03-17','2025-03-18','754801','志邦发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 04:58:19',4,'2025-03-18 05:15:35',1,1),(20,'118053','正帆转债','2025-03-14','2025-03-18','2025-03-18',104109.5000,104110.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,'2025-09-24','2025-03-17','2025-03-18','718596','正帆发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 04:58:19',4,'2025-03-18 05:15:35',1,1),(21,'113693','志邦转债','2025-03-14','2025-03-18','2025-03-18',67000.0000,67000.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','(1)向发行人原股东优先配售:发行公告公布的股权登记日(2025年3月17日,T-1日)收市后登记在册的发行人所有A股股东。发行人现有总股本436,505,813股,扣除回购专用账户100股,剩余436,505,713股全部可参与原股东优先配售。(2)网上发行:发行对象包括持有中国证券登记结算有限责任公司上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。(3)本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','清远智能生产基地(一二期)建设项目、数字化升级项目,补充流动资金',12.12,'2025-09-24','2025-03-17','2025-03-18','754801','志邦发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','603801','上交所','2025年志邦家居股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 05:15:35',4,'2025-03-18 05:15:35',1,0),(22,'118053','正帆转债','2025-03-14','2025-03-18','2025-03-18',104109.5000,104110.0000,100.00,100.00,'网上优先配售,交易所系统网上向社会公众投资者发行','1、向发行人原股东优先配售:发行公告公布的股权登记日2025年3月17日(T-1日)收市后登记在册的公司所有A股股东。2、网上发行:持有中国结算上海分公司证券账户的自然人、法人、证券投资基金、符合法律规定的其他投资者等(国家法律、法规禁止者除外)。参与可转债申购的投资者应当符合《关于可转换公司债券适当性管理相关事项的通知》(上证发〔2022〕91号)的相关要求。3、本次发行的保荐人(主承销商)的自营账户不得参与网上申购。','上交所固定收益平台','余额包销','项目建设,补充流动资金及偿还银行贷款',38.85,'2025-09-24','2025-03-17','2025-03-18','718596','正帆发债',100.00,0.10,0.10,'2025-03-20','2025-03-18',100.00,'2031-03-17','2025-03-18','688596','上交所','2025年上海正帆科技股份有限公司向不特定对象发行可转换公司债券',4,'2025-03-18 05:15:35',4,'2025-03-18 05:15:35',1,0);
- /*!40000 ALTER TABLE `data_ipo_bond` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `data_ipo_stock`
- --
- DROP TABLE IF EXISTS `data_ipo_stock`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `data_ipo_stock` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `stock_code` varchar(10) NOT NULL COMMENT '股票代码',
- `stock_short_name` varchar(30) NOT NULL COMMENT '股票简称',
- `subscription_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '申购代码',
- `total_issued` decimal(22,4) DEFAULT NULL COMMENT '发行总数',
- `online_issued` decimal(22,4) DEFAULT NULL COMMENT '网上发行',
- `max_market_value_for_subscription` decimal(22,4) DEFAULT NULL COMMENT '顶格申购需配市值',
- `subscription_limit` int DEFAULT NULL COMMENT '申购上限',
- `issue_price` decimal(20,2) DEFAULT NULL COMMENT '发行价格',
- `latest_price` decimal(20,2) DEFAULT NULL COMMENT '最新价',
- `first_day_closing_price` decimal(20,2) DEFAULT NULL COMMENT '首日收盘价',
- `subscription_date` date DEFAULT NULL COMMENT '申购日期',
- `winning_number_announcement_date` date DEFAULT NULL COMMENT '中签号公布日',
- `payment_date_for_winning` date DEFAULT NULL COMMENT '中签缴款日期',
- `listing_date` date DEFAULT NULL COMMENT '上市日期',
- `issue_p_e_ratio` decimal(5,2) DEFAULT NULL COMMENT '发行市盈率',
- `industry_p_e_ratio` decimal(5,2) DEFAULT NULL COMMENT '行业市盈率',
- `winning_rate` decimal(11,10) DEFAULT NULL COMMENT '中签率',
- `cumulative_bid_multiple` decimal(20,2) DEFAULT NULL COMMENT '询价累计报价倍数',
- `bidding_firms_count` int DEFAULT NULL COMMENT '配售对象报价家数',
- `consecutive_limit_up_days` varchar(10) DEFAULT NULL COMMENT '连续一字板数量',
- `increase_rate` decimal(20,2) DEFAULT NULL COMMENT '涨幅',
- `profit_per_winning_lot` decimal(20,2) DEFAULT NULL COMMENT '每中一签获利',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='新股数据表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `data_ipo_stock`
- --
- LOCK TABLES `data_ipo_stock` WRITE;
- /*!40000 ALTER TABLE `data_ipo_stock` DISABLE KEYS */;
- INSERT INTO `data_ipo_stock` VALUES (156,'920029','开发科技','920029',3346.6667,26773334.0000,4829.2048,1589600,30.38,NULL,NULL,'2025-03-18',NULL,NULL,NULL,8.15,39.35,NULL,NULL,NULL,NULL,NULL,NULL,4,'2025-03-18 03:31:14',4,'2025-03-18 03:39:18',1,1),(157,'920029','开发科技','920029',3346.6667,26773334.0000,4829.2048,1589600,30.38,NULL,NULL,'2025-03-18',NULL,NULL,NULL,8.15,39.35,NULL,NULL,NULL,NULL,NULL,NULL,4,'2025-03-18 03:39:18',4,'2025-03-18 05:15:54',1,1),(158,'920029','开发科技','920029',3346.6667,26773334.0000,4829.2048,1589600,30.38,NULL,NULL,'2025-03-18',NULL,NULL,NULL,8.15,39.35,NULL,NULL,NULL,NULL,NULL,NULL,4,'2025-03-18 05:15:54',4,'2025-03-18 05:15:54',1,0);
- /*!40000 ALTER TABLE `data_ipo_stock` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `data_product_hunt_post`
- --
- DROP TABLE IF EXISTS `data_product_hunt_post`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `data_product_hunt_post` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `rank_date` date NOT NULL COMMENT '榜单日期',
- `rank_num` int NOT NULL COMMENT '排名位置',
- `post_id` bigint NOT NULL COMMENT '帖子ID',
- `name` varchar(200) NOT NULL COMMENT '帖子名称',
- `tagline` varchar(300) DEFAULT NULL COMMENT '帖子的标语',
- `description` varchar(1000) DEFAULT NULL COMMENT '帖子信息',
- `description_key` varchar(500) DEFAULT NULL COMMENT '信息中的关键词',
- `key` varchar(500) DEFAULT NULL COMMENT '关键词',
- `votes_count` int DEFAULT '0' COMMENT '投票数',
- `created_at` timestamp NULL DEFAULT NULL COMMENT '帖子的创建日期和时间',
- `featured_at` timestamp NULL DEFAULT NULL COMMENT '帖子被特色展示的日期和时间',
- `website` varchar(500) DEFAULT NULL COMMENT '指向该帖子网站的重定向 URL',
- `url` varchar(500) DEFAULT NULL COMMENT '帖子URL',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Product Hunt榜单的帖子数据';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `data_product_hunt_post`
- --
- LOCK TABLES `data_product_hunt_post` WRITE;
- /*!40000 ALTER TABLE `data_product_hunt_post` DISABLE KEYS */;
- INSERT INTO `data_product_hunt_post` VALUES (1,'2025-03-17',1,941859,'Freepik AI Video Upscaler','一键将视频升级至4K','使用视频升级器为您的视频带来高质量完成。升级至4K分辨率,并将每秒帧数提升至60帧。现已在Freepik AI套件中提供。','视频升级,4K分辨率,60帧',NULL,485,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/J76ZVJGVUDKFQA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/freepik-ai-video-upscaler?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(2,'2025-03-17',2,910704,'agent.ai','AI代理的#1专业网络','这是AI代理及其爱好者们的#1(也是唯一)专业网络和市集。用户可以发现、联系并雇佣AI代理完成有用任务。开发者可使用无代码平台、数据工具和前沿大模型创建高级代理。','AI代理,专业网络,市场',NULL,439,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XRA3TW3ZMCBSPM?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agent-ai-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(3,'2025-03-17',3,909200,'touch grass','减少你的屏幕时间','通过我们的AI验证真实草地,阻止你使用应用直到你真正接触草地。通过外出减少屏幕时间。🌱','减少屏幕时间,AI验证,户外活动',NULL,404,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/O22QETJCU5EE42?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/touch-grass?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(4,'2025-03-17',4,887501,'Factory.fm','音乐评价应用','欢迎来到音乐评价应用!我们是“音乐的Letterboxd”。你可以评价、评论并追踪你正在听的音乐。从其他音乐狂热者那里发现新音乐,并创建一个带有你最爱专辑的个人资料(没错,就像MySpace Top 8!)','音乐评价,音乐发现,个人资料',NULL,264,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LUW36RFIGYQWWN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/factory-fm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(5,'2025-03-17',5,938306,'AgBr','适用于iPhone、iPad和Mac的黑白胶片模拟器','AgBr是一款适用于iPhone/iPad/Mac的黑白胶片模拟器。简洁的界面使得使用11种胶片重现处理照片变得简单。免费下载,高级处理和导出选项可通过一次应用内购买获得。','黑白胶片模拟,iPhone,iPad,Mac',NULL,239,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/TMHQFJQ2ZB5AGY?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agbr?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(6,'2025-03-17',6,941921,'Pi','为软件工程师打造的ML与数据科学工具包','Pi是一款包含30多种AI技术的工具包,旨在提升你的AI应用质量。Pi首先构建你的评分系统以捕捉应用需求,然后针对它编译30多种优化器——自动提示优化、搜索排名、强化学习等。','机器学习,数据科学,软件工程师',NULL,175,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ROOHXPAMSTICRV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-6?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(7,'2025-03-17',7,939408,'Bettermode','你的全能客户社区平台','Bettermode是一款增强AI功能的全能社区平台。它将所有社区工具统一为一个单一、连贯的解决方案,为品牌提供一个动态、可扩展的空间,让客户轻松连接、参与和成长。','客户社区,AI功能,统一平台',NULL,172,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/RUKQQCHCYNJMIV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/bettermode?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(8,'2025-03-17',8,941290,'JOOS©','投资内容创作者,加速他们的成长','JOOS让投资者通过分享未来收入的方式资助创作者。资本推动增长——广告、团队扩展、更好的内容。随着创作者赚得更多,投资者也获利。这是一个可扩展、透明的投资数字人才的方式。🚀','内容创作者,投资,增长加速',NULL,164,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/I3BVE3MZTV4UFE?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/joos?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(9,'2025-03-17',9,941519,'Gemini Robotics','将AI带入物理世界','来自Google Deepmind的Gemini Robotics是基于Gemini 2.0的AI模型,适用于机器人。多模态、通用、互动且灵巧。为ALOHA 2、Apptronik Apollo等提供动力。','AI,物理世界,机器人',NULL,146,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/KXIJOH4X567PN7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/gemini-robotics?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(10,'2025-03-17',10,941942,'Proxy DeepWork','用AI代理自动化复杂工作流','DeepWork是Convergence的Proxy.A的重大更新,通过一组AI代理自动化复杂的多步骤工作流。描述你的目标,DeepWork处理其余部分。','自动化,复杂工作流,AI代理',NULL,138,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/53KWM4GGKM6PSA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/proxy-deepwork?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(11,'2025-03-17',11,911261,'Clickma','让Figma与ClickUp保持同步','厌倦了寻找正确的Figma屏幕?手动更新ClickUp?Clickma即时连接你的设计和任务——让你的团队保持同步,工作更高效,不再错过重要事项。无需再搜索、切换或犹豫不决。','Figma,ClickUp,同步,设计,任务,团队协作',NULL,128,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CWUMZAUFAOCWDN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/clickma?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(12,'2025-03-17',12,941917,'CharmBar','Mac dock图标自定义应用,个性化你的macOS dock','CharmBar让你可以用表情符号、PNG或JPG自定义Mac应用图标在dock中的显示。一次性付费,无需订阅。为你的macOS dock增添一点个性吧!','Mac,dock,图标,自定义,表情符号',NULL,126,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ARAG56Z3C4NNJZ?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/charmbar?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(13,'2025-03-17',13,941826,'Amiry – AI-Powered Smart City Routes','无需规划,探索任何城市','Amiry是一款AI驱动的城市指南,能在几秒内构建个性化路线。只需输入你的时间、兴趣和交通方式——步行、骑车或跑步——然后轻松探索。无需规划,无需研究,只有最佳景点和实时语音导航。','城市探索,AI,个性化路线,实时语音导航',NULL,123,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XBYZSSTWTV7WSF?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/amiry-ai-powered-smart-city-routes?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(14,'2025-03-17',14,941450,'Zuni','在你的Chrome侧边栏中与所有最新AI模型聊天','Zuni是一款Chrome侧边栏扩展,提供对诸如ChatGPT 4o、Claude 3.7 Sonnet、Gemini Flash 2.0和DeepSeek R1等高级AI模型的超快访问。聊天记录本地存储,永不触及我们的服务器,并在传输中加密。','Chrome,侧边栏,AI模型,加密,本地存储',NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/3RXJNPEPLC3CBS?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/zuni?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(15,'2025-03-17',15,942018,'Pi Digits Challenge','今天是Pi日!你记得多少位?','一个可以测试你记得多少位Pi的网站,查看高分和排行榜。','Pi,记忆测试,排行榜',NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CIZ54HF65AYYRD?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-digits-challenge?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(16,'2025-03-17',16,941873,'Ai Agents for Machines','为机器构建你自己的AI代理!','这个平台让你能构建并测试自己的AI代理,实现用户与机器之间的无缝交互。通过利用OPC UA通信协议,它读取传感器变量并控制执行器,以根据用户需求执行操作。','AI代理,机器交互,OPC UA,传感器,执行器',NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LU2RXTEDKAYPG3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ai-agents-for-machines?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(17,'2025-03-17',17,940565,'Fuego','用于管理Firestore数据库的桌面应用','Fuego是一款桌面应用,简化了Firestore和Firebase Auth的管理,提供批量操作、高效的数据导入/导出、后台任务、时间点恢复、自定义仪表板、高级查询和模拟器集成,以加速工作流程。','桌面应用,Firestore,Firebase,数据管理',NULL,109,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/UJPNCJ2E25UDZ7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/fuego-2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(18,'2025-03-17',18,941860,'Hal9 Reply','回复任何消息','Chrome扩展,用AI回复任何社交媒体消息。支持的平台包括LinkedIn、X、Gmail、Reddit、Instagram、GitHub等众多网站。','Chrome扩展,AI回复,社交媒体,多平台支持',NULL,104,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/RBRXW6OJH7ABVC?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/hal9-reply?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(19,'2025-03-17',19,941803,'LoadFast Snippet Expander','闪电般快速的文本扩展,无限代码片段,现代UI','最佳Google Chrome扩展,用于插入代码片段、模板和宏。最棒的部分?你可以在扩展内完成所有操作(创建、编辑或删除代码片段)——无需繁琐,只有速度。你会惊讶自己之前怎么没有这个功能!','文本扩展,Chrome扩展,代码片段,模板,快速操作',NULL,92,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ZAQWATQGN3A6M2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/loadfast-snippet-expander?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(20,'2025-03-17',20,937750,'Sooper.ai','通过AI生成的音频播客关注内容网站','Sooper允许用户以每日AI生成的音频播客形式关注任何内容源。它跟踪网站上的最新文章,将其总结为互动音频播客,并以每日播客的形式推送给你。','AI音频播客,内容跟踪,每日播客,摘要',NULL,66,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/PMMFG57TW3OHEK?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/sooper-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(21,'2025-03-17',21,765451,'Ad Alchemy','AI驱动的Google广告解决方案','由业内领袖打造,他们管理过超过5亿美元的Google广告,拥有超过20年的行业经验,Ad Alchemy结合尖端工具和经过验证的策略,推动增长。','AI解决方案,Google广告,行业领导',NULL,62,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/BUTQ4DOSBPS2JO?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ad-alchemy?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(22,'2025-03-17',22,938379,'Prolific Alpha','利用尖端AI解锁股市智能','我们的AI驱动平台将复杂的股票数据转化为清晰、可操作的日常投资者洞察,使用大型语言模型综合图表模式和新闻,形成全面的市场智能。','AI平台,股票市场,投资洞察',NULL,59,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/ZELTMCE2JN7L6T?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/prolific-alpha?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(23,'2025-03-17',23,941276,'KreadoAI Video Face Swap','一键获取工作室质量的换脸视频','轻松创建超现实的换脸视频。只需一键即可跨越性别、肤色和年龄换脸。我们增强的视频换脸技术提供工作室质量的效果,非常适合追求精确和创意的创作者和专业人士。','视频换脸,一键操作,工作室质量',NULL,54,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/S2GH5IQUTUXN4D?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/kreadoai-video-face-swap?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(24,'2025-03-17',24,934878,'Cyclops','构建内部开发者平台的开源工具','Cyclops是一个开源工具,允许公司在几天而不是几个月内为Kubernetes构建开发者平台。它使DevOps工程师能够为Kubernetes创建自定义UI,使其对开发人员更加可访问。','开源工具,内部开发者平台,Kubernetes',NULL,48,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/2RDQWYCGOJ4QF4?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cyclops-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(25,'2025-03-17',25,941958,'Copyright Registration - SecureAuthor','用SecureAuthor保护并证明您的创作','SecureAuthor——通过区块链收据即时证明著作权。无需费用、律师或文书工作——只需为您的设计、代码、文档等提供即时、可验证的证明。轻松保护您的作品,受到全球创作者和企业的信赖。','版权保护,区块链,创作者',NULL,47,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/HIWF5SDTI6VMWX?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/copyright-registration-secureauthor?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(26,'2025-03-17',26,880802,'Cresh','在几分钟内分析和优化商业想法','Cresh是一个多代理商业研究和分析工具,旨在增强和改进您的商业想法。回答关键问题,获取AI驱动的洞察,并在一个地方做出数据支持的决策。','商业分析,AI洞察,数据驱动决策',NULL,38,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/FUDJH6TQIN4ZFA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cresh?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(27,'2025-03-17',27,941667,'Nexus','专为AI团队打造的AI管理代码质量和工作流程','厌倦了瓶颈?Nexus通过AI代理、看板板和聊天机器人自动化冲刺跟踪、代码质量检查、错误发现和DevOps监控,为开发的每个阶段带来实时可见性和洞察。','代码质量,AI管理,开发流程',NULL,35,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/KXIBF4UYYCXPHB?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/nexus-10?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(28,'2025-03-17',28,941738,'IncredEmail AI','用AI在5分钟内创建高转化率的电子邮件','大多数电子邮件构建器复杂且未为转化优化。IncredEmail AI旨在快速轻松地创建高转化率的电子邮件,无需编码。AI驱动的模板、像素完美布局和无代码编辑器使电子邮件设计变得轻松。','电子邮件,AI模板,无代码编辑器',NULL,29,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/U5CRYOKVQJWWE7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/incredemail-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(29,'2025-03-17',29,938672,'Headless Site Directory','高性能无头网站列表','探索在速度、设计和创新方面设定新标准的高性能无头网站。发现领先的电子商务、React JS和组合项目。','无头网站,高性能,创新设计',NULL,20,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/UZAKIMBSDNTB4X?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/headless-site-directory?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(30,'2025-03-17',30,940719,'Senrigan','用远程视觉超越视野','一个令人兴奋的探索领域,众多迷人的地方等待您的发现。','远程视觉,探索,发现',NULL,18,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/K6N7KJCC3HZUS3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/senrigan?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 00:54:20',4,'2025-03-18 05:10:48',1,1),(31,'2025-03-17',1,941859,'Freepik AI Video Upscaler','Upscale videos up to 4K in one click','Give your videos a high-quality finish with the Video Upscaler. Upscale to 4K resolution and increase frames per second to 60 fps. Available now in the Freepik AI Suite.',NULL,NULL,485,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/J76ZVJGVUDKFQA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/freepik-ai-video-upscaler?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(32,'2025-03-17',2,910704,'agent.ai','The #1 Professional Network for AI Agents','The #1 (and only) professional network and marketplace for AI agents and the people who love them. Users can discover, connect, and hire AI agents for useful tasks. Builders create advanced agents with a no-code platform, data tools, and frontier LLMs.',NULL,NULL,439,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XRA3TW3ZMCBSPM?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agent-ai-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(33,'2025-03-17',3,909200,'touch grass','reduce your screen time','block your apps until you literally touch grass. our ai verifies it\'s real grass - no cheating. decrease your screen time by getting outside. 🌱',NULL,NULL,404,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/O22QETJCU5EE42?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/touch-grass?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(34,'2025-03-17',4,887501,'Factory.fm','The music review app','Welcome to the music review app! We are the \"Letterboxd for music\". You can rate, review and track the music you\'re listening to. Discover new music from other music obsessives and create a profile with your favorite albums (yes, just like the MySpace Top 8!)',NULL,NULL,264,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LUW36RFIGYQWWN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/factory-fm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(35,'2025-03-17',5,938306,'AgBr','Black & white film emulator for iPhone, iPad & Mac','AgBr is a black & white film emulator for iPhone/iPad/Mac. A minimal interface that makes it straightforward to process your photos with 11 film recreations. Free to download, with advanced processing & export options available for a one-time in app purchase.',NULL,NULL,239,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/TMHQFJQ2ZB5AGY?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agbr?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(36,'2025-03-17',6,941921,'Pi','The ML & Data Science toolkit; built for Software Engineers.','Pi is a toolkit of 30+ AI techniques designed to boost the quality of your AI apps. Pi first builds your scoring system to capture your application requirements and then compiles 30+ optimizers against it - automated prompt opt., search ranking, RL & more.',NULL,NULL,175,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ROOHXPAMSTICRV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-6?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(37,'2025-03-17',7,939408,'Bettermode','Your All-in-One Customer Community Platform','Bettermode is an all-in-one community platform enhanced with AI-powered features. It unifies all your community tools into a single, cohesive solution, empowering your brand with a dynamic, scalable space where customers effortlessly connect, engage, and grow.',NULL,NULL,172,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/RUKQQCHCYNJMIV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/bettermode?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(38,'2025-03-17',8,941290,'JOOS©','Invest in content creators, accelerate their growth','JOOS lets investors fund creators in exchange for a share of future revenue. Capital fuels growth—ads, team expansion, better content. As creators earn more, investors profit. A scalable, transparent way to invest in digital talent. 🚀',NULL,NULL,164,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/I3BVE3MZTV4UFE?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/joos?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(39,'2025-03-17',9,941519,'Gemini Robotics','Bringing AI into the Physical World','Gemini Robotics from Google Deepmind, is the Gemini 2.0-based AI models for robots. Multimodal, general, interactive, and dexterous. Powers ALOHA 2, Apptronik Apollo, and more.',NULL,NULL,146,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/KXIJOH4X567PN7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/gemini-robotics?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(40,'2025-03-17',10,941942,'Proxy DeepWork','Automate Complex Workflows with AI Agents','DeepWork is the major update for Convergence\'s Proxy.Aautomate complex, multi-step workflows with a team of AI agents. Describe your goal, and DeepWork handles the rest.',NULL,NULL,138,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/53KWM4GGKM6PSA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/proxy-deepwork?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(41,'2025-03-17',11,911261,'Clickma',' Keep Figma & ClickUp in sync','Tired of hunting for the right Figma screen? Updating ClickUp manually? Clickma connects your designs and tasks instantly—so your team stays aligned, works faster, and never loses track of what matters. No more searching, switching, or second-guessing.',NULL,NULL,128,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CWUMZAUFAOCWDN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/clickma?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(42,'2025-03-17',12,941917,'CharmBar','Mac dock icon customization app, personalize your macOS dock','CharmBar lets you customize Mac app icons in your dock with emojis, PNGs, or JPGs. One-time payment, no subscriptions. Give your macOS dock a little bit of personality!',NULL,NULL,126,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ARAG56Z3C4NNJZ?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/charmbar?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(43,'2025-03-17',13,941826,'Amiry – AI-Powered Smart City Routes','Explore any city without planning','Amiry is an AI-powered city guide that builds personalized routes in seconds. Just enter your time, interests, and transport mode—walk, bike, or run—and explore effortlessly. No planning, no research, just the best spots with real-time voice guidance.',NULL,NULL,123,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XBYZSSTWTV7WSF?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/amiry-ai-powered-smart-city-routes?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(44,'2025-03-17',14,941450,'Zuni','Chat with all the latest AI models in your Chrome sidebar','Zuni is a Chrome sidebar extension providing extra-fast access to advanced AI models like ChatGPT 4o, Claude 3.7 Sonnet, Gemini Flash 2.0, and DeepSeek R1. Chats are stored locally, never touch our servers and encrypted in transit.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/3RXJNPEPLC3CBS?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/zuni?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(45,'2025-03-17',15,942018,'Pi Digits Challenge','It\'s Pi day! How many digits do you remember?','A site where you can test how many digits of Pi you remember, see high scores, and a leaderboard.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CIZ54HF65AYYRD?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-digits-challenge?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(46,'2025-03-17',16,941873,'Ai Agents for Machines','Build your own AI Agent for machines!','This platform enables you to build and test your own AI agents for seamless interaction between users and machines. By leveraging the OPC UA communication protocol, it reads sensor variables and controls actuators to perform actions based on user requirements.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LU2RXTEDKAYPG3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ai-agents-for-machines?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(47,'2025-03-17',17,940565,'Fuego','A desktop application for managing Firestore databases','Fuego is a desktop app that simplifies Firestore and Firebase Auth management, offering bulk actions, efficient data import/export, background tasks, Point-in-Time Recovery, custom dashboards, advanced queries, and emulator integration for a faster workflow.',NULL,NULL,109,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/UJPNCJ2E25UDZ7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/fuego-2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(48,'2025-03-17',18,941860,'Hal9 Reply','Reply to Any Message','Chrome extension to reply to any social media message with AI. Supported sites include LinkedIn, X, Gmail, Reddit, Instagram, GitHub, and many other sites.',NULL,NULL,104,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/RBRXW6OJH7ABVC?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/hal9-reply?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(49,'2025-03-17',19,941803,'LoadFast Snippet Expander','Lightning fast text expansion, unlimited snippets, modern UI','The best Google Chrome extension to insert snippets, templates, and macros. The best part? You can do everything (create, edit, or delete snippets) from the extension itself—no fluff, just speed. You\'ll be left wondering how you lived without this for so long!',NULL,NULL,92,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ZAQWATQGN3A6M2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/loadfast-snippet-expander?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(50,'2025-03-17',20,937750,'Sooper.ai','Follow content sites through AI generated audio podcasts ','Sooper allows users to follow any content sources in the form of a daily feed of AI generated audio podcasts. It tracks the sites for latest articles, summarizes them into interactive audio podcasts and delivers them to you in the form of a daily podcast feed.',NULL,NULL,66,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/PMMFG57TW3OHEK?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/sooper-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(51,'2025-03-17',21,765451,'Ad Alchemy','AI-powered solutions for Google Ads','Built by industry leaders who’ve managed over $500M in Google Ads and have over 20 years of industry experience, Ad Alchemy combines cutting-edge tools with proven strategies to drive growth.',NULL,NULL,62,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/BUTQ4DOSBPS2JO?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ad-alchemy?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(52,'2025-03-17',22,938379,'Prolific Alpha','Leverage cutting-edge AI to unlock stock market intelligence','Our AI-powered platform translates complex stock data into clear, actionable insights for everyday investors, using large language models to synthesize chart patterns and news into comprehensive market intelligence.',NULL,NULL,59,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/ZELTMCE2JN7L6T?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/prolific-alpha?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(53,'2025-03-17',23,941276,'KreadoAI Video Face Swap','Get face swaps video in one click with studio-quality result','Create ultra-realistic face swap videos with ease. Swap faces across genders, skin tones, and ages with just one click. Our enhanced video face swap delivers studio-quality results, perfect for creators and professionals seeking precision and creativity.',NULL,NULL,54,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/S2GH5IQUTUXN4D?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/kreadoai-video-face-swap?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(54,'2025-03-17',24,934878,'Cyclops','Open-Source tool for building Internal Developer Platforms','Cyclops is an open-source tool that allows companies to build Developer Platforms for Kubernetes in days instead of months. It enables DevOps engineers to create custom UIs for Kubernetes, making it accessible for the rest of the developers.',NULL,NULL,48,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/2RDQWYCGOJ4QF4?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cyclops-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(55,'2025-03-17',25,941958,'Copyright Registration - SecureAuthor','Protect & prove your creations with SecureAuthor','SecureAuthor – Instantly prove authorship with blockchain receipts. No fees, no lawyers, no paperwork—just instant, verifiable proof for your designs, code, documents, and more. Protect your work effortlessly, trusted by creators and businesses worldwide.',NULL,NULL,47,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/HIWF5SDTI6VMWX?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/copyright-registration-secureauthor?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(56,'2025-03-17',26,880802,'Cresh','Analyze & refine business idea in minutes','Cresh is a multi-agent business research and analysis tool designed to enhance and improve your business ideas. Answer key questions, get AI-driven insights, and make data-backed decisions—all in one place.',NULL,NULL,38,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/FUDJH6TQIN4ZFA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cresh?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(57,'2025-03-17',27,941667,'Nexus','AI-managed code quality and workflows built for AI teams','Tired of bottlenecks? Nexus automates sprint tracking, code quality checks, bug finding, and DevOps monitoring with AI agents, a Kanban board, and a chatbot—bringing real-time visibility and insights to every stage of development.',NULL,NULL,35,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/KXIBF4UYYCXPHB?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/nexus-10?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(58,'2025-03-17',28,941738,'IncredEmail AI','Create High-Converting Emails in Just 5 Minutes with AI','Most email builders are complex and not optimized for conversions. IncredEmail AI is designed for creating high-converting emails quickly and easily without coding. AI-powered templates, pixel-perfect layouts, and a no-code editor make email design effortless.',NULL,NULL,29,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/U5CRYOKVQJWWE7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/incredemail-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(59,'2025-03-17',29,938672,'Headless Site Directory','List of high-performance headless websites','Explore top-performing headless websites setting new standards in speed, design, and innovation. Discover leading eCommerce, React JS, and portfolio projects.',NULL,NULL,20,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/UZAKIMBSDNTB4X?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/headless-site-directory?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(60,'2025-03-17',30,940719,'Senrigan','See beyond horizons with remote vision','An exciting realm of exploration where a plethora of fascinating places, await your discovery.',NULL,NULL,18,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/K6N7KJCC3HZUS3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/senrigan?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:46:02',4,'2025-03-18 05:10:48',1,1),(61,'2025-03-17',1,941859,'Freepik AI Video Upscaler','Upscale videos up to 4K in one click','Give your videos a high-quality finish with the Video Upscaler. Upscale to 4K resolution and increase frames per second to 60 fps. Available now in the Freepik AI Suite.',NULL,NULL,485,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/J76ZVJGVUDKFQA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/freepik-ai-video-upscaler?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(62,'2025-03-17',2,910704,'agent.ai','The #1 Professional Network for AI Agents','The #1 (and only) professional network and marketplace for AI agents and the people who love them. Users can discover, connect, and hire AI agents for useful tasks. Builders create advanced agents with a no-code platform, data tools, and frontier LLMs.',NULL,NULL,439,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XRA3TW3ZMCBSPM?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agent-ai-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(63,'2025-03-17',3,909200,'touch grass','reduce your screen time','block your apps until you literally touch grass. our ai verifies it\'s real grass - no cheating. decrease your screen time by getting outside. 🌱',NULL,NULL,404,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/O22QETJCU5EE42?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/touch-grass?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(64,'2025-03-17',4,887501,'Factory.fm','The music review app','Welcome to the music review app! We are the \"Letterboxd for music\". You can rate, review and track the music you\'re listening to. Discover new music from other music obsessives and create a profile with your favorite albums (yes, just like the MySpace Top 8!)',NULL,NULL,264,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LUW36RFIGYQWWN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/factory-fm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(65,'2025-03-17',5,938306,'AgBr','Black & white film emulator for iPhone, iPad & Mac','AgBr is a black & white film emulator for iPhone/iPad/Mac. A minimal interface that makes it straightforward to process your photos with 11 film recreations. Free to download, with advanced processing & export options available for a one-time in app purchase.',NULL,NULL,239,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/TMHQFJQ2ZB5AGY?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agbr?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(66,'2025-03-17',6,941921,'Pi','The ML & Data Science toolkit; built for Software Engineers.','Pi is a toolkit of 30+ AI techniques designed to boost the quality of your AI apps. Pi first builds your scoring system to capture your application requirements and then compiles 30+ optimizers against it - automated prompt opt., search ranking, RL & more.',NULL,NULL,175,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ROOHXPAMSTICRV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-6?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(67,'2025-03-17',7,939408,'Bettermode','Your All-in-One Customer Community Platform','Bettermode is an all-in-one community platform enhanced with AI-powered features. It unifies all your community tools into a single, cohesive solution, empowering your brand with a dynamic, scalable space where customers effortlessly connect, engage, and grow.',NULL,NULL,172,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/RUKQQCHCYNJMIV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/bettermode?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(68,'2025-03-17',8,941290,'JOOS©','Invest in content creators, accelerate their growth','JOOS lets investors fund creators in exchange for a share of future revenue. Capital fuels growth—ads, team expansion, better content. As creators earn more, investors profit. A scalable, transparent way to invest in digital talent. 🚀',NULL,NULL,164,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/I3BVE3MZTV4UFE?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/joos?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(69,'2025-03-17',9,941519,'Gemini Robotics','Bringing AI into the Physical World','Gemini Robotics from Google Deepmind, is the Gemini 2.0-based AI models for robots. Multimodal, general, interactive, and dexterous. Powers ALOHA 2, Apptronik Apollo, and more.',NULL,NULL,146,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/KXIJOH4X567PN7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/gemini-robotics?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(70,'2025-03-17',10,941942,'Proxy DeepWork','Automate Complex Workflows with AI Agents','DeepWork is the major update for Convergence\'s Proxy.Aautomate complex, multi-step workflows with a team of AI agents. Describe your goal, and DeepWork handles the rest.',NULL,NULL,138,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/53KWM4GGKM6PSA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/proxy-deepwork?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(71,'2025-03-17',11,911261,'Clickma',' Keep Figma & ClickUp in sync','Tired of hunting for the right Figma screen? Updating ClickUp manually? Clickma connects your designs and tasks instantly—so your team stays aligned, works faster, and never loses track of what matters. No more searching, switching, or second-guessing.',NULL,NULL,128,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CWUMZAUFAOCWDN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/clickma?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(72,'2025-03-17',12,941917,'CharmBar','Mac dock icon customization app, personalize your macOS dock','CharmBar lets you customize Mac app icons in your dock with emojis, PNGs, or JPGs. One-time payment, no subscriptions. Give your macOS dock a little bit of personality!',NULL,NULL,126,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ARAG56Z3C4NNJZ?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/charmbar?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(73,'2025-03-17',13,941826,'Amiry – AI-Powered Smart City Routes','Explore any city without planning','Amiry is an AI-powered city guide that builds personalized routes in seconds. Just enter your time, interests, and transport mode—walk, bike, or run—and explore effortlessly. No planning, no research, just the best spots with real-time voice guidance.',NULL,NULL,123,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XBYZSSTWTV7WSF?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/amiry-ai-powered-smart-city-routes?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(74,'2025-03-17',14,941450,'Zuni','Chat with all the latest AI models in your Chrome sidebar','Zuni is a Chrome sidebar extension providing extra-fast access to advanced AI models like ChatGPT 4o, Claude 3.7 Sonnet, Gemini Flash 2.0, and DeepSeek R1. Chats are stored locally, never touch our servers and encrypted in transit.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/3RXJNPEPLC3CBS?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/zuni?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(75,'2025-03-17',15,942018,'Pi Digits Challenge','It\'s Pi day! How many digits do you remember?','A site where you can test how many digits of Pi you remember, see high scores, and a leaderboard.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CIZ54HF65AYYRD?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-digits-challenge?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(76,'2025-03-17',16,941873,'Ai Agents for Machines','Build your own AI Agent for machines!','This platform enables you to build and test your own AI agents for seamless interaction between users and machines. By leveraging the OPC UA communication protocol, it reads sensor variables and controls actuators to perform actions based on user requirements.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LU2RXTEDKAYPG3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ai-agents-for-machines?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(77,'2025-03-17',17,940565,'Fuego','A desktop application for managing Firestore databases','Fuego is a desktop app that simplifies Firestore and Firebase Auth management, offering bulk actions, efficient data import/export, background tasks, Point-in-Time Recovery, custom dashboards, advanced queries, and emulator integration for a faster workflow.',NULL,NULL,109,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/UJPNCJ2E25UDZ7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/fuego-2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(78,'2025-03-17',18,941860,'Hal9 Reply','Reply to Any Message','Chrome extension to reply to any social media message with AI. Supported sites include LinkedIn, X, Gmail, Reddit, Instagram, GitHub, and many other sites.',NULL,NULL,104,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/RBRXW6OJH7ABVC?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/hal9-reply?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(79,'2025-03-17',19,941803,'LoadFast Snippet Expander','Lightning fast text expansion, unlimited snippets, modern UI','The best Google Chrome extension to insert snippets, templates, and macros. The best part? You can do everything (create, edit, or delete snippets) from the extension itself—no fluff, just speed. You\'ll be left wondering how you lived without this for so long!',NULL,NULL,92,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ZAQWATQGN3A6M2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/loadfast-snippet-expander?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(80,'2025-03-17',20,937750,'Sooper.ai','Follow content sites through AI generated audio podcasts ','Sooper allows users to follow any content sources in the form of a daily feed of AI generated audio podcasts. It tracks the sites for latest articles, summarizes them into interactive audio podcasts and delivers them to you in the form of a daily podcast feed.',NULL,NULL,66,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/PMMFG57TW3OHEK?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/sooper-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(81,'2025-03-17',21,765451,'Ad Alchemy','AI-powered solutions for Google Ads','Built by industry leaders who’ve managed over $500M in Google Ads and have over 20 years of industry experience, Ad Alchemy combines cutting-edge tools with proven strategies to drive growth.',NULL,NULL,62,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/BUTQ4DOSBPS2JO?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ad-alchemy?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(82,'2025-03-17',22,938379,'Prolific Alpha','Leverage cutting-edge AI to unlock stock market intelligence','Our AI-powered platform translates complex stock data into clear, actionable insights for everyday investors, using large language models to synthesize chart patterns and news into comprehensive market intelligence.',NULL,NULL,59,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/ZELTMCE2JN7L6T?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/prolific-alpha?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(83,'2025-03-17',23,941276,'KreadoAI Video Face Swap','Get face swaps video in one click with studio-quality result','Create ultra-realistic face swap videos with ease. Swap faces across genders, skin tones, and ages with just one click. Our enhanced video face swap delivers studio-quality results, perfect for creators and professionals seeking precision and creativity.',NULL,NULL,54,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/S2GH5IQUTUXN4D?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/kreadoai-video-face-swap?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(84,'2025-03-17',24,934878,'Cyclops','Open-Source tool for building Internal Developer Platforms','Cyclops is an open-source tool that allows companies to build Developer Platforms for Kubernetes in days instead of months. It enables DevOps engineers to create custom UIs for Kubernetes, making it accessible for the rest of the developers.',NULL,NULL,48,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/2RDQWYCGOJ4QF4?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cyclops-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(85,'2025-03-17',25,941958,'Copyright Registration - SecureAuthor','Protect & prove your creations with SecureAuthor','SecureAuthor – Instantly prove authorship with blockchain receipts. No fees, no lawyers, no paperwork—just instant, verifiable proof for your designs, code, documents, and more. Protect your work effortlessly, trusted by creators and businesses worldwide.',NULL,NULL,47,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/HIWF5SDTI6VMWX?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/copyright-registration-secureauthor?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(86,'2025-03-17',26,880802,'Cresh','Analyze & refine business idea in minutes','Cresh is a multi-agent business research and analysis tool designed to enhance and improve your business ideas. Answer key questions, get AI-driven insights, and make data-backed decisions—all in one place.',NULL,NULL,38,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/FUDJH6TQIN4ZFA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cresh?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(87,'2025-03-17',27,941667,'Nexus','AI-managed code quality and workflows built for AI teams','Tired of bottlenecks? Nexus automates sprint tracking, code quality checks, bug finding, and DevOps monitoring with AI agents, a Kanban board, and a chatbot—bringing real-time visibility and insights to every stage of development.',NULL,NULL,35,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/KXIBF4UYYCXPHB?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/nexus-10?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(88,'2025-03-17',28,941738,'IncredEmail AI','Create High-Converting Emails in Just 5 Minutes with AI','Most email builders are complex and not optimized for conversions. IncredEmail AI is designed for creating high-converting emails quickly and easily without coding. AI-powered templates, pixel-perfect layouts, and a no-code editor make email design effortless.',NULL,NULL,29,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/U5CRYOKVQJWWE7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/incredemail-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(89,'2025-03-17',29,938672,'Headless Site Directory','List of high-performance headless websites','Explore top-performing headless websites setting new standards in speed, design, and innovation. Discover leading eCommerce, React JS, and portfolio projects.',NULL,NULL,20,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/UZAKIMBSDNTB4X?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/headless-site-directory?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(90,'2025-03-17',30,940719,'Senrigan','See beyond horizons with remote vision','An exciting realm of exploration where a plethora of fascinating places, await your discovery.',NULL,NULL,18,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/K6N7KJCC3HZUS3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/senrigan?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:48:21',4,'2025-03-18 05:10:48',1,1),(91,'2025-03-17',1,941859,'Freepik AI Video Upscaler','Upscale videos up to 4K in one click','Give your videos a high-quality finish with the Video Upscaler. Upscale to 4K resolution and increase frames per second to 60 fps. Available now in the Freepik AI Suite.',NULL,NULL,485,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/J76ZVJGVUDKFQA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/freepik-ai-video-upscaler?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(92,'2025-03-17',2,910704,'agent.ai','The #1 Professional Network for AI Agents','The #1 (and only) professional network and marketplace for AI agents and the people who love them. Users can discover, connect, and hire AI agents for useful tasks. Builders create advanced agents with a no-code platform, data tools, and frontier LLMs.',NULL,NULL,439,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XRA3TW3ZMCBSPM?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agent-ai-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(93,'2025-03-17',3,909200,'touch grass','reduce your screen time','block your apps until you literally touch grass. our ai verifies it\'s real grass - no cheating. decrease your screen time by getting outside. 🌱',NULL,NULL,404,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/O22QETJCU5EE42?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/touch-grass?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(94,'2025-03-17',4,887501,'Factory.fm','The music review app','Welcome to the music review app! We are the \"Letterboxd for music\". You can rate, review and track the music you\'re listening to. Discover new music from other music obsessives and create a profile with your favorite albums (yes, just like the MySpace Top 8!)',NULL,NULL,264,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LUW36RFIGYQWWN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/factory-fm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(95,'2025-03-17',5,938306,'AgBr','Black & white film emulator for iPhone, iPad & Mac','AgBr is a black & white film emulator for iPhone/iPad/Mac. A minimal interface that makes it straightforward to process your photos with 11 film recreations. Free to download, with advanced processing & export options available for a one-time in app purchase.',NULL,NULL,239,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/TMHQFJQ2ZB5AGY?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agbr?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(96,'2025-03-17',6,941921,'Pi','The ML & Data Science toolkit; built for Software Engineers.','Pi is a toolkit of 30+ AI techniques designed to boost the quality of your AI apps. Pi first builds your scoring system to capture your application requirements and then compiles 30+ optimizers against it - automated prompt opt., search ranking, RL & more.',NULL,NULL,175,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ROOHXPAMSTICRV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-6?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(97,'2025-03-17',7,939408,'Bettermode','Your All-in-One Customer Community Platform','Bettermode is an all-in-one community platform enhanced with AI-powered features. It unifies all your community tools into a single, cohesive solution, empowering your brand with a dynamic, scalable space where customers effortlessly connect, engage, and grow.',NULL,NULL,172,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/RUKQQCHCYNJMIV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/bettermode?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(98,'2025-03-17',8,941290,'JOOS©','Invest in content creators, accelerate their growth','JOOS lets investors fund creators in exchange for a share of future revenue. Capital fuels growth—ads, team expansion, better content. As creators earn more, investors profit. A scalable, transparent way to invest in digital talent. 🚀',NULL,NULL,164,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/I3BVE3MZTV4UFE?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/joos?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(99,'2025-03-17',9,941519,'Gemini Robotics','Bringing AI into the Physical World','Gemini Robotics from Google Deepmind, is the Gemini 2.0-based AI models for robots. Multimodal, general, interactive, and dexterous. Powers ALOHA 2, Apptronik Apollo, and more.',NULL,NULL,146,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/KXIJOH4X567PN7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/gemini-robotics?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(100,'2025-03-17',10,941942,'Proxy DeepWork','Automate Complex Workflows with AI Agents','DeepWork is the major update for Convergence\'s Proxy.Aautomate complex, multi-step workflows with a team of AI agents. Describe your goal, and DeepWork handles the rest.',NULL,NULL,138,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/53KWM4GGKM6PSA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/proxy-deepwork?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(101,'2025-03-17',11,911261,'Clickma',' Keep Figma & ClickUp in sync','Tired of hunting for the right Figma screen? Updating ClickUp manually? Clickma connects your designs and tasks instantly—so your team stays aligned, works faster, and never loses track of what matters. No more searching, switching, or second-guessing.',NULL,NULL,128,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CWUMZAUFAOCWDN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/clickma?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(102,'2025-03-17',12,941917,'CharmBar','Mac dock icon customization app, personalize your macOS dock','CharmBar lets you customize Mac app icons in your dock with emojis, PNGs, or JPGs. One-time payment, no subscriptions. Give your macOS dock a little bit of personality!',NULL,NULL,126,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ARAG56Z3C4NNJZ?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/charmbar?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(103,'2025-03-17',13,941826,'Amiry – AI-Powered Smart City Routes','Explore any city without planning','Amiry is an AI-powered city guide that builds personalized routes in seconds. Just enter your time, interests, and transport mode—walk, bike, or run—and explore effortlessly. No planning, no research, just the best spots with real-time voice guidance.',NULL,NULL,123,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XBYZSSTWTV7WSF?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/amiry-ai-powered-smart-city-routes?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(104,'2025-03-17',14,941450,'Zuni','Chat with all the latest AI models in your Chrome sidebar','Zuni is a Chrome sidebar extension providing extra-fast access to advanced AI models like ChatGPT 4o, Claude 3.7 Sonnet, Gemini Flash 2.0, and DeepSeek R1. Chats are stored locally, never touch our servers and encrypted in transit.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/3RXJNPEPLC3CBS?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/zuni?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(105,'2025-03-17',15,942018,'Pi Digits Challenge','It\'s Pi day! How many digits do you remember?','A site where you can test how many digits of Pi you remember, see high scores, and a leaderboard.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CIZ54HF65AYYRD?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-digits-challenge?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(106,'2025-03-17',16,941873,'Ai Agents for Machines','Build your own AI Agent for machines!','This platform enables you to build and test your own AI agents for seamless interaction between users and machines. By leveraging the OPC UA communication protocol, it reads sensor variables and controls actuators to perform actions based on user requirements.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LU2RXTEDKAYPG3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ai-agents-for-machines?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(107,'2025-03-17',17,940565,'Fuego','A desktop application for managing Firestore databases','Fuego is a desktop app that simplifies Firestore and Firebase Auth management, offering bulk actions, efficient data import/export, background tasks, Point-in-Time Recovery, custom dashboards, advanced queries, and emulator integration for a faster workflow.',NULL,NULL,109,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/UJPNCJ2E25UDZ7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/fuego-2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(108,'2025-03-17',18,941860,'Hal9 Reply','Reply to Any Message','Chrome extension to reply to any social media message with AI. Supported sites include LinkedIn, X, Gmail, Reddit, Instagram, GitHub, and many other sites.',NULL,NULL,104,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/RBRXW6OJH7ABVC?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/hal9-reply?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(109,'2025-03-17',19,941803,'LoadFast Snippet Expander','Lightning fast text expansion, unlimited snippets, modern UI','The best Google Chrome extension to insert snippets, templates, and macros. The best part? You can do everything (create, edit, or delete snippets) from the extension itself—no fluff, just speed. You\'ll be left wondering how you lived without this for so long!',NULL,NULL,92,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ZAQWATQGN3A6M2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/loadfast-snippet-expander?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(110,'2025-03-17',20,937750,'Sooper.ai','Follow content sites through AI generated audio podcasts ','Sooper allows users to follow any content sources in the form of a daily feed of AI generated audio podcasts. It tracks the sites for latest articles, summarizes them into interactive audio podcasts and delivers them to you in the form of a daily podcast feed.',NULL,NULL,66,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/PMMFG57TW3OHEK?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/sooper-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(111,'2025-03-17',21,765451,'Ad Alchemy','AI-powered solutions for Google Ads','Built by industry leaders who’ve managed over $500M in Google Ads and have over 20 years of industry experience, Ad Alchemy combines cutting-edge tools with proven strategies to drive growth.',NULL,NULL,62,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/BUTQ4DOSBPS2JO?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ad-alchemy?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(112,'2025-03-17',22,938379,'Prolific Alpha','Leverage cutting-edge AI to unlock stock market intelligence','Our AI-powered platform translates complex stock data into clear, actionable insights for everyday investors, using large language models to synthesize chart patterns and news into comprehensive market intelligence.',NULL,NULL,59,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/ZELTMCE2JN7L6T?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/prolific-alpha?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(113,'2025-03-17',23,941276,'KreadoAI Video Face Swap','Get face swaps video in one click with studio-quality result','Create ultra-realistic face swap videos with ease. Swap faces across genders, skin tones, and ages with just one click. Our enhanced video face swap delivers studio-quality results, perfect for creators and professionals seeking precision and creativity.',NULL,NULL,54,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/S2GH5IQUTUXN4D?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/kreadoai-video-face-swap?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(114,'2025-03-17',24,934878,'Cyclops','Open-Source tool for building Internal Developer Platforms','Cyclops is an open-source tool that allows companies to build Developer Platforms for Kubernetes in days instead of months. It enables DevOps engineers to create custom UIs for Kubernetes, making it accessible for the rest of the developers.',NULL,NULL,48,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/2RDQWYCGOJ4QF4?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cyclops-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(115,'2025-03-17',25,941958,'Copyright Registration - SecureAuthor','Protect & prove your creations with SecureAuthor','SecureAuthor – Instantly prove authorship with blockchain receipts. No fees, no lawyers, no paperwork—just instant, verifiable proof for your designs, code, documents, and more. Protect your work effortlessly, trusted by creators and businesses worldwide.',NULL,NULL,47,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/HIWF5SDTI6VMWX?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/copyright-registration-secureauthor?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(116,'2025-03-17',26,880802,'Cresh','Analyze & refine business idea in minutes','Cresh is a multi-agent business research and analysis tool designed to enhance and improve your business ideas. Answer key questions, get AI-driven insights, and make data-backed decisions—all in one place.',NULL,NULL,38,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/FUDJH6TQIN4ZFA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cresh?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(117,'2025-03-17',27,941667,'Nexus','AI-managed code quality and workflows built for AI teams','Tired of bottlenecks? Nexus automates sprint tracking, code quality checks, bug finding, and DevOps monitoring with AI agents, a Kanban board, and a chatbot—bringing real-time visibility and insights to every stage of development.',NULL,NULL,35,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/KXIBF4UYYCXPHB?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/nexus-10?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(118,'2025-03-17',28,941738,'IncredEmail AI','Create High-Converting Emails in Just 5 Minutes with AI','Most email builders are complex and not optimized for conversions. IncredEmail AI is designed for creating high-converting emails quickly and easily without coding. AI-powered templates, pixel-perfect layouts, and a no-code editor make email design effortless.',NULL,NULL,29,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/U5CRYOKVQJWWE7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/incredemail-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(119,'2025-03-17',29,938672,'Headless Site Directory','List of high-performance headless websites','Explore top-performing headless websites setting new standards in speed, design, and innovation. Discover leading eCommerce, React JS, and portfolio projects.',NULL,NULL,20,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/UZAKIMBSDNTB4X?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/headless-site-directory?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(120,'2025-03-17',30,940719,'Senrigan','See beyond horizons with remote vision','An exciting realm of exploration where a plethora of fascinating places, await your discovery.',NULL,NULL,18,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/K6N7KJCC3HZUS3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/senrigan?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 03:49:17',4,'2025-03-18 05:10:48',1,1),(121,'2025-03-17',1,941859,'Freepik AI Video Upscaler','Upscale videos up to 4K in one click','Give your videos a high-quality finish with the Video Upscaler. Upscale to 4K resolution and increase frames per second to 60 fps. Available now in the Freepik AI Suite.',NULL,NULL,485,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/J76ZVJGVUDKFQA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/freepik-ai-video-upscaler?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(122,'2025-03-17',2,910704,'agent.ai','The #1 Professional Network for AI Agents','The #1 (and only) professional network and marketplace for AI agents and the people who love them. Users can discover, connect, and hire AI agents for useful tasks. Builders create advanced agents with a no-code platform, data tools, and frontier LLMs.',NULL,NULL,439,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XRA3TW3ZMCBSPM?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agent-ai-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(123,'2025-03-17',3,909200,'touch grass','reduce your screen time','block your apps until you literally touch grass. our ai verifies it\'s real grass - no cheating. decrease your screen time by getting outside. 🌱',NULL,NULL,404,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/O22QETJCU5EE42?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/touch-grass?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(124,'2025-03-17',4,887501,'Factory.fm','The music review app','Welcome to the music review app! We are the \"Letterboxd for music\". You can rate, review and track the music you\'re listening to. Discover new music from other music obsessives and create a profile with your favorite albums (yes, just like the MySpace Top 8!)',NULL,NULL,264,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LUW36RFIGYQWWN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/factory-fm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(125,'2025-03-17',5,938306,'AgBr','Black & white film emulator for iPhone, iPad & Mac','AgBr is a black & white film emulator for iPhone/iPad/Mac. A minimal interface that makes it straightforward to process your photos with 11 film recreations. Free to download, with advanced processing & export options available for a one-time in app purchase.',NULL,NULL,239,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/TMHQFJQ2ZB5AGY?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agbr?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(126,'2025-03-17',6,941921,'Pi','The ML & Data Science toolkit; built for Software Engineers.','Pi is a toolkit of 30+ AI techniques designed to boost the quality of your AI apps. Pi first builds your scoring system to capture your application requirements and then compiles 30+ optimizers against it - automated prompt opt., search ranking, RL & more.',NULL,NULL,175,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ROOHXPAMSTICRV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-6?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(127,'2025-03-17',7,939408,'Bettermode','Your All-in-One Customer Community Platform','Bettermode is an all-in-one community platform enhanced with AI-powered features. It unifies all your community tools into a single, cohesive solution, empowering your brand with a dynamic, scalable space where customers effortlessly connect, engage, and grow.',NULL,NULL,172,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/RUKQQCHCYNJMIV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/bettermode?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(128,'2025-03-17',8,941290,'JOOS©','Invest in content creators, accelerate their growth','JOOS lets investors fund creators in exchange for a share of future revenue. Capital fuels growth—ads, team expansion, better content. As creators earn more, investors profit. A scalable, transparent way to invest in digital talent. 🚀',NULL,NULL,164,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/I3BVE3MZTV4UFE?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/joos?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(129,'2025-03-17',9,941519,'Gemini Robotics','Bringing AI into the Physical World','Gemini Robotics from Google Deepmind, is the Gemini 2.0-based AI models for robots. Multimodal, general, interactive, and dexterous. Powers ALOHA 2, Apptronik Apollo, and more.',NULL,NULL,146,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/KXIJOH4X567PN7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/gemini-robotics?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(130,'2025-03-17',10,941942,'Proxy DeepWork','Automate Complex Workflows with AI Agents','DeepWork is the major update for Convergence\'s Proxy.Aautomate complex, multi-step workflows with a team of AI agents. Describe your goal, and DeepWork handles the rest.',NULL,NULL,138,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/53KWM4GGKM6PSA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/proxy-deepwork?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(131,'2025-03-17',11,911261,'Clickma',' Keep Figma & ClickUp in sync','Tired of hunting for the right Figma screen? Updating ClickUp manually? Clickma connects your designs and tasks instantly—so your team stays aligned, works faster, and never loses track of what matters. No more searching, switching, or second-guessing.',NULL,NULL,128,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CWUMZAUFAOCWDN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/clickma?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(132,'2025-03-17',12,941917,'CharmBar','Mac dock icon customization app, personalize your macOS dock','CharmBar lets you customize Mac app icons in your dock with emojis, PNGs, or JPGs. One-time payment, no subscriptions. Give your macOS dock a little bit of personality!',NULL,NULL,126,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ARAG56Z3C4NNJZ?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/charmbar?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(133,'2025-03-17',13,941826,'Amiry – AI-Powered Smart City Routes','Explore any city without planning','Amiry is an AI-powered city guide that builds personalized routes in seconds. Just enter your time, interests, and transport mode—walk, bike, or run—and explore effortlessly. No planning, no research, just the best spots with real-time voice guidance.',NULL,NULL,123,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XBYZSSTWTV7WSF?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/amiry-ai-powered-smart-city-routes?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(134,'2025-03-17',14,941450,'Zuni','Chat with all the latest AI models in your Chrome sidebar','Zuni is a Chrome sidebar extension providing extra-fast access to advanced AI models like ChatGPT 4o, Claude 3.7 Sonnet, Gemini Flash 2.0, and DeepSeek R1. Chats are stored locally, never touch our servers and encrypted in transit.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/3RXJNPEPLC3CBS?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/zuni?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(135,'2025-03-17',15,942018,'Pi Digits Challenge','It\'s Pi day! How many digits do you remember?','A site where you can test how many digits of Pi you remember, see high scores, and a leaderboard.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CIZ54HF65AYYRD?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-digits-challenge?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(136,'2025-03-17',16,941873,'Ai Agents for Machines','Build your own AI Agent for machines!','This platform enables you to build and test your own AI agents for seamless interaction between users and machines. By leveraging the OPC UA communication protocol, it reads sensor variables and controls actuators to perform actions based on user requirements.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LU2RXTEDKAYPG3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ai-agents-for-machines?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(137,'2025-03-17',17,940565,'Fuego','A desktop application for managing Firestore databases','Fuego is a desktop app that simplifies Firestore and Firebase Auth management, offering bulk actions, efficient data import/export, background tasks, Point-in-Time Recovery, custom dashboards, advanced queries, and emulator integration for a faster workflow.',NULL,NULL,109,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/UJPNCJ2E25UDZ7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/fuego-2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(138,'2025-03-17',18,941860,'Hal9 Reply','Reply to Any Message','Chrome extension to reply to any social media message with AI. Supported sites include LinkedIn, X, Gmail, Reddit, Instagram, GitHub, and many other sites.',NULL,NULL,104,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/RBRXW6OJH7ABVC?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/hal9-reply?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(139,'2025-03-17',19,941803,'LoadFast Snippet Expander','Lightning fast text expansion, unlimited snippets, modern UI','The best Google Chrome extension to insert snippets, templates, and macros. The best part? You can do everything (create, edit, or delete snippets) from the extension itself—no fluff, just speed. You\'ll be left wondering how you lived without this for so long!',NULL,NULL,92,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ZAQWATQGN3A6M2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/loadfast-snippet-expander?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(140,'2025-03-17',20,937750,'Sooper.ai','Follow content sites through AI generated audio podcasts ','Sooper allows users to follow any content sources in the form of a daily feed of AI generated audio podcasts. It tracks the sites for latest articles, summarizes them into interactive audio podcasts and delivers them to you in the form of a daily podcast feed.',NULL,NULL,66,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/PMMFG57TW3OHEK?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/sooper-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(141,'2025-03-17',21,765451,'Ad Alchemy','AI-powered solutions for Google Ads','Built by industry leaders who’ve managed over $500M in Google Ads and have over 20 years of industry experience, Ad Alchemy combines cutting-edge tools with proven strategies to drive growth.',NULL,NULL,62,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/BUTQ4DOSBPS2JO?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ad-alchemy?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(142,'2025-03-17',22,938379,'Prolific Alpha','Leverage cutting-edge AI to unlock stock market intelligence','Our AI-powered platform translates complex stock data into clear, actionable insights for everyday investors, using large language models to synthesize chart patterns and news into comprehensive market intelligence.',NULL,NULL,59,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/ZELTMCE2JN7L6T?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/prolific-alpha?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(143,'2025-03-17',23,941276,'KreadoAI Video Face Swap','Get face swaps video in one click with studio-quality result','Create ultra-realistic face swap videos with ease. Swap faces across genders, skin tones, and ages with just one click. Our enhanced video face swap delivers studio-quality results, perfect for creators and professionals seeking precision and creativity.',NULL,NULL,54,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/S2GH5IQUTUXN4D?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/kreadoai-video-face-swap?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(144,'2025-03-17',24,934878,'Cyclops','Open-Source tool for building Internal Developer Platforms','Cyclops is an open-source tool that allows companies to build Developer Platforms for Kubernetes in days instead of months. It enables DevOps engineers to create custom UIs for Kubernetes, making it accessible for the rest of the developers.',NULL,NULL,48,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/2RDQWYCGOJ4QF4?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cyclops-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(145,'2025-03-17',25,941958,'Copyright Registration - SecureAuthor','Protect & prove your creations with SecureAuthor','SecureAuthor – Instantly prove authorship with blockchain receipts. No fees, no lawyers, no paperwork—just instant, verifiable proof for your designs, code, documents, and more. Protect your work effortlessly, trusted by creators and businesses worldwide.',NULL,NULL,47,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/HIWF5SDTI6VMWX?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/copyright-registration-secureauthor?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(146,'2025-03-17',26,880802,'Cresh','Analyze & refine business idea in minutes','Cresh is a multi-agent business research and analysis tool designed to enhance and improve your business ideas. Answer key questions, get AI-driven insights, and make data-backed decisions—all in one place.',NULL,NULL,38,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/FUDJH6TQIN4ZFA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cresh?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(147,'2025-03-17',27,941667,'Nexus','AI-managed code quality and workflows built for AI teams','Tired of bottlenecks? Nexus automates sprint tracking, code quality checks, bug finding, and DevOps monitoring with AI agents, a Kanban board, and a chatbot—bringing real-time visibility and insights to every stage of development.',NULL,NULL,35,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/KXIBF4UYYCXPHB?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/nexus-10?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(148,'2025-03-17',28,941738,'IncredEmail AI','Create High-Converting Emails in Just 5 Minutes with AI','Most email builders are complex and not optimized for conversions. IncredEmail AI is designed for creating high-converting emails quickly and easily without coding. AI-powered templates, pixel-perfect layouts, and a no-code editor make email design effortless.',NULL,NULL,29,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/U5CRYOKVQJWWE7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/incredemail-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(149,'2025-03-17',29,938672,'Headless Site Directory','List of high-performance headless websites','Explore top-performing headless websites setting new standards in speed, design, and innovation. Discover leading eCommerce, React JS, and portfolio projects.',NULL,NULL,20,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/UZAKIMBSDNTB4X?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/headless-site-directory?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(150,'2025-03-17',30,940719,'Senrigan','See beyond horizons with remote vision','An exciting realm of exploration where a plethora of fascinating places, await your discovery.',NULL,NULL,18,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/K6N7KJCC3HZUS3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/senrigan?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:01:50',4,'2025-03-18 05:10:48',1,1),(151,'2025-03-17',1,941859,'Freepik AI Video Upscaler','Upscale videos up to 4K in one click','Give your videos a high-quality finish with the Video Upscaler. Upscale to 4K resolution and increase frames per second to 60 fps. Available now in the Freepik AI Suite.',NULL,NULL,485,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/J76ZVJGVUDKFQA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/freepik-ai-video-upscaler?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(152,'2025-03-17',2,910704,'agent.ai','The #1 Professional Network for AI Agents','The #1 (and only) professional network and marketplace for AI agents and the people who love them. Users can discover, connect, and hire AI agents for useful tasks. Builders create advanced agents with a no-code platform, data tools, and frontier LLMs.',NULL,NULL,439,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XRA3TW3ZMCBSPM?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agent-ai-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(153,'2025-03-17',3,909200,'touch grass','reduce your screen time','block your apps until you literally touch grass. our ai verifies it\'s real grass - no cheating. decrease your screen time by getting outside. 🌱',NULL,NULL,404,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/O22QETJCU5EE42?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/touch-grass?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(154,'2025-03-17',4,887501,'Factory.fm','The music review app','Welcome to the music review app! We are the \"Letterboxd for music\". You can rate, review and track the music you\'re listening to. Discover new music from other music obsessives and create a profile with your favorite albums (yes, just like the MySpace Top 8!)',NULL,NULL,264,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LUW36RFIGYQWWN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/factory-fm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(155,'2025-03-17',5,938306,'AgBr','Black & white film emulator for iPhone, iPad & Mac','AgBr is a black & white film emulator for iPhone/iPad/Mac. A minimal interface that makes it straightforward to process your photos with 11 film recreations. Free to download, with advanced processing & export options available for a one-time in app purchase.',NULL,NULL,239,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/TMHQFJQ2ZB5AGY?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/agbr?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(156,'2025-03-17',6,941921,'Pi','The ML & Data Science toolkit; built for Software Engineers.','Pi is a toolkit of 30+ AI techniques designed to boost the quality of your AI apps. Pi first builds your scoring system to capture your application requirements and then compiles 30+ optimizers against it - automated prompt opt., search ranking, RL & more.',NULL,NULL,175,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ROOHXPAMSTICRV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-6?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(157,'2025-03-17',7,939408,'Bettermode','Your All-in-One Customer Community Platform','Bettermode is an all-in-one community platform enhanced with AI-powered features. It unifies all your community tools into a single, cohesive solution, empowering your brand with a dynamic, scalable space where customers effortlessly connect, engage, and grow.',NULL,NULL,172,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/RUKQQCHCYNJMIV?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/bettermode?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(158,'2025-03-17',8,941290,'JOOS©','Invest in content creators, accelerate their growth','JOOS lets investors fund creators in exchange for a share of future revenue. Capital fuels growth—ads, team expansion, better content. As creators earn more, investors profit. A scalable, transparent way to invest in digital talent. 🚀',NULL,NULL,164,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/I3BVE3MZTV4UFE?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/joos?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(159,'2025-03-17',9,941519,'Gemini Robotics','Bringing AI into the Physical World','Gemini Robotics from Google Deepmind, is the Gemini 2.0-based AI models for robots. Multimodal, general, interactive, and dexterous. Powers ALOHA 2, Apptronik Apollo, and more.',NULL,NULL,146,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/KXIJOH4X567PN7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/gemini-robotics?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(160,'2025-03-17',10,941942,'Proxy DeepWork','Automate Complex Workflows with AI Agents','DeepWork is the major update for Convergence\'s Proxy.Aautomate complex, multi-step workflows with a team of AI agents. Describe your goal, and DeepWork handles the rest.',NULL,NULL,138,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/53KWM4GGKM6PSA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/proxy-deepwork?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(161,'2025-03-17',11,911261,'Clickma',' Keep Figma & ClickUp in sync','Tired of hunting for the right Figma screen? Updating ClickUp manually? Clickma connects your designs and tasks instantly—so your team stays aligned, works faster, and never loses track of what matters. No more searching, switching, or second-guessing.',NULL,NULL,128,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CWUMZAUFAOCWDN?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/clickma?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(162,'2025-03-17',12,941917,'CharmBar','Mac dock icon customization app, personalize your macOS dock','CharmBar lets you customize Mac app icons in your dock with emojis, PNGs, or JPGs. One-time payment, no subscriptions. Give your macOS dock a little bit of personality!',NULL,NULL,126,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ARAG56Z3C4NNJZ?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/charmbar?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(163,'2025-03-17',13,941826,'Amiry – AI-Powered Smart City Routes','Explore any city without planning','Amiry is an AI-powered city guide that builds personalized routes in seconds. Just enter your time, interests, and transport mode—walk, bike, or run—and explore effortlessly. No planning, no research, just the best spots with real-time voice guidance.',NULL,NULL,123,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/XBYZSSTWTV7WSF?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/amiry-ai-powered-smart-city-routes?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(164,'2025-03-17',14,941450,'Zuni','Chat with all the latest AI models in your Chrome sidebar','Zuni is a Chrome sidebar extension providing extra-fast access to advanced AI models like ChatGPT 4o, Claude 3.7 Sonnet, Gemini Flash 2.0, and DeepSeek R1. Chats are stored locally, never touch our servers and encrypted in transit.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/3RXJNPEPLC3CBS?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/zuni?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(165,'2025-03-17',15,942018,'Pi Digits Challenge','It\'s Pi day! How many digits do you remember?','A site where you can test how many digits of Pi you remember, see high scores, and a leaderboard.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/CIZ54HF65AYYRD?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/pi-digits-challenge?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(166,'2025-03-17',16,941873,'Ai Agents for Machines','Build your own AI Agent for machines!','This platform enables you to build and test your own AI agents for seamless interaction between users and machines. By leveraging the OPC UA communication protocol, it reads sensor variables and controls actuators to perform actions based on user requirements.',NULL,NULL,111,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/LU2RXTEDKAYPG3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ai-agents-for-machines?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(167,'2025-03-17',17,940565,'Fuego','A desktop application for managing Firestore databases','Fuego is a desktop app that simplifies Firestore and Firebase Auth management, offering bulk actions, efficient data import/export, background tasks, Point-in-Time Recovery, custom dashboards, advanced queries, and emulator integration for a faster workflow.',NULL,NULL,109,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/UJPNCJ2E25UDZ7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/fuego-2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(168,'2025-03-17',18,941860,'Hal9 Reply','Reply to Any Message','Chrome extension to reply to any social media message with AI. Supported sites include LinkedIn, X, Gmail, Reddit, Instagram, GitHub, and many other sites.',NULL,NULL,104,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/RBRXW6OJH7ABVC?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/hal9-reply?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(169,'2025-03-17',19,941803,'LoadFast Snippet Expander','Lightning fast text expansion, unlimited snippets, modern UI','The best Google Chrome extension to insert snippets, templates, and macros. The best part? You can do everything (create, edit, or delete snippets) from the extension itself—no fluff, just speed. You\'ll be left wondering how you lived without this for so long!',NULL,NULL,92,'2025-03-13 23:01:00','2025-03-13 23:01:00','https://www.producthunt.com/r/ZAQWATQGN3A6M2?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/loadfast-snippet-expander?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(170,'2025-03-17',20,937750,'Sooper.ai','Follow content sites through AI generated audio podcasts ','Sooper allows users to follow any content sources in the form of a daily feed of AI generated audio podcasts. It tracks the sites for latest articles, summarizes them into interactive audio podcasts and delivers them to you in the form of a daily podcast feed.',NULL,NULL,66,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/PMMFG57TW3OHEK?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/sooper-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(171,'2025-03-17',21,765451,'Ad Alchemy','AI-powered solutions for Google Ads','Built by industry leaders who’ve managed over $500M in Google Ads and have over 20 years of industry experience, Ad Alchemy combines cutting-edge tools with proven strategies to drive growth.',NULL,NULL,62,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/BUTQ4DOSBPS2JO?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/ad-alchemy?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(172,'2025-03-17',22,938379,'Prolific Alpha','Leverage cutting-edge AI to unlock stock market intelligence','Our AI-powered platform translates complex stock data into clear, actionable insights for everyday investors, using large language models to synthesize chart patterns and news into comprehensive market intelligence.',NULL,NULL,59,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/ZELTMCE2JN7L6T?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/prolific-alpha?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(173,'2025-03-17',23,941276,'KreadoAI Video Face Swap','Get face swaps video in one click with studio-quality result','Create ultra-realistic face swap videos with ease. Swap faces across genders, skin tones, and ages with just one click. Our enhanced video face swap delivers studio-quality results, perfect for creators and professionals seeking precision and creativity.',NULL,NULL,54,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/S2GH5IQUTUXN4D?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/kreadoai-video-face-swap?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(174,'2025-03-17',24,934878,'Cyclops','Open-Source tool for building Internal Developer Platforms','Cyclops is an open-source tool that allows companies to build Developer Platforms for Kubernetes in days instead of months. It enables DevOps engineers to create custom UIs for Kubernetes, making it accessible for the rest of the developers.',NULL,NULL,48,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/2RDQWYCGOJ4QF4?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cyclops-3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(175,'2025-03-17',25,941958,'Copyright Registration - SecureAuthor','Protect & prove your creations with SecureAuthor','SecureAuthor – Instantly prove authorship with blockchain receipts. No fees, no lawyers, no paperwork—just instant, verifiable proof for your designs, code, documents, and more. Protect your work effortlessly, trusted by creators and businesses worldwide.',NULL,NULL,47,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/HIWF5SDTI6VMWX?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/copyright-registration-secureauthor?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(176,'2025-03-17',26,880802,'Cresh','Analyze & refine business idea in minutes','Cresh is a multi-agent business research and analysis tool designed to enhance and improve your business ideas. Answer key questions, get AI-driven insights, and make data-backed decisions—all in one place.',NULL,NULL,38,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/FUDJH6TQIN4ZFA?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/cresh?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(177,'2025-03-17',27,941667,'Nexus','AI-managed code quality and workflows built for AI teams','Tired of bottlenecks? Nexus automates sprint tracking, code quality checks, bug finding, and DevOps monitoring with AI agents, a Kanban board, and a chatbot—bringing real-time visibility and insights to every stage of development.',NULL,NULL,35,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/KXIBF4UYYCXPHB?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/nexus-10?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(178,'2025-03-17',28,941738,'IncredEmail AI','Create High-Converting Emails in Just 5 Minutes with AI','Most email builders are complex and not optimized for conversions. IncredEmail AI is designed for creating high-converting emails quickly and easily without coding. AI-powered templates, pixel-perfect layouts, and a no-code editor make email design effortless.',NULL,NULL,29,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/U5CRYOKVQJWWE7?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/incredemail-ai?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(179,'2025-03-17',29,938672,'Headless Site Directory','List of high-performance headless websites','Explore top-performing headless websites setting new standards in speed, design, and innovation. Discover leading eCommerce, React JS, and portfolio projects.',NULL,NULL,20,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/UZAKIMBSDNTB4X?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/headless-site-directory?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0),(180,'2025-03-17',30,940719,'Senrigan','See beyond horizons with remote vision','An exciting realm of exploration where a plethora of fascinating places, await your discovery.',NULL,NULL,18,'2025-03-13 23:01:00',NULL,'https://www.producthunt.com/r/K6N7KJCC3HZUS3?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29','https://www.producthunt.com/posts/senrigan?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+dataeasy+%28ID%3A+170125%29',4,'2025-03-18 05:10:48',4,'2025-03-18 05:10:48',1,0);
- /*!40000 ALTER TABLE `data_product_hunt_post` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `data_shuang_se_qiu`
- --
- DROP TABLE IF EXISTS `data_shuang_se_qiu`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `data_shuang_se_qiu` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `number` varchar(30) NOT NULL COMMENT '开奖号码,以竖杠隔开',
- `number1` varchar(2) DEFAULT NULL COMMENT '特别号码,尾号',
- `qihao` char(8) NOT NULL COMMENT '期号',
- `time` varchar(15) DEFAULT NULL COMMENT '开奖日期',
- `no1num` int NOT NULL DEFAULT '0' COMMENT '一等奖注数',
- `no2num` int NOT NULL DEFAULT '0' COMMENT '二等奖注数',
- `no3num` int NOT NULL DEFAULT '0' COMMENT '三等奖注数',
- `no4num` int NOT NULL DEFAULT '0' COMMENT '四等奖注数',
- `no5num` int NOT NULL DEFAULT '0' COMMENT '五等奖注数',
- `no6num` int NOT NULL DEFAULT '0' COMMENT '六等奖注数',
- `no1money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '一等奖金额',
- `no2money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '二等奖金额',
- `no3money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '三等奖金额',
- `no4money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '四等奖金额',
- `no5money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '五等奖金额',
- `no6money` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '六等奖金额',
- `name` varchar(30) DEFAULT NULL COMMENT '彩票名称',
- `xiaoshou` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '销售额',
- `jiangchi` decimal(18,2) NOT NULL DEFAULT '0.00' COMMENT '奖池金额',
- `no1msg` varchar(1000) DEFAULT NULL COMMENT '一等奖中奖地域',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='双色球数据表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `data_shuang_se_qiu`
- --
- LOCK TABLES `data_shuang_se_qiu` WRITE;
- /*!40000 ALTER TABLE `data_shuang_se_qiu` DISABLE KEYS */;
- INSERT INTO `data_shuang_se_qiu` VALUES (7,'05|07|08|15|16|23|06','6','2025027','2025-03-13(四)',13,211,2394,103200,1749804,11162473,6419699.00,109337.00,3000.00,200.00,10.00,5.00,'双色球',394720204.00,1938498165.00,'河北1注,辽宁3注,江苏1注,福建2注,江西1注,山东1注,河南1注,广东1注,广西1注,云南1注,共13注。',4,'2025-03-14 07:34:29',4,'2025-03-14 07:34:29',1,0),(9,'04|09|14|15|18|25|15','15','2025028','2025-03-16(日)',1,154,2016,82749,1567042,9498381,10000000.00,193255.00,3000.00,200.00,10.00,5.00,'双色球',417970572.00,2017782256.00,'陕西1注,共1注。',4,'2025-03-18 01:13:44',4,'2025-03-18 03:26:40',1,1),(10,'04|09|14|15|18|25|15','15','2025028','2025-03-16(日)',1,154,2016,82749,1567042,9498381,10000000.00,193255.00,3000.00,200.00,10.00,5.00,'双色球',417970572.00,2017782256.00,'陕西1注,共1注。',4,'2025-03-18 03:26:40',4,'2025-03-18 03:26:40',1,0);
- /*!40000 ALTER TABLE `data_shuang_se_qiu` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `subscription_order`
- --
- DROP TABLE IF EXISTS `subscription_order`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `subscription_order` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `subscription_source_id` bigint NOT NULL COMMENT '订阅源ID',
- `subscription_plan_id` bigint NOT NULL COMMENT '订阅价格计划ID',
- `order_no` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '订单号(格式:3位业务编码 + YYYYMMDD + 3位序列号)',
- `transaction_id` varchar(40) DEFAULT NULL COMMENT '微信支付订单号',
- `subscription_price` decimal(12,2) NOT NULL DEFAULT '0.00' COMMENT '订阅价格(单位:元)',
- `subscription_duration` int NOT NULL COMMENT '订阅时长(单位:天)',
- `close_time` datetime NOT NULL COMMENT '订单关闭时间',
- `payment_status` varchar(10) NOT NULL COMMENT '支付状态(NOTPAY-未支付,SUCCESS-支付成功、REFUND-转入退款、CLOSED-已关闭、REVOKED-已撤销)',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订单表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `subscription_order`
- --
- LOCK TABLES `subscription_order` WRITE;
- /*!40000 ALTER TABLE `subscription_order` DISABLE KEYS */;
- INSERT INTO `subscription_order` VALUES (1,2,1,1,'SOO250311163508001',NULL,0.99,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 08:35:08',4,'2025-03-18 11:40:03',1,1),(2,2,1,1,'SOO250311164156001',NULL,0.99,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 08:41:57',4,'2025-03-18 11:40:03',1,1),(3,2,1,1,'SOO250311164608001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 08:46:09',4,'2025-03-18 11:40:03',1,1),(4,2,1,1,'SOO250311171250001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 09:12:51',4,'2025-03-18 11:40:03',1,1),(5,2,1,1,'SOO250311181705001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 10:17:06',4,'2025-03-18 11:40:03',1,1),(6,2,1,1,'SOO250311181919001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 10:19:19',4,'2025-03-18 11:40:03',1,1),(7,2,1,1,'SOO250311182127001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 10:21:28',4,'2025-03-18 11:40:03',1,1),(10,2,1,1,'SOO250311190139001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 11:01:39',4,'2025-03-18 11:40:03',1,1),(11,2,1,1,'SOO250311190434001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 11:04:35',4,'2025-03-18 11:40:03',1,1),(17,2,1,1,'SOO250311195823001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-11 11:58:24',4,'2025-03-18 11:40:03',1,1),(18,2,1,1,'SOO250312200203001',NULL,0.01,7,'2025-03-14 12:09:18','CLOSED',2,'2025-03-12 12:02:04',4,'2025-03-18 11:40:03',1,1),(19,2,1,1,'SOO250312200349001',NULL,0.01,7,'2025-03-14 12:09:18','SUCCESS',2,'2025-03-12 12:03:50',1,'2025-03-18 11:40:03',1,1),(20,2,1,1,'SOO250312201054001',NULL,0.01,7,'2025-03-14 12:09:18','SUCCESS',2,'2025-03-12 12:10:54',1,'2025-03-18 11:40:03',1,1),(24,4,1,1,'SOO250318195832001',NULL,0.01,7,'2025-03-18 20:00:33','CLOSED',4,'2025-03-18 11:58:33',4,'2025-03-18 12:05:50',1,0),(25,4,1,1,'SOO250318200133001','4200002699202503185321472896',0.01,7,'2025-03-18 20:16:34','SUCCESS',4,'2025-03-18 12:01:34',1,'2025-03-18 12:01:49',1,0),(26,4,1,1,'SOO250318200955001','4200002692202503187598097360',0.01,7,'2025-03-18 20:24:56','SUCCESS',4,'2025-03-18 12:09:56',4,'2025-03-18 12:10:09',1,0);
- /*!40000 ALTER TABLE `subscription_order` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `subscription_plan`
- --
- DROP TABLE IF EXISTS `subscription_plan`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `subscription_plan` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `subscription_source_id` bigint NOT NULL COMMENT '订阅源ID',
- `subscription_price` decimal(12,2) NOT NULL DEFAULT '0.00' COMMENT '订阅价格(单位:元)',
- `subscription_duration` int NOT NULL COMMENT '订阅时长(单位:天)',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订阅价格计划表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `subscription_plan`
- --
- LOCK TABLES `subscription_plan` WRITE;
- /*!40000 ALTER TABLE `subscription_plan` DISABLE KEYS */;
- INSERT INTO `subscription_plan` VALUES (1,1,0.01,7,1,'2025-03-10 08:09:58',1,'2025-03-11 08:45:03',1,0),(2,1,2.99,30,1,'2025-03-10 08:09:58',1,'2025-03-10 08:09:58',1,0),(3,2,0.00,0,1,'2025-03-10 08:09:58',1,'2025-03-10 08:09:58',1,0);
- /*!40000 ALTER TABLE `subscription_plan` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `subscription_source`
- --
- DROP TABLE IF EXISTS `subscription_source`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `subscription_source` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `code` varchar(30) NOT NULL COMMENT '唯一编码',
- `title` varchar(100) NOT NULL COMMENT '主标题',
- `sub_title` varchar(300) DEFAULT NULL COMMENT '副标题',
- `paid_option` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT 'PAID' COMMENT '付费选项(FREE-免费、PAID-付费)',
- `push_channel` varchar(10) NOT NULL COMMENT '推送渠道(WXMP-微信服务号)',
- `push_frequency` varchar(100) NOT NULL COMMENT '推送频率',
- `description` varchar(1000) DEFAULT NULL COMMENT '详情描述',
- `pics` varchar(2000) DEFAULT NULL COMMENT '详情图片',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订阅源表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `subscription_source`
- --
- LOCK TABLES `subscription_source` WRITE;
- /*!40000 ALTER TABLE `subscription_source` DISABLE KEYS */;
- INSERT INTO `subscription_source` VALUES (1,'PRODUCT_HUNT_POST','Product Hunt每日榜单','通过微信渠道快速推送 Product Hunt 前一天的 Top30 产品的中文信息摘要','PAID','微信服务号','北京时间每天下午4点','Product Hunt 是全球最大的软件产品打榜平台,每天都有开发者发布新品并为loved产品投票。作为聚焦创新产品的热门网站,Product Hunt吸引了大量开发者和产品爱好者查看全球最新创意。然而,由于其为英文网站且访问需借助网络工具,许多用户在移动设备上快速获取信息并不方便,为此,我们推出了一款消息服务,每天在榜单更新结束后,精选当日排名靠前的产品','http://gips0.baidu.com/it/u=3375143540,3287761352&fm=3028&app=3028&f=JPEG&fmt=auto?w=960&h=1280,http://gips3.baidu.com/it/u=3886271102,3123389489&fm=3028&app=3028&f=JPEG&fmt=auto?w=1280&h=960',1,'2025-03-10 08:08:36',1,'2025-03-18 07:19:34',1,0),(2,'DA_LE_TOU','大乐透','测试子标题','FREE','微信服务号','每天21:30','测试描述','http://gips0.baidu.com/it/u=3375143540,3287761352&fm=3028&app=3028&f=JPEG&fmt=auto?w=960&h=1280,http://gips3.baidu.com/it/u=3886271102,3123389489&fm=3028&app=3028&f=JPEG&fmt=auto?w=1280&h=960',1,'2025-03-10 08:08:36',1,'2025-03-18 07:19:34',1,0),(3,'IPO_BOND','新债','测试子标题','FREE','微信服务号','每天21:30','测试描述','http://gips0.baidu.com/it/u=3375143540,3287761352&fm=3028&app=3028&f=JPEG&fmt=auto?w=960&h=1280,http://gips3.baidu.com/it/u=3886271102,3123389489&fm=3028&app=3028&f=JPEG&fmt=auto?w=1280&h=960',1,'2025-03-10 08:08:36',1,'2025-03-18 07:19:34',1,0),(4,'IPO_STOCK','新股','测试子标题','FREE','微信服务号','每天21:30','测试描述','http://gips0.baidu.com/it/u=3375143540,3287761352&fm=3028&app=3028&f=JPEG&fmt=auto?w=960&h=1280,http://gips3.baidu.com/it/u=3886271102,3123389489&fm=3028&app=3028&f=JPEG&fmt=auto?w=1280&h=960',1,'2025-03-10 08:08:36',1,'2025-03-18 07:19:34',1,0),(5,'SHUANG_SE_QIU','双色球','测试子标题','FREE','微信服务号','每天21:30','测试描述','http://gips0.baidu.com/it/u=3375143540,3287761352&fm=3028&app=3028&f=JPEG&fmt=auto?w=960&h=1280,http://gips3.baidu.com/it/u=3886271102,3123389489&fm=3028&app=3028&f=JPEG&fmt=auto?w=1280&h=960',1,'2025-03-10 08:08:36',1,'2025-03-18 07:19:34',1,0);
- /*!40000 ALTER TABLE `subscription_source` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `subscription_task_config`
- --
- DROP TABLE IF EXISTS `subscription_task_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `subscription_task_config` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `task_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '定时任务编码',
- `task_name` varchar(100) NOT NULL COMMENT '定时任务名称',
- `subscription_source_id` bigint DEFAULT NULL COMMENT '订阅源ID',
- `execute_option` varchar(10) NOT NULL COMMENT '执行选项(ENABLE-开启、DISABLE-关闭)',
- `page_path` varchar(100) DEFAULT NULL COMMENT '页面路径',
- `template_id` varchar(100) DEFAULT NULL COMMENT '消息模板ID',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订阅源与定时任务配置表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `subscription_task_config`
- --
- LOCK TABLES `subscription_task_config` WRITE;
- /*!40000 ALTER TABLE `subscription_task_config` DISABLE KEYS */;
- INSERT INTO `subscription_task_config` VALUES (1,'DA_LE_TOU','大乐透定时任务',1,'ENABLE','subscriptionSourceMarket','lJGGwwLWQM4Ba8rSoTkeni6_lnvE8h6UJ5_4jj132-4',1,'2025-03-06 14:00:30',1,'2025-03-18 00:36:50',1,0),(2,'SHUANG_SE_QIU','双色球定时任务',1,'ENABLE','subscriptionSourceMarket','lJGGwwLWQM4Ba8rSoTkeni6_lnvE8h6UJ5_4jj132-4',1,'2025-03-06 14:00:30',1,'2025-03-18 00:36:50',1,0),(3,'IPO_BOND','新债定时任务',1,'ENABLE','subscriptionSourceMarket','lJGGwwLWQM4Ba8rSoTkeni6_lnvE8h6UJ5_4jj132-4',1,'2025-03-06 14:00:30',1,'2025-03-18 00:36:50',1,0),(4,'IPO_STOCK','新股定时任务',1,'ENABLE','subscriptionSourceMarket','lJGGwwLWQM4Ba8rSoTkeni6_lnvE8h6UJ5_4jj132-4',1,'2025-03-06 14:00:30',1,'2025-03-18 00:36:50',1,0),(5,'PRODUCT_HUNT','ProductHunt热榜定时任务',1,'ENABLE','subscriptionSourceMarket','lJGGwwLWQM4Ba8rSoTkeni6_lnvE8h6UJ5_4jj132-4',1,'2025-03-06 14:00:30',1,'2025-03-18 00:36:50',1,0),(6,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务',NULL,'ENABLE',NULL,NULL,1,'2025-03-06 14:00:30',1,'2025-03-18 11:26:01',1,0),(7,'AUTO_DELETE_SUBSCRIPTION_USER_CONFIG','用户订阅源配置过期自动删除',NULL,'ENABLE',NULL,NULL,1,'2025-03-06 14:00:30',1,'2025-03-18 00:36:50',1,0);
- /*!40000 ALTER TABLE `subscription_task_config` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `subscription_user_config`
- --
- DROP TABLE IF EXISTS `subscription_user_config`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `subscription_user_config` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `subscription_source_code` varchar(30) NOT NULL COMMENT '订阅源编码',
- `start_date` date NOT NULL COMMENT '订阅开始时间',
- `end_date` date NOT NULL COMMENT '订阅结束时间',
- `push_option` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '消息推送选项(ENABLED-开启、DISABLED-关闭)',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户的订阅源配置表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `subscription_user_config`
- --
- LOCK TABLES `subscription_user_config` WRITE;
- /*!40000 ALTER TABLE `subscription_user_config` DISABLE KEYS */;
- INSERT INTO `subscription_user_config` VALUES (1,4,'DA_LE_TOU','2025-03-12','2025-03-20','ENABLED',1,'2025-03-12 12:11:08',4,'2025-03-18 11:39:46',1,1),(2,4,'SHUANG_SE_QIU','2025-03-12','2025-03-20','ENABLED',1,'2025-03-12 12:11:08',2,'2025-03-18 11:39:46',1,1),(3,4,'IPO_BOND','2025-03-12','2025-03-20','ENABLED',1,'2025-03-12 12:11:08',2,'2025-03-18 11:39:46',1,1),(4,4,'IPO_STOCK','2025-03-12','2025-03-20','ENABLED',1,'2025-03-12 12:11:08',2,'2025-03-18 11:39:46',1,1),(5,4,'PRODUCT_HUNT_POST','2025-03-12','2025-03-17','ENABLED',1,'2025-03-12 12:11:08',2,'2025-03-18 11:26:37',1,1),(6,4,'PRODUCT_HUNT_POST','2025-03-18','2025-04-01','ENABLED',1,'2025-03-18 12:01:49',4,'2025-03-18 12:10:09',1,0);
- /*!40000 ALTER TABLE `subscription_user_config` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `subscription_user_log`
- --
- DROP TABLE IF EXISTS `subscription_user_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `subscription_user_log` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `user_id` bigint NOT NULL COMMENT '用户ID',
- `subscription_order_id` bigint NOT NULL COMMENT '订单ID',
- `paid_option` varchar(10) NOT NULL COMMENT '付费选项(FREE-免费、PAID-付费)',
- `start_date` date NOT NULL COMMENT '订阅前开始时间',
- `before_end_date` date DEFAULT NULL COMMENT '订阅前结束时间',
- `after_end_date` date NOT NULL COMMENT '订阅后结束时间',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户的订阅日志表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `subscription_user_log`
- --
- LOCK TABLES `subscription_user_log` WRITE;
- /*!40000 ALTER TABLE `subscription_user_log` DISABLE KEYS */;
- INSERT INTO `subscription_user_log` VALUES (1,4,25,'PAID','2025-03-18',NULL,'2025-03-25',1,'2025-03-18 12:01:49',1,'2025-03-18 12:01:49',1,0),(2,4,26,'PAID','2025-03-18','2025-03-25','2025-04-01',4,'2025-03-18 12:10:10',4,'2025-03-18 12:10:10',1,0);
- /*!40000 ALTER TABLE `subscription_user_log` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `sys_dict`
- --
- DROP TABLE IF EXISTS `sys_dict`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `sys_dict` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `dict_code` varchar(100) NOT NULL COMMENT '字典编码',
- `dict_name` varchar(100) NOT NULL COMMENT '字典名称',
- `description` varchar(200) DEFAULT NULL COMMENT '描述',
- `status` int NOT NULL DEFAULT '1' COMMENT '状态(1-启用,0-失效)',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统字典表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `sys_dict`
- --
- LOCK TABLES `sys_dict` WRITE;
- /*!40000 ALTER TABLE `sys_dict` DISABLE KEYS */;
- /*!40000 ALTER TABLE `sys_dict` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `sys_dict_item`
- --
- DROP TABLE IF EXISTS `sys_dict_item`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `sys_dict_item` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `dict_id` bigint NOT NULL COMMENT '字典表主键',
- `data_type` int NOT NULL COMMENT '数据类型(0-String,1-Number)',
- `item_code` varchar(100) NOT NULL COMMENT '字典项编码',
- `item_name` varchar(100) NOT NULL COMMENT '字典项名称',
- `description` varchar(200) DEFAULT NULL COMMENT '描述',
- `status` int NOT NULL DEFAULT '1' COMMENT '状态(1-启用,0-失效)',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统字典项表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `sys_dict_item`
- --
- LOCK TABLES `sys_dict_item` WRITE;
- /*!40000 ALTER TABLE `sys_dict_item` DISABLE KEYS */;
- /*!40000 ALTER TABLE `sys_dict_item` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `sys_schedule_task_log`
- --
- DROP TABLE IF EXISTS `sys_schedule_task_log`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `sys_schedule_task_log` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `task_code` varchar(100) NOT NULL COMMENT '定时任务编码',
- `task_name` varchar(100) NOT NULL COMMENT '定时任务名称',
- `launch_method` varchar(10) NOT NULL COMMENT '启动方式(AUTO-自动,MANUAL-手动)',
- `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '任务开始时间',
- `end_time` timestamp NULL DEFAULT NULL COMMENT '任务结束时间',
- `process_status` varchar(10) NOT NULL COMMENT '执行状态(RUNNING-执行中,SUCCESS-成功,FAIL-失败)',
- `error_message` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '错误信息',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=258 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='定时任务执行记录表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `sys_schedule_task_log`
- --
- LOCK TABLES `sys_schedule_task_log` WRITE;
- /*!40000 ALTER TABLE `sys_schedule_task_log` DISABLE KEYS */;
- INSERT INTO `sys_schedule_task_log` VALUES (77,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-13 02:22:56','2025-03-13 02:22:57','SUCCESS',NULL,2,'2025-03-13 02:22:56',2,'2025-03-13 02:22:57',1,0),(78,'DA_LE_TOU','双色球定时任务','AUTO','2025-03-13 02:25:05','2025-03-13 02:25:05','SUCCESS',NULL,2,'2025-03-13 02:25:05',2,'2025-03-13 02:25:05',1,0),(79,'DA_LE_TOU','双色球定时任务','AUTO','2025-03-13 02:27:09','2025-03-13 02:27:23','SUCCESS',NULL,2,'2025-03-13 02:27:23',2,'2025-03-13 02:27:23',1,0),(80,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-13 02:29:09','2025-03-13 02:29:26','SUCCESS',NULL,2,'2025-03-13 02:29:14',2,'2025-03-13 02:29:29',1,0),(81,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-13 02:31:23','2025-03-13 02:31:29','SUCCESS',NULL,2,'2025-03-13 02:31:26',2,'2025-03-13 02:31:30',1,0),(82,'IPO_BOND','新债定时任务','AUTO','2025-03-13 02:32:48','2025-03-13 02:32:48','FAIL','Cannot format given Object as a Date',2,'2025-03-13 02:32:48',2,'2025-03-13 02:32:48',1,0),(83,'IPO_BOND','新债定时任务','AUTO','2025-03-13 02:37:57','2025-03-13 02:38:13','FAIL','Connection refused: no further information executing GET http://127.0.0.1:8000/api/public/bond_cov_issue_cninfo?end_date=20250313&start_date=20250313',2,'2025-03-13 02:37:57',2,'2025-03-13 02:38:13',1,0),(85,'IPO_BOND','新债定时任务','AUTO','2025-03-13 02:45:33','2025-03-13 02:45:34','FAIL','\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'actual_issue_amount\' cannot be null\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataIpoBondMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataIpoBondMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_ipo_bond ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,actual_issue_amount,allotment_price,announcement_date,bond_code,bond_name,bond_short_name,conversion_code,conversion_end_date,conversion_start_date,creditor_registration_date,fundraising_purpose,initial_conversion_price,issue_end_date,issue_method,issue_par_value,issue_price,issue_scope,issue_start_date,issue_target,online_subscription_code,online_subscription_date,online_subscription_max,online_subscription_min,online_subscription_result_date,online_subscription_short_name,online_subscription_unit,planned_issue_amount,priority_subscription_date,priority_subscription_payment_date,trading_market,underwriting_method ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'actual_issue_amount\' cannot be null\n; Column \'actual_issue_amount\' cannot be null',2,'2025-03-13 02:45:33',2,'2025-03-13 02:45:34',1,0),(86,'IPO_BOND','新债定时任务','AUTO','2025-03-13 02:47:26','2025-03-13 02:47:26','SUCCESS',NULL,2,'2025-03-13 02:47:26',2,'2025-03-13 02:47:26',1,0),(87,'IPO_STOCK','新股定时任务','AUTO','2025-03-13 02:53:18','2025-03-13 02:53:19','FAIL','\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'bidding_firms_count\' cannot be null\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataIpoStockMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataIpoStockMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_ipo_stock ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,bidding_firms_count,consecutive_limit_up_days,cumulative_bid_multiple,first_day_closing_price,increase_rate,industry_p_e_ratio,issue_p_e_ratio,issue_price,latest_price,listing_date,max_market_value_for_subscription,online_issued,payment_date_for_winning,profit_rer_winning_lot,stock_code,stock_short_name,subscription_code,subscription_date,subscription_limit,total_issued,winning_number_announcement_date,winning_rate ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'bidding_firms_count\' cannot be null\n; Column \'bidding_firms_count\' cannot be null',2,'2025-03-13 02:53:18',2,'2025-03-13 02:53:19',1,0),(88,'IPO_STOCK','新股定时任务','AUTO','2025-03-13 02:55:01','2025-03-13 02:55:02','SUCCESS',NULL,2,'2025-03-13 02:55:01',2,'2025-03-13 02:55:02',1,0),(89,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 02:56:28','2025-03-13 02:56:28','FAIL','[401] during [GET] to [http://127.0.0.1:8080/getTop30Posts] [ProductHuntFeign#getTop30Posts()]: [{\"timestamp\":\"2025-03-13 10:56:28:324\",\"success\":false,\"code\":\"999\",\"msg\":\"登录校验异常,原因:没有token凭据\",\"data\":null}]',2,'2025-03-13 02:56:28',2,'2025-03-13 02:56:28',1,0),(90,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 02:59:27','2025-03-13 02:59:28','FAIL','[401] during [GET] to [http://127.0.0.1:8080/getTop30Posts] [ProductHuntFeign#getTop30Posts()]: [{\"timestamp\":\"2025-03-13 10:59:27:510\",\"success\":false,\"code\":\"999\",\"msg\":\"登录校验异常,原因:没有token凭据\",\"data\":null}]',2,'2025-03-13 02:59:27',2,'2025-03-13 02:59:28',1,0),(91,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:01:19','2025-03-13 03:01:20','FAIL','[401] during [GET] to [http://127.0.0.1:8081/getTop30Posts] [ProductHuntFeign#getTop30Posts()]: [{\"timestamp\":\"2025-03-13 11:01:19:714\",\"success\":false,\"code\":\"999\",\"msg\":\"登录校验异常,原因:没有token凭据\",\"data\":null}]',2,'2025-03-13 03:01:19',2,'2025-03-13 03:01:20',1,0),(92,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:04:33','2025-03-13 03:04:49','FAIL','[401] during [GET] to [http://127.0.0.1:8081/getTop30Posts] [ProductHuntFeign#getTop30Posts()]: [{\"timestamp\":\"2025-03-13 11:04:49:440\",\"success\":false,\"code\":\"999\",\"msg\":\"登录校验异常,原因:没有token凭据\",\"data\":null}]',2,'2025-03-13 03:04:33',2,'2025-03-13 03:04:49',1,0),(93,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:06:36','2025-03-13 03:06:37','FAIL','Type definition error: [simple type, class com.dataeasy.server.common.pojo.JsonResponse]',2,'2025-03-13 03:06:36',2,'2025-03-13 03:06:37',1,0),(94,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:09:19','2025-03-13 03:09:20','FAIL','Error while extracting response for type [java.util.List<com.dataeasy.server.feign.dto.PostNode>] and content type [application/json]',2,'2025-03-13 03:09:19',2,'2025-03-13 03:09:20',1,0),(95,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:21:50','2025-03-13 03:21:51','FAIL','Error while extracting response for type [java.util.List<com.dataeasy.server.feign.dto.PostNode>] and content type [application/json]',2,'2025-03-13 03:21:50',2,'2025-03-13 03:21:51',1,0),(96,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:24:02','2025-03-13 03:24:02','FAIL','Error while extracting response for type [java.util.List<com.dataeasy.server.feign.dto.PostNode>] and content type [application/json]',2,'2025-03-13 03:24:02',2,'2025-03-13 03:24:02',1,0),(97,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:25:42','2025-03-13 03:25:47','FAIL','Type definition error: [simple type, class com.dataeasy.server.common.pojo.JsonResponse]',2,'2025-03-13 03:25:42',2,'2025-03-13 03:25:47',1,0),(98,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:27:08','2025-03-13 03:27:09','FAIL','Type definition error: [simple type, class com.dataeasy.server.common.pojo.JsonResponse]',2,'2025-03-13 03:27:08',2,'2025-03-13 03:27:09',1,0),(99,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:29:20','2025-03-13 03:29:21','SUCCESS',NULL,2,'2025-03-13 03:29:20',2,'2025-03-13 03:29:21',1,0),(100,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 03:31:44','2025-03-13 03:31:53','FAIL','\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataProductHuntPostMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataProductHuntPostMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_product_hunt_post ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,created_at,description,featured_at,name,post_id,rank_date,rank_num,tagline,url,votes_count,website ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\n; bad SQL grammar []',2,'2025-03-13 03:31:44',2,'2025-03-13 03:31:53',1,0),(101,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:43:52','2025-03-13 04:43:55','FAIL','\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataProductHuntPostMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataProductHuntPostMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_product_hunt_post ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,created_at,description,featured_at,name,post_id,rank_date,rank_num,tagline,url,votes_count,website ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\n; bad SQL grammar []',2,'2025-03-13 04:43:52',2,'2025-03-13 04:43:55',1,0),(102,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:44:29','2025-03-13 04:45:04','FAIL','\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataProductHuntPostMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataProductHuntPostMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_product_hunt_post ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,created_at,description,featured_at,name,post_id,rank_date,rank_num,tagline,url,votes_count,website ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\n; bad SQL grammar []',2,'2025-03-13 04:44:29',2,'2025-03-13 04:45:04',1,0),(103,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:49:59','2025-03-13 04:50:10','FAIL','Cannot invoke \"java.time.LocalDateTime.atZone(java.time.ZoneId)\" because the return value of \"com.dataeasy.server.feign.dto.PostNode.getFeaturedAt()\" is null',2,'2025-03-13 04:50:00',2,'2025-03-13 04:50:10',1,0),(104,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:53:01','2025-03-13 04:53:08','FAIL','\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataProductHuntPostMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataProductHuntPostMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_product_hunt_post ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,created_at,description,featured_at,name,post_id,rank_date,rank_num,tagline,url,votes_count,website ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'created_at\' in \'field list\'\n; bad SQL grammar []',2,'2025-03-13 04:53:01',2,'2025-03-13 04:53:08',1,0),(105,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:54:38','2025-03-13 04:54:42','FAIL','\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'votes_count\' in \'field list\'\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataProductHuntPostMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataProductHuntPostMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_product_hunt_post ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,created_at,description,featured_at,name,post_id,rank_date,rank_num,tagline,url,votes_count,website ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'votes_count\' in \'field list\'\n; bad SQL grammar []',2,'2025-03-13 04:54:38',2,'2025-03-13 04:54:42',1,0),(106,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:55:18','2025-03-13 04:55:18','FAIL','\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'post_id\' cannot be null\r\n### The error may exist in com/dataeasy/server/atomic/mapper/DataProductHuntPostMapper.java (best guess)\r\n### The error may involve com.dataeasy.server.atomic.mapper.DataProductHuntPostMapper.insertList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO data_product_hunt_post ( created_by,creation_time,delete_flag,last_update_time,last_updated_by,version,created_at,description,featured_at,name,post_id,rank_date,rank_num,tagline,url,votes_count,website ) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? ) , ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'post_id\' cannot be null\n; Column \'post_id\' cannot be null',2,'2025-03-13 04:55:18',2,'2025-03-13 04:55:18',1,0),(107,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-13 04:56:49','2025-03-13 04:56:50','SUCCESS',NULL,2,'2025-03-13 04:56:49',2,'2025-03-13 04:56:50',1,0),(108,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-13 10:40:43','2025-03-13 10:40:54','SUCCESS',NULL,4,'2025-03-13 10:40:43',4,'2025-03-13 10:40:54',1,0),(109,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-13 10:41:44','2025-03-13 10:41:58','SUCCESS',NULL,4,'2025-03-13 10:41:44',4,'2025-03-13 10:41:58',1,0),(110,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-13 10:45:47','2025-03-13 10:45:53','SUCCESS',NULL,4,'2025-03-13 10:45:47',4,'2025-03-13 10:45:53',1,0),(111,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 02:02:20','2025-03-14 02:02:34','FAIL','[401] during [GET] to [http://127.0.0.1:8081/producthunt/getTop30Posts] [ProductHuntFeign#getTop30Posts()]: [{\"timestamp\":\"2025-03-14 10:02:32:886\",\"success\":false,\"code\":\"999\",\"msg\":\"登录校验异常,原因:没有token凭据\",\"data\":null}]',4,'2025-03-14 02:02:20',4,'2025-03-14 02:02:34',1,0),(112,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 02:25:56','2025-03-14 02:26:08','SUCCESS',NULL,4,'2025-03-14 02:25:56',4,'2025-03-14 02:26:08',1,0),(113,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 02:36:50','2025-03-14 02:36:57','SUCCESS',NULL,4,'2025-03-14 02:36:50',4,'2025-03-14 02:36:57',1,0),(114,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 06:36:21','2025-03-14 06:36:37','SUCCESS',NULL,4,'2025-03-14 06:36:22',4,'2025-03-14 06:36:37',1,0),(115,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-14 06:37:04','2025-03-14 06:37:06','SUCCESS',NULL,4,'2025-03-14 06:37:04',4,'2025-03-14 06:37:06',1,0),(116,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-14 06:38:53','2025-03-14 06:38:53','SUCCESS',NULL,4,'2025-03-14 06:38:53',4,'2025-03-14 06:38:53',1,0),(117,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-14 06:44:19','2025-03-14 06:44:21','SUCCESS',NULL,4,'2025-03-14 06:44:19',4,'2025-03-14 06:44:21',1,0),(118,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-14 06:44:19','2025-03-14 06:44:21','SUCCESS',NULL,4,'2025-03-14 06:44:19',4,'2025-03-14 06:44:21',1,0),(119,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-14 06:48:03','2025-03-14 06:48:05','SUCCESS',NULL,4,'2025-03-14 06:48:03',4,'2025-03-14 06:48:05',1,0),(120,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-14 06:48:03','2025-03-14 06:48:05','SUCCESS',NULL,4,'2025-03-14 06:48:03',4,'2025-03-14 06:48:05',1,0),(121,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-14 06:53:04','2025-03-14 06:53:06','SUCCESS',NULL,4,'2025-03-14 06:53:04',4,'2025-03-14 06:53:06',1,0),(122,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-14 06:54:40','2025-03-14 06:54:42','SUCCESS',NULL,4,'2025-03-14 06:54:40',4,'2025-03-14 06:54:42',1,0),(123,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-14 07:32:01','2025-03-14 07:32:04','SUCCESS',NULL,4,'2025-03-14 07:32:01',4,'2025-03-14 07:32:04',1,0),(124,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-14 07:34:23','2025-03-14 07:34:30','SUCCESS',NULL,4,'2025-03-14 07:34:24',4,'2025-03-14 07:34:30',1,0),(125,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 07:49:08','2025-03-14 07:49:08','FAIL','测试事物',4,'2025-03-14 07:49:08',4,'2025-03-14 07:49:08',1,0),(126,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 07:54:01','2025-03-14 07:54:01','FAIL','测试事物',4,'2025-03-14 07:54:01',4,'2025-03-14 07:54:01',1,0),(127,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 08:00:00','2025-03-14 08:00:00','SUCCESS',NULL,1,'2025-03-14 08:00:00',1,'2025-03-14 08:00:00',1,0),(128,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:05:00','2025-03-14 08:05:00','FAIL','Connection refused: no further information executing GET http://127.0.0.1:8081/producthunt/getTop30Posts',1,'2025-03-14 08:05:00',1,'2025-03-14 08:05:00',1,0),(129,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 08:09:12','2025-03-14 08:09:12','FAIL','测试事物',4,'2025-03-14 08:09:12',4,'2025-03-14 08:09:12',1,0),(130,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 08:10:25','2025-03-14 08:10:25','SUCCESS',NULL,4,'2025-03-14 08:10:25',4,'2025-03-14 08:10:25',1,0),(131,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 08:15:02','2025-03-14 08:15:03','SUCCESS',NULL,1,'2025-03-14 08:15:02',1,'2025-03-14 08:15:03',1,0),(132,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:23:09','2025-03-14 08:23:15','SUCCESS',NULL,4,'2025-03-14 08:23:09',4,'2025-03-14 08:23:15',1,0),(133,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:27:42','2025-03-14 08:27:43','SUCCESS',NULL,4,'2025-03-14 08:27:42',4,'2025-03-14 08:27:43',1,0),(134,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 08:30:00','2025-03-14 08:30:00','SUCCESS',NULL,1,'2025-03-14 08:30:00',1,'2025-03-14 08:30:00',1,0),(135,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:32:35','2025-03-14 08:32:42','SUCCESS',NULL,4,'2025-03-14 08:32:35',4,'2025-03-14 08:32:42',1,0),(136,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:34:00','2025-03-14 08:34:04','SUCCESS',NULL,4,'2025-03-14 08:34:00',4,'2025-03-14 08:34:04',1,0),(137,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:40:07','2025-03-14 08:40:13','SUCCESS',NULL,4,'2025-03-14 08:40:07',4,'2025-03-14 08:40:13',1,0),(138,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:40:57','2025-03-14 08:40:57','SUCCESS',NULL,4,'2025-03-14 08:40:57',4,'2025-03-14 08:40:57',1,0),(139,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:42:18','2025-03-14 08:42:22','SUCCESS',NULL,4,'2025-03-14 08:42:18',4,'2025-03-14 08:42:22',1,0),(140,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:46:53',NULL,'RUNNING',NULL,4,'2025-03-14 08:46:53',4,'2025-03-14 08:46:53',1,0),(141,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:51:12','2025-03-14 08:51:40','SUCCESS',NULL,4,'2025-03-14 08:51:12',4,'2025-03-14 08:51:40',1,0),(142,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:56:44','2025-03-14 08:58:50','SUCCESS',NULL,4,'2025-03-14 08:56:44',4,'2025-03-14 08:58:50',1,0),(143,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 08:59:56','2025-03-14 09:01:55','SUCCESS',NULL,4,'2025-03-14 08:59:56',4,'2025-03-14 09:01:55',1,0),(144,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 09:00:00','2025-03-14 09:00:00','SUCCESS',NULL,1,'2025-03-14 09:00:00',1,'2025-03-14 09:00:00',1,0),(145,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 09:05:01','2025-03-14 09:06:34','SUCCESS',NULL,4,'2025-03-14 09:05:01',4,'2025-03-14 09:06:34',1,0),(146,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 09:09:20','2025-03-14 09:12:07','SUCCESS',NULL,4,'2025-03-14 09:09:20',4,'2025-03-14 09:12:07',1,0),(147,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 09:13:42','2025-03-14 09:15:08','SUCCESS',NULL,4,'2025-03-14 09:13:42',4,'2025-03-14 09:15:08',1,0),(148,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 09:15:00','2025-03-14 09:15:00','SUCCESS',NULL,1,'2025-03-14 09:15:00',1,'2025-03-14 09:15:00',1,0),(149,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 09:21:06','2025-03-14 09:21:34','SUCCESS',NULL,4,'2025-03-14 09:21:06',4,'2025-03-14 09:21:34',1,0),(150,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 09:24:17','2025-03-14 09:26:44','SUCCESS',NULL,4,'2025-03-14 09:24:17',4,'2025-03-14 09:26:44',1,0),(151,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-14 09:27:29','2025-03-14 09:29:19','SUCCESS',NULL,4,'2025-03-14 09:27:29',4,'2025-03-14 09:29:19',1,0),(152,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-14 09:30:00','2025-03-14 09:30:00','SUCCESS',NULL,1,'2025-03-14 09:30:00',1,'2025-03-14 09:30:00',1,0),(153,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 01:51:44','2025-03-17 01:52:04','FAIL','传入的集合参数不能为空',4,'2025-03-17 01:51:45',4,'2025-03-17 01:52:04',1,0),(154,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 01:53:47','2025-03-17 01:53:51','SUCCESS',NULL,4,'2025-03-17 01:53:47',4,'2025-03-17 01:53:51',1,0),(155,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 01:55:17','2025-03-17 01:55:21','SUCCESS',NULL,4,'2025-03-17 01:55:17',4,'2025-03-17 01:55:21',1,0),(156,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 01:56:30','2025-03-17 01:56:31','SUCCESS',NULL,4,'2025-03-17 01:56:30',4,'2025-03-17 01:56:31',1,0),(157,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 01:56:45','2025-03-17 01:58:00','SUCCESS',NULL,4,'2025-03-17 01:56:45',4,'2025-03-17 01:58:00',1,0),(158,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 01:58:27','2025-03-17 01:58:45','SUCCESS',NULL,4,'2025-03-17 01:58:27',4,'2025-03-17 01:58:45',1,0),(159,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 02:00:00','2025-03-17 02:00:00','SUCCESS',NULL,1,'2025-03-17 02:00:00',1,'2025-03-17 02:00:00',1,0),(160,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 02:04:49','2025-03-17 02:05:12','SUCCESS',NULL,4,'2025-03-17 02:04:49',4,'2025-03-17 02:05:12',1,0),(161,'IPO_STOCK','新股定时任务','AUTO','2025-03-17 02:05:33','2025-03-17 02:05:41','SUCCESS',NULL,4,'2025-03-17 02:05:33',4,'2025-03-17 02:05:41',1,0),(162,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 02:15:00','2025-03-17 02:15:00','SUCCESS',NULL,1,'2025-03-17 02:15:00',1,'2025-03-17 02:15:00',1,0),(163,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 02:30:00','2025-03-17 02:30:00','SUCCESS',NULL,1,'2025-03-17 02:30:00',1,'2025-03-17 02:30:00',1,0),(164,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 02:45:00','2025-03-17 02:45:00','SUCCESS',NULL,1,'2025-03-17 02:45:00',1,'2025-03-17 02:45:00',1,0),(165,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 03:00:00','2025-03-17 03:00:00','SUCCESS',NULL,1,'2025-03-17 03:00:00',1,'2025-03-17 03:00:00',1,0),(166,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 03:15:00','2025-03-17 03:15:00','SUCCESS',NULL,1,'2025-03-17 03:15:00',1,'2025-03-17 03:15:00',1,0),(167,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 03:30:00','2025-03-17 03:30:00','SUCCESS',NULL,1,'2025-03-17 03:30:00',1,'2025-03-17 03:30:00',1,0),(168,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 03:45:00','2025-03-17 03:45:00','SUCCESS',NULL,1,'2025-03-17 03:45:00',1,'2025-03-17 03:45:00',1,0),(169,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 04:00:00','2025-03-17 04:00:00','SUCCESS',NULL,1,'2025-03-17 04:00:00',1,'2025-03-17 04:00:00',1,0),(170,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 04:15:00','2025-03-17 04:15:00','SUCCESS',NULL,1,'2025-03-17 04:15:00',1,'2025-03-17 04:15:00',1,0),(171,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 04:30:00','2025-03-17 04:30:00','SUCCESS',NULL,1,'2025-03-17 04:30:00',1,'2025-03-17 04:30:00',1,0),(172,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 04:45:00','2025-03-17 04:45:00','SUCCESS',NULL,1,'2025-03-17 04:45:00',1,'2025-03-17 04:45:00',1,0),(173,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 05:00:00','2025-03-17 05:00:00','SUCCESS',NULL,1,'2025-03-17 05:00:00',1,'2025-03-17 05:00:00',1,0),(174,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 05:15:00','2025-03-17 05:15:00','SUCCESS',NULL,1,'2025-03-17 05:15:00',1,'2025-03-17 05:15:00',1,0),(175,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 05:30:00','2025-03-17 05:30:00','SUCCESS',NULL,1,'2025-03-17 05:30:00',1,'2025-03-17 05:30:00',1,0),(176,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 05:45:00','2025-03-17 05:45:00','SUCCESS',NULL,1,'2025-03-17 05:45:00',1,'2025-03-17 05:45:00',1,0),(177,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 06:00:00','2025-03-17 06:00:00','SUCCESS',NULL,1,'2025-03-17 06:00:00',1,'2025-03-17 06:00:00',1,0),(178,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 08:00:02','2025-03-17 08:00:03','SUCCESS',NULL,1,'2025-03-17 08:00:02',1,'2025-03-17 08:00:03',1,0),(179,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-17 08:05:00','2025-03-17 08:05:01','FAIL','Connection refused: no further information executing GET http://127.0.0.1:8081/producthunt/getPosts?rankDate=2025-03-16',1,'2025-03-17 08:05:00',1,'2025-03-17 08:05:01',1,0),(180,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 08:15:02','2025-03-17 08:15:02','SUCCESS',NULL,1,'2025-03-17 08:15:02',1,'2025-03-17 08:15:02',1,0),(181,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 08:30:00','2025-03-17 08:30:01','SUCCESS',NULL,1,'2025-03-17 08:30:00',1,'2025-03-17 08:30:01',1,0),(182,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 08:45:00','2025-03-17 08:45:01','SUCCESS',NULL,1,'2025-03-17 08:45:00',1,'2025-03-17 08:45:01',1,0),(183,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 09:00:00','2025-03-17 09:00:00','SUCCESS',NULL,1,'2025-03-17 09:00:00',1,'2025-03-17 09:00:00',1,0),(184,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 09:15:00','2025-03-17 09:15:00','SUCCESS',NULL,1,'2025-03-17 09:15:00',1,'2025-03-17 09:15:00',1,0),(185,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 09:30:00','2025-03-17 09:30:00','SUCCESS',NULL,1,'2025-03-17 09:30:00',1,'2025-03-17 09:30:00',1,0),(186,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 09:45:00','2025-03-17 09:45:00','SUCCESS',NULL,1,'2025-03-17 09:45:00',1,'2025-03-17 09:45:00',1,0),(187,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 10:00:00','2025-03-17 10:00:00','SUCCESS',NULL,1,'2025-03-17 10:00:00',1,'2025-03-17 10:00:00',1,0),(188,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 10:15:00','2025-03-17 10:15:00','SUCCESS',NULL,1,'2025-03-17 10:15:00',1,'2025-03-17 10:15:00',1,0),(189,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 10:30:00','2025-03-17 10:30:00','SUCCESS',NULL,1,'2025-03-17 10:30:00',1,'2025-03-17 10:30:00',1,0),(190,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 10:45:00','2025-03-17 10:45:00','SUCCESS',NULL,1,'2025-03-17 10:45:00',1,'2025-03-17 10:45:00',1,0),(191,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 11:00:00','2025-03-17 11:00:00','SUCCESS',NULL,1,'2025-03-17 11:00:00',1,'2025-03-17 11:00:00',1,0),(192,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 11:15:00','2025-03-17 11:15:00','SUCCESS',NULL,1,'2025-03-17 11:15:00',1,'2025-03-17 11:15:00',1,0),(193,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-17 11:30:00','2025-03-17 11:30:00','SUCCESS',NULL,1,'2025-03-17 11:30:00',1,'2025-03-17 11:30:00',1,0),(194,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 00:40:02','2025-03-18 00:40:03','FAIL','Cannot invoke \"java.util.Map.put(Object, Object)\" because \"context\" is null',1,'2025-03-18 00:40:02',1,'2025-03-18 00:40:03',1,0),(195,'IPO_BOND','新债定时任务','AUTO','2025-03-18 00:44:30','2025-03-18 00:44:33','SUCCESS',NULL,4,'2025-03-18 00:44:30',4,'2025-03-18 00:44:33',1,0),(196,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 00:45:00','2025-03-18 00:45:00','SUCCESS',NULL,1,'2025-03-18 00:45:00',1,'2025-03-18 00:45:00',1,0),(197,'IPO_BOND','新债定时任务','AUTO','2025-03-18 00:45:48','2025-03-18 00:46:07','SUCCESS',NULL,4,'2025-03-18 00:45:48',4,'2025-03-18 00:46:07',1,0),(198,'IPO_BOND','新债定时任务','AUTO','2025-03-18 00:47:18','2025-03-18 00:47:20','SUCCESS',NULL,4,'2025-03-18 00:47:18',4,'2025-03-18 00:47:20',1,0),(199,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 00:51:52','2025-03-18 00:51:52','FAIL','Connection refused: no further information executing GET http://127.0.0.1:8081/producthunt/getPosts?rankDate=2025-03-17',4,'2025-03-18 00:51:52',4,'2025-03-18 00:51:52',1,0),(200,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 00:53:05','2025-03-18 00:54:21','SUCCESS',NULL,4,'2025-03-18 00:53:05',4,'2025-03-18 00:54:21',1,0),(201,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 00:56:18','2025-03-18 00:56:18','FAIL','date must not be null',4,'2025-03-18 00:56:18',4,'2025-03-18 00:56:18',1,0),(202,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 01:01:46','2025-03-18 01:01:48','FAIL','class java.lang.String cannot be cast to class java.util.Date (java.lang.String and java.util.Date are in module java.base of loader \'bootstrap\')',4,'2025-03-18 01:01:46',4,'2025-03-18 01:01:48',1,0),(203,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 01:02:42','2025-03-18 01:02:43','FAIL','Conversion = \'期\'',4,'2025-03-18 01:02:42',4,'2025-03-18 01:02:43',1,0),(204,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 01:03:31','2025-03-18 01:03:33','SUCCESS',NULL,4,'2025-03-18 01:03:31',4,'2025-03-18 01:03:33',1,0),(205,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 01:11:05','2025-03-18 01:11:06','SUCCESS',NULL,4,'2025-03-18 01:11:05',4,'2025-03-18 01:11:06',1,0),(206,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-18 01:11:39','2025-03-18 01:11:39','FAIL','class java.lang.String cannot be cast to class java.util.Date (java.lang.String and java.util.Date are in module java.base of loader \'bootstrap\')',4,'2025-03-18 01:11:39',4,'2025-03-18 01:11:39',1,0),(207,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-18 01:13:44','2025-03-18 01:13:44','SUCCESS',NULL,4,'2025-03-18 01:13:44',4,'2025-03-18 01:13:44',1,0),(208,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 01:15:00','2025-03-18 01:15:01','SUCCESS',NULL,1,'2025-03-18 01:15:00',1,'2025-03-18 01:15:01',1,0),(209,'IPO_BOND','新债定时任务','AUTO','2025-03-18 01:15:37','2025-03-18 01:15:38','SUCCESS',NULL,4,'2025-03-18 01:15:37',4,'2025-03-18 01:15:38',1,0),(210,'IPO_BOND','新债定时任务','AUTO','2025-03-18 01:23:02','2025-03-18 01:23:06','SUCCESS',NULL,4,'2025-03-18 01:23:02',4,'2025-03-18 01:23:06',1,0),(211,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 01:30:03','2025-03-18 01:30:04','SUCCESS',NULL,1,'2025-03-18 01:30:03',1,'2025-03-18 01:30:04',1,0),(212,'IPO_BOND','新债定时任务','AUTO','2025-03-18 01:30:08','2025-03-18 01:30:10','SUCCESS',NULL,4,'2025-03-18 01:30:08',4,'2025-03-18 01:30:10',1,0),(213,'IPO_BOND','新债定时任务','AUTO','2025-03-18 01:32:08','2025-03-18 01:32:10','SUCCESS',NULL,4,'2025-03-18 01:32:08',4,'2025-03-18 01:32:10',1,0),(214,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 01:33:12','2025-03-18 01:33:13','SUCCESS',NULL,4,'2025-03-18 01:33:12',4,'2025-03-18 01:33:13',1,0),(215,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 01:51:23','2025-03-18 01:51:24','FAIL','Error while extracting response for type [java.util.List<com.dataeasy.server.feign.dto.finance.StockResponse>] and content type [application/json]',4,'2025-03-18 01:51:23',4,'2025-03-18 01:51:24',1,0),(216,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 01:54:46','2025-03-18 01:54:48','SUCCESS',NULL,4,'2025-03-18 01:54:46',4,'2025-03-18 01:54:48',1,0),(217,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 01:57:09','2025-03-18 01:57:11','SUCCESS',NULL,4,'2025-03-18 01:57:09',4,'2025-03-18 01:57:11',1,0),(218,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 02:00:00','2025-03-18 02:00:00','SUCCESS',NULL,1,'2025-03-18 02:00:00',1,'2025-03-18 02:00:00',1,0),(219,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 02:03:37','2025-03-18 02:03:39','SUCCESS',NULL,4,'2025-03-18 02:03:37',4,'2025-03-18 02:03:39',1,0),(220,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 03:13:11','2025-03-18 03:13:13','SUCCESS',NULL,4,'2025-03-18 03:13:11',4,'2025-03-18 03:13:13',1,0),(221,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 03:14:36','2025-03-18 03:14:37','SUCCESS',NULL,4,'2025-03-18 03:14:36',4,'2025-03-18 03:14:37',1,0),(222,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 03:15:00','2025-03-18 03:15:00','SUCCESS',NULL,1,'2025-03-18 03:15:00',1,'2025-03-18 03:15:00',1,0),(223,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 03:15:26','2025-03-18 03:16:23','SUCCESS',NULL,4,'2025-03-18 03:15:26',4,'2025-03-18 03:16:23',1,0),(224,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 03:17:13','2025-03-18 03:18:34','SUCCESS',NULL,4,'2025-03-18 03:17:13',4,'2025-03-18 03:18:34',1,0),(225,'DA_LE_TOU','大乐透定时任务','AUTO','2025-03-18 03:20:40','2025-03-18 03:20:48','SUCCESS',NULL,4,'2025-03-18 03:20:40',4,'2025-03-18 03:20:48',1,0),(226,'SHUANG_SE_QIU','双色球定时任务','AUTO','2025-03-18 03:26:38','2025-03-18 03:26:41','SUCCESS',NULL,4,'2025-03-18 03:26:38',4,'2025-03-18 03:26:41',1,0),(227,'IPO_BOND','新债定时任务','AUTO','2025-03-18 03:26:52','2025-03-18 03:26:56','FAIL',NULL,4,'2025-03-18 03:26:52',4,'2025-03-18 03:26:56',1,0),(228,'IPO_BOND','新债定时任务','AUTO','2025-03-18 03:27:55','2025-03-18 03:28:09','FAIL',NULL,4,'2025-03-18 03:27:55',4,'2025-03-18 03:28:09',1,0),(229,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 03:30:00','2025-03-18 03:30:01','SUCCESS',NULL,1,'2025-03-18 03:30:00',1,'2025-03-18 03:30:01',1,0),(230,'IPO_BOND','新债定时任务','AUTO','2025-03-18 03:30:00','2025-03-18 03:30:06','SUCCESS',NULL,4,'2025-03-18 03:30:00',4,'2025-03-18 03:30:06',1,0),(231,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 03:31:13','2025-03-18 03:31:14','SUCCESS',NULL,4,'2025-03-18 03:31:13',4,'2025-03-18 03:31:14',1,0),(232,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 03:39:14','2025-03-18 03:39:18','SUCCESS',NULL,4,'2025-03-18 03:39:14',4,'2025-03-18 03:39:18',1,0),(233,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 03:45:55','2025-03-18 03:46:03','SUCCESS',NULL,4,'2025-03-18 03:45:55',4,'2025-03-18 03:46:03',1,0),(234,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 03:48:20','2025-03-18 03:48:22','SUCCESS',NULL,4,'2025-03-18 03:48:20',4,'2025-03-18 03:48:22',1,0),(235,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 03:49:16','2025-03-18 03:49:17','SUCCESS',NULL,4,'2025-03-18 03:49:16',4,'2025-03-18 03:49:17',1,0),(236,'IPO_BOND','新债定时任务','AUTO','2025-03-18 04:58:10','2025-03-18 04:58:20','SUCCESS',NULL,4,'2025-03-18 04:58:10',4,'2025-03-18 04:58:20',1,0),(237,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 05:00:00','2025-03-18 05:00:01','SUCCESS',NULL,1,'2025-03-18 05:00:00',1,'2025-03-18 05:00:01',1,0),(238,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 05:01:48','2025-03-18 05:01:50','SUCCESS',NULL,4,'2025-03-18 05:01:48',4,'2025-03-18 05:01:50',1,0),(239,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 05:10:43','2025-03-18 05:10:59','SUCCESS',NULL,4,'2025-03-18 05:10:43',4,'2025-03-18 05:10:59',1,0),(240,'IPO_BOND','新债定时任务','AUTO','2025-03-18 05:15:33','2025-03-18 05:15:35','SUCCESS',NULL,4,'2025-03-18 05:15:33',4,'2025-03-18 05:15:35',1,0),(241,'IPO_STOCK','新股定时任务','AUTO','2025-03-18 05:15:49','2025-03-18 05:15:54','SUCCESS',NULL,4,'2025-03-18 05:15:49',4,'2025-03-18 05:15:54',1,0),(242,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 07:00:00','2025-03-18 07:00:00','SUCCESS',NULL,1,'2025-03-18 07:00:00',1,'2025-03-18 07:00:00',1,0),(243,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 07:15:00','2025-03-18 07:15:00','SUCCESS',NULL,1,'2025-03-18 07:15:00',1,'2025-03-18 07:15:00',1,0),(244,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 07:30:03','2025-03-18 07:30:04','SUCCESS',NULL,1,'2025-03-18 07:30:03',1,'2025-03-18 07:30:04',1,0),(245,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 07:45:00','2025-03-18 07:45:00','SUCCESS',NULL,1,'2025-03-18 07:45:00',1,'2025-03-18 07:45:00',1,0),(246,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 08:00:00','2025-03-18 08:00:01','SUCCESS',NULL,1,'2025-03-18 08:00:00',1,'2025-03-18 08:00:01',1,0),(247,'PRODUCT_HUNT','ProductHunt热榜定时任务','AUTO','2025-03-18 08:05:03','2025-03-18 08:05:04','FAIL','Connection refused: no further information executing GET http://127.0.0.1:8081/producthunt/getPosts?rankDate=2025-03-17',1,'2025-03-18 08:05:03',1,'2025-03-18 08:05:04',1,0),(248,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 08:15:00','2025-03-18 08:15:00','SUCCESS',NULL,1,'2025-03-18 08:15:00',1,'2025-03-18 08:15:00',1,0),(249,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 08:30:00','2025-03-18 08:30:00','SUCCESS',NULL,1,'2025-03-18 08:30:00',1,'2025-03-18 08:30:00',1,0),(250,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 08:45:00','2025-03-18 08:45:01','SUCCESS',NULL,1,'2025-03-18 08:45:00',1,'2025-03-18 08:45:01',1,0),(251,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 09:00:00','2025-03-18 09:00:00','SUCCESS',NULL,1,'2025-03-18 09:00:00',1,'2025-03-18 09:00:00',1,0),(252,'AUTO_DELETE_SUBSCRIPTION_USER_CONFIG','用户订阅源配置过期自动删除','AUTO','2025-03-18 11:26:35','2025-03-18 11:26:37','SUCCESS',NULL,4,'2025-03-18 11:26:35',4,'2025-03-18 11:26:37',1,0),(253,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 11:30:00','2025-03-18 11:30:00','SUCCESS',NULL,1,'2025-03-18 11:30:00',1,'2025-03-18 11:30:00',1,0),(254,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 12:00:00','2025-03-18 12:00:00','SUCCESS',NULL,1,'2025-03-18 12:00:00',1,'2025-03-18 12:00:00',1,0),(255,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 12:04:25','2025-03-18 12:04:25','SUCCESS',NULL,4,'2025-03-18 12:04:25',4,'2025-03-18 12:04:25',1,0),(256,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 12:05:30','2025-03-18 12:05:30','SUCCESS',NULL,4,'2025-03-18 12:05:30',4,'2025-03-18 12:05:30',1,0),(257,'AUTO_CLOSE_PAY_ORDER','支付订单自动关闭定时任务','AUTO','2025-03-18 12:05:50','2025-03-18 12:05:50','SUCCESS',NULL,4,'2025-03-18 12:05:50',4,'2025-03-18 12:05:50',1,0);
- /*!40000 ALTER TABLE `sys_schedule_task_log` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `user`
- --
- DROP TABLE IF EXISTS `user`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!50503 SET character_set_client = utf8mb4 */;
- CREATE TABLE `user` (
- `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',
- `union_id` varchar(128) NOT NULL COMMENT '微信唯一标识id',
- `ma_open_id` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '微信用户小程序标识id',
- `mp_open_id` varchar(128) DEFAULT NULL COMMENT '微信用户服务号标识id',
- `nickname` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '用户昵称',
- `created_by` bigint NOT NULL COMMENT '创建人',
- `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
- `last_updated_by` bigint NOT NULL COMMENT '最后更新人',
- `last_update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
- `version` bigint NOT NULL DEFAULT '1' COMMENT '版本号',
- `delete_flag` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除标志(0-未删除,1-已删除)',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户表';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `user`
- --
- LOCK TABLES `user` WRITE;
- /*!40000 ALTER TABLE `user` DISABLE KEYS */;
- INSERT INTO `user` VALUES (4,'o1AzP67G1ppu_Ms27m26L8bXz0Do','oSoRX7Ll01EB7XfsYt5aVrF_KfLU','oaeVR7FhHMDu3iqUOhcTgJJVdOM0','测试0319',1,'2025-03-13 08:06:00',4,'2025-03-18 11:57:55',1,0);
- /*!40000 ALTER TABLE `user` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Dumping routines for database 'data_easy'
- --
- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
- /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
- /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
- /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
- /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
- -- Dump completed on 2025-03-18 20:11:33
|