{
    "componentChunkName": "component---src-templates-home-ts",
    "path": "/",
    "result": {"pageContext":{"i18nData":{"latestCaseStudy":{"zh":{"id":50,"attributes":{"feature":false,"title":"某零售电商｜一键在线拆分数亿大表","content":"## 业务挑战\n在客户零售业务发展迅猛背景下，客户零售电商业务年增长率达 300% 以上。客户生产环境为某共有云，其 RDS 数据库中订单详情大表已达数亿纪录，业务查询请求已出现缓慢现象，架构升级转型迫在眉睫。\n为最大化兼容现有技术生态，技术团队决定通过 Sharding 方式来完成数据的拆分，以降低单表容量的方式提升整体业务效率，同时需要避免 Sharding 和业务逻辑耦合。\n同时，电商业务对连续性有极高的要求，因此本次升级改造需完全在线进行，秒级完成切换。\n\n## 解决方案\n使用 SphereEx-DBPlusEngine 对订单详情表进行拆分，以 user_id 为分片键将数亿纪录拆分到多数据库实例，共由千余个分片所承载。同时，对于业务未来发展所需，预留了在线 Reshard 的能力。\n在升级上线过程中，SphereEx-DBPlusEngine 内置的 Scaling 能力，会根据所制定的分片规则自动完成全量和增量数据同步，动态数据校验，可帮助客户在最短的时间内完成业务切换。\n![20231016-145053.jpeg](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/20231016_145053_72de834804.jpeg)\n\n## 客户收益\n1. 显著提升查询性能：通过多实例多表方式大表的拆分，查询接口性能提升 260%，性能痛点得到解决；\n2. 在线平滑迁移上线：业务层，不需要修改业务代码；数据层，SphereEx-DBPlusEngine 内置迁移能力帮助客户高效完成数据迁移及上线切换;\n\n","date":"2023-10-02","author":"代野","excerpt":null,"metaDescription":null,"createdAt":"2023-10-16T06:54:20.400Z","updatedAt":"2024-01-02T02:16:38.126Z","publishedAt":"2023-10-16T06:54:21.835Z","locale":"zh","caseStudiesType":{"data":null},"cover":{"data":null},"metaLogo":{"data":null},"localizations":{"data":[]}}},"en":{"id":15,"attributes":{"feature":true,"title":"Apache ShardingSphere & Energy Monster","content":"[Energy Monster](https://ir.enmonster.com/)’s application of [ShardingSphere-JDBC](https://shardingsphere.apache.org/document/current/en/overview/#shardingsphere-jdbc)\n\n[Energy Monster](https://ir.enmonster.com/) is a consumer tech company with the mission to energize everyday life. The company is the largest provider of mobile device charging services in Asia.\n\nAs the company’s business concurrency volume is getting larger, the amount of data generated (users, orders, activities, etc.) increases each day. The traditional relational database has proven to be inadequate in supporting millions or tens of millions of data volumes in a single database or table.\n\nPerformance has been unable to meet the benchmark requirements of business development. Under these circumstances, data sharding is an effective way to solve the problem.\n\n## Technology selection\nUnder the [Database Plus](https://shardingsphere.apache.org/) concept, ShardingSphere is designed to build an ecosystem on top of heterogeneous databases. The goal is to provide globally scalable and enhanced computing capabilities while maximizing the original database computing capabilities.\n\nThe interaction between applications and databases becomes oriented towards the Database Plus standard, therefore minimizing the impact of database fragmentation on upper-layer services.\n\nWithin the ShardingSphere ecosystem, [ShardingSphere-JDBC](https://shardingsphere.apache.org/document/current/en/overview/#shardingsphere-jdbc) is positioned as a lightweight Java framework, providing additional services in Java’s JDBC layer.\n\nIt uses the client to directly connect to the database and provide services in the form of a jar package, without additional deployment and dependence. It can be understood as an enhanced version of the JDBC driver, which is fully compatible with JDBC and various ORM frameworks.\n\nShardingSphere-JDBC enables developers to focus only on the work outside the data layer by coordinating the data read and write under the data sharding, instead of using business code to manually select databases and tables.\n\n## Business case\nUCS is Energy Monster’s user-centric service providing basic functionality for users on the Server side. In 2018, it was stripped from [PHP](https://www.php.net/) Server and moved to the Java technology stack to implement microservitization.\n\nIt involves the design of new databases and tables and data cleaning and migration. The whole switchover process was expected to ensure the following functions:\n\n- Stability: smooth release in a short time without halting.\n\n- Accuracy: ensure accurate cleaning of tens of millions of data volumes.\n\n- Scalability: solve the performance problems caused by increasing data volume and ensure scalability.\n\n> Solutions to data cleansing and migration\n\n- Initial data synchronization.\n- The application’s server cuts off the entry (users).\n- Data synchronization (updates and new users since the last time point).\n- Data cleaning.\n- User center release.\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2t8jnqgh5pfimhxa07id.png)\n\n\n> Data sharding strategy\n\nThe database adopts a database shards design, divided into 16 databases. The default shard key is `user_id` and the default sharding strategy `user_id` is mod 16, such as `${user_id % 16}` for the user table. For SQL that does not carry shard keys, broadcast routing is used.\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t6nihbk4du8d9h1sd5sf.png)\n\n\n`user_id` is used as the shard key because `user_id` can cover most business scenarios, and other fields possibly can be empty. In the local test, the query of shard key strategy (openId,mobile) took 50ms to 200ms.\n\n> Using the sharding algorithm\n\nThere are currently three sharding algorithms available.\n\n- Standard sharding algorithm. It corresponds to `StandardShardingAlgorithm`, used for scenarios that use a single key as the shard key, such as =, IN, BETWEEN AND, >, <, > =, < =.\n- Complex sharding algorithm. It corresponds to `ComplexKeysShardingAlgorithm`, used for scenarios that use multi-key as the shard key. The logic with multiple shard keys is complex and requires developers to handle it by themselves.\n- Hint sharding algorithm. It corresponds to `HintShardingAlgorithm`, used for scenarios where the Hint row is used for sharding.\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5uv7u0nrglequ83gn4ky.png)\n\n\n## Upgrading ShardingSphere-JDBC\n\nShardingSphere-JDBC is used in multiple business scenarios, such as order, inventory, and finance. By 2021, the R&D groups or teams were using different versions of ShardingSphere-JDBC, ranging from 1.X to 4.X, which is difficult to achieve unified maintenance in the later stage.\n\nAdditionally, there are some potential bugs and missing functions in the earlier version. Based on requirements for unified management and availability, we implemented a project to unify the ShardingSphere-JDBC’s versions used by the company and upgrade them to a 4.1.1 stable version in April 2021.\n\n**The following problems were encountered during the upgrade:**\n\n**1. It takes a long time to start the service after the upgrade.**\n\nShardingSphere-JDBC checks the metadata consistency of sub-tables when the service is started. The configuration item `max.connections.size.per.quer` (maximum number of connections that can be opened per query) is 1 by default. With a large number of tables, the loading process would be slow. You need to refer to the connection pool configuration to improve the loading speed.\n\n**2. There is no response when there is no shard key in the sub-table query.**\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/641dysf5zoizgr8bmjuq.png)\n\n\nLogical SQL query does not specify shard keys and it queries all the tables according to the whole database tables router in broadcasting routing.\n\nThe configuration items have 108 pieces of real tables in a database. According to the configuration of `maxConnectionsizeperquery=50`, ShardingSphere-JDBC uses the connection limit mode, divides the query requests into three groups, and merges the results with in-memory. As a result, 36 database connections are required for one query. But the `maxActive` configured by the [druid](https://druid.apache.org/) thread pool is set to 20, resulting in a deadlock.\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ydv03pncno3wsd23y7r1.png)\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/61blt38kcoukha8aguob.png)\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2c2w85mdryc53gh4ope5.png)\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/568lubr5zg52ropjw374.png)\n\n\n\n**Solutions:**\n\n- Combine `check.table.metadata.enabled=true`（check the metadata consistency in sub-tables when started）and properly configure - `maxConnectionSizePerQuery`（maximum number of connections that can be opened by each query).\n- `maxConnectionSizePerQuery` should be less than the maximum number of active threads configured by the druid thread pool.\n\n**3. After upgrading from 1.X, an error message “Cannot update Sharding key” is displayed in SQL execution, and the actual shard key value is not updated.**\n\nTo avoid data query failure caused by changing the shard key value, shard key detection is added to the `SQL update` in the 4.X version. The error can be rectified in the following ways:\n\n- remove the shard key when updating.\n- the shard key is added to the `where` statement synchronously.\n\n**4. A start failure is caused when using `druid-spring-boot-starter`, which is incompatible with `Sharding-datasource`.**\n\nThe druid data connection pool starter will load and create a default data source. This will cause conflicts when ShardingSphere-JDBC creates data sources.\n\n**5. `inline strategy` reports an error in range query.**\n\nThe `inline strategy` doesn't support range query by default and the `standard strategy` is advised. Add the following configuration if the `inline strategy` is needed for the range query.\n\n`spring.shardingsphere.props.allow.range.query.with.inline.sharding: true`\n\n**Note:** Here all the `inline strategy` range queries will query each sub-table in broadcasting.\n\n**6. The “Cannot find owner from table” error is reported.**\n\nSQL (simplified):\n\n`select id from` (select id from x) as a group by a.id\n\nThe 4.X version supports limited sub-queries. This problem is caused by the name of the intermediate table. Remove the table alias of `select` or `group order` or other fields.\n\n> [https://github.com/apache/shardingsphere/issues/4810](https://github.com/apache/shardingsphere/issues/4810)\n\n**7. The table’s primary key conflicts with the primary key generated by the [SNOWFLAKE](https://programming.vip/docs/overview-of-snowflake-algorithm.html) algorithm.**\n\nShardingSphere provides flexible ways to configure distributed primary key generation strategies. In the sharding rule configuration module, you can configure the primary key generation strategy for each table.\n\nBy default, the [snowflake](https://programming.vip/docs/overview-of-snowflake-algorithm.html) algorithm is used to generate long integer data of 64bit. The snowflake generator needs to be configured with:\n\n`spring.shardingsphere.sharding.tables.x.key-generator.props.worker.id = ${dcc.node.id}`\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dbopmsazvtztkb0p2m0z.png)\n\n\n\nThe company uses the [apollo](https://www.apolloconfig.com/#/) configuration center to deliver the node id of the service instance. The service uses multi-data sources. If you use the YAML file to load sharding configuration, the `workId` cannot be automatically loaded into sharding configuration items.\n\n**Solutions:**\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mfxy2xgsl6w0bwgi0hqv.png)\n\n\nUse the custom generator type based on the built-in `SnowflakeShardingKeyGenerator`.\n\nIf the primary key is used as a shard key, configure `max.vibration.offset` based on the data sharding value to increase the vibration range.\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7jo25gkyz57kyttllvsd.png)\n\n\n\n**8. The 3.X version reports an error when `CASE WHEN` statement is executed.**\n\nFirst, the 3.X and 4.X versions don’t support the `case when` statement.\n\nThe 3.X and 4.X versions have different logics when parsing the shard keys of `case when`'s `update` statement. The 4.X `parserEngine.parse` method will ignore the `case when` parsing parameters, resulting in inconsistency with the external parameter list and an error when 3.X executes the normal SQL.\n\nThe 3.X version works correctly because the first parameter of `case when` is intentionally set to the shard key when the SQL is written, and the `case when` statement comes first.\n\n> [https://github.com/apache/shardingsphere/issues/13233](https://github.com/apache/shardingsphere/issues/13233)\n\n**Solutions：**\n\n- It is suggested to rewrite SQL as the `case when` is not supported.\n- According to the shard key parsing logic in version 4.1.1, `case when` is placed at the end, and the shard key remains the first parameter of `case when`.\n\n**9. The logical table `actualDataNodes` is configured and no default value error is reported for the primary key.**\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7tpr0fitx420itauw5f8.png)\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pprbsvn5n8tdrm2mezs7.png)\n\n\n\n\nThe `check.table.metadata.enabled=true` is not configured for service, and the metadata consistency of sub-tables is not checked by default.\n\nThe first table of `actualDataNodes` configured by services does not exist, resulting in an empty `GenerateKeyContenxt`.\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a75kpppwhniaubgw3iti.png)\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cw16ejpxmwvcva9bd9t4.png)\n\n\n\n\n**Solutions：**\n\n- Configure `check.table.metadata.enabled=true`. A non-existent table is detected when started and an error is reported.\n- Rewrite the `actualDataNodes inline` expression to make sure that the first table exists.\n\n**10. In version 3.0, there is a deadlock under the high concurrency of the full database and table router.**\n\nShardingSphere-JDBC uses local transactions by default. In local transactions, the database connection is obtained asynchronously. Under high concurrency, it is possible that all database connections cannot be obtained, resulting in a deadlock.\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5eo47dqy991nmvu048k8.png)\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hdnnfskjri9un1wj6n3h.png)\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y8fpd887zvkg5oovt4hm.png)\n\n\n\n![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pzqw4c89j1mplfmwfxz0.png)\n\n\n\n\n## Conclusion\n\nAs a [ShardingSphere](https://shardingsphere.apache.org/) core user, [Energy Monster](https://ir.enmonster.com/)’s upgrade process also reflects some problems that community users may encounter in the application of ShardingSphere.\n\nCurrently, Apache ShardingSphere’s stable version has been updated to 5.1.2 and has been optimized in terms of its functions, performance, testing, documentation, and examples.\n\nYou can refer to [Apache ShardingSphere’s official website](https://shardingsphere.apache.org/) for more information. If you have any questions or suggestions, you are also welcome to give feedback on [Github](https://github.com/apache/shardingsphere). The community will actively respond and discuss.\n\n**Project Links:**\n\n[ShardingSphere Github](https://github.com/apache/shardingsphere/issues?page=1&q=is%3Aopen+is%3Aissue+label%3A%22project%3A+OpenForce+2022%22)\n\n[ShardingSphere Twitter](https://twitter.com/ShardingSphere)\n\n[ShardingSphere Slack](https://join.slack.com/t/apacheshardingsphere/shared_invite/zt-sbdde7ie-SjDqo9~I4rYcR18bq0SYTg)\n\n[Contributor Guide](https://shardingsphere.apache.org/community/cn/contribute/)\n\n[GitHub Issues\n](https://github.com/apache/shardingsphere/issues)\n[Contributor Guide](https://shardingsphere.apache.org/community/en/contribute/)","date":"2022-09-06","author":"SphereEx","excerpt":"NASDAQ-listed Energy Monster is the largest provider of mobile device charging services in Asia. This article illustrates how Energy Monster uses ShardingSphere-JDBC.","metaDescription":"Energy Monster is a power bank rental company, allowing its users to rent power banks by scanning QR codes. It is designed to help people to live their life without interruptions. Energy Monster reportedly covers 100 cities and 100K merchants. ","createdAt":"2022-09-26T06:27:13.410Z","updatedAt":"2022-09-28T02:42:03.843Z","publishedAt":"2022-09-27T06:55:09.446Z","locale":"en","caseStudiesType":{"data":{"id":9,"attributes":{"name":"Internet","createdAt":"2022-09-26T10:34:03.086Z","updatedAt":"2022-09-27T06:59:34.838Z","publishedAt":"2022-09-27T06:59:34.836Z","locale":"en"}}},"cover":{"data":{"id":334,"attributes":{"name":"energy monster.png","alternativeText":"energy monster.png","caption":"energy monster.png","width":1093,"height":489,"formats":{"thumbnail":{"name":"thumbnail_energy monster.png","hash":"thumbnail_energy_monster_2f744c0ab8","ext":".png","mime":"image/png","width":245,"height":110,"size":18,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_energy_monster_2f744c0ab8.png"},"large":{"name":"large_energy monster.png","hash":"large_energy_monster_2f744c0ab8","ext":".png","mime":"image/png","width":1000,"height":447,"size":191.25,"path":null,"url":"https://official-media.sphere-ex.com/large_energy_monster_2f744c0ab8.png"},"medium":{"name":"medium_energy monster.png","hash":"medium_energy_monster_2f744c0ab8","ext":".png","mime":"image/png","width":750,"height":336,"size":115.92,"path":null,"url":"https://official-media.sphere-ex.com/medium_energy_monster_2f744c0ab8.png"},"small":{"name":"small_energy monster.png","hash":"small_energy_monster_2f744c0ab8","ext":".png","mime":"image/png","width":500,"height":224,"size":58.44,"path":null,"url":"https://official-media.sphere-ex.com/small_energy_monster_2f744c0ab8.png"}},"hash":"energy_monster_2f744c0ab8","ext":".png","mime":"image/png","size":182.88,"url":"https://official-media.sphere-ex.com/energy_monster_2f744c0ab8.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-09-26T06:34:45.604Z","updatedAt":"2022-09-26T06:34:45.604Z"}}},"metaLogo":{"data":{"id":349,"attributes":{"name":"Energy monster logo.png","alternativeText":"Energy monster logo.png","caption":"Energy monster logo.png","width":373,"height":298,"formats":{"thumbnail":{"name":"thumbnail_Energy monster logo.png","hash":"thumbnail_Energy_monster_logo_102b9745bc","ext":".png","mime":"image/png","width":195,"height":156,"size":8.8,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_Energy_monster_logo_102b9745bc.png"}},"hash":"Energy_monster_logo_102b9745bc","ext":".png","mime":"image/png","size":17.3,"url":"https://official-media.sphere-ex.com/Energy_monster_logo_102b9745bc.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-09-26T08:19:26.166Z","updatedAt":"2022-09-26T08:19:26.166Z"}}},"localizations":{"data":[]}}}},"latestEvent":{"zh":{"id":46,"attributes":{"feature":true,"title":"ShardingSphere Meetup 上海站 | SphereEx 联合喜马拉雅共话云原生数据技术应用创新实践","content":"## 导语\n随着数字化在全球席卷开来，颠覆与创新接踵而至，数字化浪潮已来，正在革新我们的生产、生活。一方面企业数字化进程中也遇到了这样那样的问题：大量数据的产生，如何储存？海量数据下的高并发如何解决？多个系统，多个数据库如何实现统一的数据访问？单机数据库如何在不更换原有数据库前提下，实现分布式？随着微服务数量逐渐增加，面对海量告警，如何构建可闭环的监控系统？如何在降本增效的大环境下，提升缓存稳定性和资源利用率？另外一方面随着云原生技术的蓬勃发展，各类技术和各种行业都在向其积极靠拢，企业在云原生技术落地的过程中，是如何解决与自身情况匹配以及实现跨越式发展问题的？在多云架构和云原生架构的落地中，如何面对数据库碎片化的治理的挑战 ... ...\n\nApache ShardingSphere Meetup 上海站即将在即将在 1月 5 日举办，本次活动由 SphereEx 与喜马拉雅联合出品，喜马拉雅 CTO 姜杰和 SphereEx CEO 张亮 作为特邀嘉宾，由喜马拉雅和 ShardingSphere 社区核心业务专家为开发者们带来从云原生数据应用，架构改革探索中的宝贵经验分享。\n\n## 活动时间\n2023年1月5日 14:00-17:30\n\n## 活动地点\n上海市浦东新区丹桂路 799 号 3 号楼 201\n\n## 活动议程\n\n\n![上海站 meetup-07.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/meetup_07_b836de4f32.png)\n\n\n\n## 关于主办方\n### 关于 Apache ShardingSphere\nApache ShardingSphere 是一款分布式的数据库生态系统，可以将任意数据库转换为分布式数据库，并通过数据分片、弹性伸缩、加密等能力对原有数据库进行增强。\n\n### 关于SphereEx\nSphereEx 是由 Apache 顶级项目Apache ShardingSphere 核心团队创立，旨在为企业提供新一代数据库增强计算平台。产品核心思想是基于可插拔理念，通过模块化构建数字化能力。定位是帮助企业在数据库之上实现数据分片、数据安全、流量治理、弹性伸缩等增强能力，为全行业提供轻量级分布式数据库、应用级数据安全及自主创新改造类产品及解决方案，增强企业在数据基础设施的上层服务能力，推动业务快速且平稳发展。由于在技术完备性、稳定性以及生态完善度方面均处于行业领先地位，SphereEx 的产品目前已经在金融、电商、物流、智能制造、政企等多个行业企业的生产环境中使用，成为诸多公司的数据计算架构核心组件，获得了企业用户的认可。\n\n### 关于喜马拉雅\n上海喜马拉雅科技有限公司成立于2012年，是深受用户喜爱的在线音频分享平台，致力于用声音分享人类智慧，用声音服务美好生活，提供一家人一辈子的精神食粮。如今，喜马拉雅已经建立了从头部IP到长尾内容全面覆盖的健康、均衡、有活力的生态内容体系，在线音频服务已经涵盖了用户从-1岁到100岁不同年龄阶段所需要的丰富内容，累积了包含101个品类的3.4亿条音频内容。\n\n喜马拉雅推动了以音频为特色的“耳朵经济”，2021年内容创作者数量超1351万。秉承“万物有声”的理念，喜马拉雅用声音连接和服务了数亿用户，推出国内首个全内容智能AI音箱小雅等，开启语音交互的新传播时代。同时，喜马拉雅加强智能生态的建设，完善在汽车、智能家居、智能音箱、智能穿戴等硬件终端的布局，让声音和知识像水和电一样无处不在，随取随用。2021年全年，喜马拉雅全场景平均月活跃用户已达2.68亿。\n\n\n","date":"2022-12-23","author":"SphereEx ","excerpt":"ShardingSphere Meetup 上海站 | SphereEx 联合喜马拉雅共话云原生数据技术应用创新实践","createdAt":"2022-12-09T07:19:47.009Z","updatedAt":"2023-01-04T11:53:15.768Z","publishedAt":"2022-12-09T07:19:48.736Z","locale":"zh","location":"上海市浦东新区丹桂路 799 号 3 号楼 201","startDate":"2023-01-05","endDate":"2023-01-05","eventsType":{"data":null},"cover":{"data":{"id":459,"attributes":{"name":"上海站 meetup-01.png","alternativeText":"上海站 meetup-01.png","caption":"上海站 meetup-01.png","width":1600,"height":901,"formats":{"thumbnail":{"name":"thumbnail_上海站 meetup-01.png","hash":"thumbnail_meetup_01_7f8d1e6f6e","ext":".png","mime":"image/png","width":245,"height":138,"size":29.77,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_meetup_01_7f8d1e6f6e.png"},"large":{"name":"large_上海站 meetup-01.png","hash":"large_meetup_01_7f8d1e6f6e","ext":".png","mime":"image/png","width":1000,"height":563,"size":170.04,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/large_meetup_01_7f8d1e6f6e.png"},"medium":{"name":"medium_上海站 meetup-01.png","hash":"medium_meetup_01_7f8d1e6f6e","ext":".png","mime":"image/png","width":750,"height":422,"size":123.49,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/medium_meetup_01_7f8d1e6f6e.png"},"small":{"name":"small_上海站 meetup-01.png","hash":"small_meetup_01_7f8d1e6f6e","ext":".png","mime":"image/png","width":500,"height":282,"size":72.74,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_meetup_01_7f8d1e6f6e.png"}},"hash":"meetup_01_7f8d1e6f6e","ext":".png","mime":"image/png","size":140.55,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/meetup_01_7f8d1e6f6e.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2023-01-04T11:51:57.949Z","updatedAt":"2023-01-04T11:51:57.949Z"}}},"localizations":{"data":[]}}},"en":{"id":44,"attributes":{"feature":false,"title":"Conf42: Kube Native | Kube Native Goes Live!","content":"Are you cloud native? Do you love Kubernetes? Have you gotten rid of the monolith and adopted microservices… and then perhaps moved back to the monolith like Istio did?\n\nIf any of this applies to you, just join [Con42: Kube Native](https://www.conf42.com/kubenative2022) together with us!\n\nWe'll join [Con42: Kube Native](https://www.conf42.com/kubenative2022) on October 20, 2022. It's our second time participating in the Con42 conferences. This time, our Co-Founder and CTO will deliver a speech named _online OLTP computing and traffic governance as a service for true digital transformation_.\n\n![conf42 Kube native.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/conf42_Kube_native_996de1fc48.png)\n\nIt will help you to learn how to load balance and manage data traffic between apps and databases and how to deliver optimal user experience while maintaining query cost awareness. This talk will focus on providing you with a solution for elastic and secure OLTP cloud computing with your MySQL, PostgreSQL, SQLServer, and Oracle database.","date":"2022-10-10","author":"SphereEx","excerpt":"Are you cloud native? Do you love Kubernetes? Come and explore the magic world of Kubernetes!","createdAt":"2022-10-10T03:20:21.747Z","updatedAt":"2022-10-11T07:15:56.048Z","publishedAt":"2022-10-11T06:06:09.627Z","locale":"en","location":"Online","startDate":"2022-10-20","endDate":"2022-10-21","eventsType":{"data":null},"cover":{"data":{"id":413,"attributes":{"name":"con42 kube native cover.png","alternativeText":"con42 kube native cover.png","caption":"con42 kube native cover.png","width":671,"height":218,"formats":{"thumbnail":{"name":"thumbnail_con42 kube native cover.png","hash":"thumbnail_con42_kube_native_cover_c862982c9b","ext":".png","mime":"image/png","width":245,"height":80,"size":25.07,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_con42_kube_native_cover_c862982c9b.png"},"small":{"name":"small_con42 kube native cover.png","hash":"small_con42_kube_native_cover_c862982c9b","ext":".png","mime":"image/png","width":500,"height":162,"size":102.68,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_con42_kube_native_cover_c862982c9b.png"}},"hash":"con42_kube_native_cover_c862982c9b","ext":".png","mime":"image/png","size":143.64,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/con42_kube_native_cover_c862982c9b.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-10-11T07:15:52.218Z","updatedAt":"2022-10-11T07:15:52.218Z"}}},"localizations":{"data":[]}}}},"latestNews":{"zh":{"id":80,"attributes":{"feature":false,"title":"企业数据服务公司","content":"　　近年来，随着信息技术的飞速发展，企业越来越意识到数据的重要性。数据不仅是企业的基础资产，更是推动商业创新和决策的关键。面对海量复杂的数据，企业如何高效地利用、分析和应用？这就需要借助专业的企业数据服务公司，为企业拓展新的商业空间、提升竞争力。\n![企业微信截图_16988342686686.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/16988342686686_3ead618b94.png)\n　　数据服务公司本质上是一种职业的信息技术服务提供商，其核心业务是为各行各业的企业提供全方位、个性化的数据解决方案。这些公司凭借丰富的经验和先进的技术手段，能够帮助企业清理、管理和分析各类数据，从而提供更准确、可靠的商业决策支持。\n\n　　首先，企业数据服务公司能够协助企业建立高效的数据管理体系。在信息时代，数据不仅量大，而且来源多元，涵盖了企业内部各个环节。如何实时获取和整合这些数据，并确保数据的安全和可靠性，是每个企业面临的挑战。数据服务公司通过职业的技术和手段，可以帮助企业设计和搭建全面的数据管理系统，实现数据的高效收集、存储、处理和分析，从而提升企业的数据管理水平。\n\n　　其次，数据服务公司能够提供全方位的数据分析和洞察服务。数据并非只是冷冰冰的数字，而是蕴含着宝贵的商业洞察和价值。数据服务公司借助先进的数据分析方法和工具，能够从庞杂的数据中提取有用的信息，洞察市场、消费者需求、竞争对手等关键要素，并通过数据可视化等手段呈现给企业，帮助企业了解市场趋势、预测需求变化、制定准确的市场营销策略，进一步提升企业的竞争力。\n\n　　综上所述，企业数据服务公司在信息化浪潮中发挥着重要的作用。它们不仅使企业能够高效地处理和分析海量的数据，更重要的是能够在商业层面上将数据转化为实际的商业价值。因此，选择一家职业的企业数据服务公司，对于企业来说，不仅是提升竞争力的有效手段，更是一次战略性的投资。","date":"2023-11-01","author":"思斐","excerpt":"近年来，随着信息技术的飞速发展，企业越来越意识到数据的重要性。数据不仅是企业的基础资产，更是推动商业创新和决策的关键。","createdAt":"2023-11-01T10:26:27.413Z","updatedAt":"2023-11-01T10:26:34.107Z","publishedAt":"2023-11-01T10:26:34.102Z","locale":"zh","newsType":{"data":null},"cover":{"data":{"id":513,"attributes":{"name":"企业微信截图_16988342686686.png","alternativeText":"企业微信截图_16988342686686.png","caption":"企业微信截图_16988342686686.png","width":469,"height":278,"formats":{"thumbnail":{"name":"thumbnail_企业微信截图_16988342686686.png","hash":"thumbnail_16988342686686_3ead618b94","ext":".png","mime":"image/png","width":245,"height":145,"size":50.61,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_16988342686686_3ead618b94.png"}},"hash":"16988342686686_3ead618b94","ext":".png","mime":"image/png","size":63.16,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/16988342686686_3ead618b94.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2023-11-01T10:25:01.095Z","updatedAt":"2023-11-01T10:25:01.095Z"}}},"localizations":{"data":[]}}},"en":{"id":64,"attributes":{"feature":true,"title":"SphereEx-DBPlusEngine 1.4.0 Release: Enhanced Data Governance for Enterprises","content":"SphereEx-DBPlusEngine 1.3.0, released in January, received a lot of attention and feedback from users and customers. To meet their needs and focus on the industry's future development, we developed a release schedule based on feedback and are excited to announce the release of SphereEx-DBPlusEngine 1.4.0. This version includes significant updates that optimize the migration process and enhance security features such as in-process audit, archiving, and DDL consistency.\n\n# New Capabilities Meet Core User Demands\n\n## 1. Archiving: Support for automatic deletion of expired data\n\nArchiving expired data is a common requirement, and SphereEx-DBPlusEngine 1.4.0 now supports the automatic deletion of expired data. By defining a specific time field in the data table, the system can automatically delete data stored in the table that exceeds the specified time. This simple configuration process saves time and improves efficiency while also enhancing security.\n\n## 2. DDL consistency: Support for consistent execution of DDL statements\n\nDDL consistency has always been a problem in a distributed database environment, especially with sharded tables stored in multiple storage nodes. SphereEx-DBPlusEngine 1.4.0 now supports consistent execution of DDL statements, which can be combined with locks to ensure consistency. This guarantees the maximum concurrency of SQL execution and enhances efficiency.\n\n# Optimized Design Makes Products More Stable and Efficient\n\n## 1. Enhanced migration process: Support for migration of multiple tables with one DistSQL task\n\nTraditional data migration processes execute multiple table tasks in parallel to improve efficiency. However, each DistSQL task can only migrate one table, resulting in low efficiency and manual configuration requirements. SphereEx-DBPlusEngine 1.4.0 now supports the migration of multiple tables with one DistSQL task, greatly improving efficiency. Users only need to specify the tables that need to be migrated in the task configuration.\n\n## 2. Enhanced security features: Support for in-process audit\n\nIn the field of database technology, security has always been a significant issue. SphereEx-DBPlusEngine 1.4.0 introduces support for in-process audit, an important security mechanism that audits relevant SQL operations during execution. With built-in algorithms, it can audit relevant data changes and support two audit actions: log alarm and immediate fuse. This feature enhances system security and allows users to audit and trace more effectively.\n\n# About SphereEx-DBPlusEngine\n\nSphereEx-DBPlusEngine is a product based on the open-source kernel ShardingSphere, providing enterprise-level enhanced data services such as data sharding, distributed transactions, and data security for businesses. It consists of two products: SphereEx-DBPlusEngine-Driver and SphereEx-DBPlusEngine-Proxy, both of which can be deployed independently and support hybrid deployment. They provide standardized data horizontal scaling, distributed transactions, and distributed governance, and can be applied to a variety of diversified scenarios such as Java, homogeneous/heterogeneous languages, cloud-native, etc.\n\nThe release of SphereEx-DBPlusEngine 1.4.0 provides users with a series of new core features and major updates, further expanding the scope of application scenarios for SphereEx-DBPlusEngine and improving efficiency in practical environments. Choosing SphereEx-DBPlusEngine 1.4.0 can not only provide a more stable, efficient, and secure data governance solution but also offer more professional and complete enterprise-level services, reducing costs while accelerating digital business innovation.\n\n# Free Trial\n\nSphereEx-DBPlusEngine 1.4.0 is now available for free download and trial on the [SphereEx official website](https://www.sphere-ex.com/account/#/login/signIn?redirect=%2Fdownload). We are also an AWS APN technical partner, and every version of SphereEx-DBPlusEngine is packaged and released on AWS Marketplace. AWS users are welcome to find our offerings on [AWS Marketplace](https://aws.amazon.com/marketplace/seller-profile?id=d1a1d3ef-fce8-43d5-a57b-e5b1ec59caf0) to download and experience SphereEx-DBPlusEngine and unlock the convenience and efficiency of cloud-based digital services.","date":"2023-04-03","author":"SphereEx","excerpt":null,"createdAt":"2023-04-04T05:51:34.314Z","updatedAt":"2023-04-04T05:51:36.981Z","publishedAt":"2023-04-04T05:51:36.977Z","locale":"en","newsType":{"data":null},"cover":{"data":null},"localizations":{"data":[]}}}},"latestItem":{"zh":[{"id":133,"attributes":{"feature":false,"title":"云原生数据库技术规范","content":"现在云计算技术的应用范围越来越广，常见的就是大量的数据被存储和处理在云平台上。云原生数据库技术规范旨在为数据提供高可用性、弹性伸缩、自动化管理等特性，以实现更高效、灵活和可靠的数据管理。那么，什么是云原生数据库技术规范？\n![001.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/001_27abde2173.png)\n一、特点\n1、支持水平扩展：能够根据实际需求自动增加或减少节点，实现高度弹性的扩展性。\n2、自动化管理：自动化管理包括数据备份、恢复、监控等，所以能够大大降低对人工操作的依赖性。\n3、较高可用性：通过数据的冗余存储和故障转移机制，保证数据的持续可用。此外，还可以根据实际需求来调整规范内容。\n二、作用\n1、提高效率：能够解决大规模数据存储和处理的挑战，提供高效的数据管理解决方案。\n2、节省空间：可以实现数据的弹性伸缩，根据业务需求自动调整存储容量和计算资源，节省成本并提高效率。\n3、提高稳定性：能够实现高可用性和容错性，保证数据的安全性和稳定性。\n三、实际应用云原生数据库技术规范已经在各个领域得到了广泛的应用。\n1、金融行业：该技术规范可以支持大规模的交易数据存储和处理，提供快速和可靠的交易服务。\n2、物联网领域：该技术规范可以实现海量设备数据的管理和分析，实时监控和控制系统的运行状态。\n3、电商领域：该技术规范能够支持大规模用户数据的存储和分析，提供个性化推荐和营销服务。\n综上所述，云原生数据库技术规范是为了适应云计算环境中大规模数据处理，以及存储需求而制定的一套标准。通过实现高可用性、弹性伸缩和自动化管理等特性，云原生数据库技术规范能够构建灵活高效的数据管理体系，为各行各业的数据管理提供支持。","date":"2024-04-18","author":"思斐","excerpt":"现在云计算技术的应用范围越来越广，常见的就是大量的数据被存储和处理在云平台上。云原生数据库技术规范旨在为数据提供高可用性、弹性伸缩、自动化管理等特性，以实现更高效、灵活和可靠的数据管理。","createdAt":"2024-04-18T01:12:49.805Z","updatedAt":"2024-04-18T01:12:51.465Z","publishedAt":"2024-04-18T01:12:51.462Z","locale":"zh","newsType":{"data":null},"cover":{"data":{"id":521,"attributes":{"name":"001.png","alternativeText":"001.png","caption":"001.png","width":538,"height":322,"formats":{"thumbnail":{"name":"thumbnail_001.png","hash":"thumbnail_001_27abde2173","ext":".png","mime":"image/png","width":245,"height":147,"size":59.62,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_001_27abde2173.png"},"small":{"name":"small_001.png","hash":"small_001_27abde2173","ext":".png","mime":"image/png","width":500,"height":299,"size":192.92,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_001_27abde2173.png"}},"hash":"001_27abde2173","ext":".png","mime":"image/png","size":170.34,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/001_27abde2173.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2024-01-09T03:06:49.929Z","updatedAt":"2024-01-09T03:06:49.929Z"}}},"localizations":{"data":[]}}},{"id":132,"attributes":{"feature":false,"title":"网络数据加密","content":"网络数据加密是保护网络通信安全的重要手段，通过对数据进行加密处理，可以有效防止数据被窃取、篡改或篡改。网络数据加密的方式多种多样，主要包括链路加密、节点对节点加密和端对端加密等。这三种网络数据加密的方式具体如下：\n![image.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/image_1e4a479a1a.png)\n1、链路加密\n也称为在线加密，其主要功能是为数据传输提供安全的通信链路，在数据传输之前会对其进行加密，并且在传输过程中，每个节点都会对数据信息进行解密，然后使用密钥再次对数据进行加密然后传输，直到数据到达目的地。因此，在数据传输的过程中，数据将被不断地加密和解密，这确保了数据的极大安全性。\n2、节点对节点加密\n这是一种加密通信方式，通常用于保护通信双方之间的数据传输安全和隐私。在节点对节点加密中，数据在发送方节点加密后通过网络传输到接收方节点，接收方节点再对数据进行解密，实现安全的点对点通信。\n3、端对端加密\n又称脱线加密或包加密，确保消息在发送方和接收方之间进行加密和解密，而不会在中间被第三方截获或查看。这种加密方式保护了通信双方的隐私和数据安全，即使通信的中间环节被攻击或监视，也无法获取消息内容。\n三种加密方式的比较：\n链路加密仅对通信链路中的数据进行加密，而不对网络节点的数据进行加密；节点到节点加密不允许消息以明文形式存在于网络节点中。与链路加密有同样的弱点，即需要公共网络提供商的合作，修改公共网络的交换节点，并添加安全单元或保护设备；端到端加密只有在消息到达目的地后才解密，其缺点是无法隐藏消息的源节点和目的地节点并防止攻击。\n综上所述，不同的加密方式适用于不同的场景。有时为了提高网络通信的安全性和可靠性、保护数据的机密性和完整性，可能会组合使用这些加密方式，而是单一使用。网络数据加密已广泛应用于各种网络通信场景，比如网银行、电商、云计算、物联网等。","date":"2024-04-17","author":"思斐","excerpt":"网络数据加密是保护网络通信安全的重要手段，通过对数据进行加密处理，可以有效防止数据被窃取、篡改或篡改。网络数据加密的方式多种多样，主要包括链路加密、节点对节点加密和端对端加密等。","createdAt":"2024-04-17T00:49:31.617Z","updatedAt":"2024-04-17T00:49:34.758Z","publishedAt":"2024-04-17T00:49:34.756Z","locale":"zh","newsType":{"data":null},"cover":{"data":{"id":515,"attributes":{"name":"image.png","alternativeText":"image.png","caption":"image.png","width":626,"height":325,"formats":{"thumbnail":{"name":"thumbnail_image.png","hash":"thumbnail_image_1e4a479a1a","ext":".png","mime":"image/png","width":245,"height":127,"size":36.85,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_image_1e4a479a1a.png"},"small":{"name":"small_image.png","hash":"small_image_1e4a479a1a","ext":".png","mime":"image/png","width":500,"height":260,"size":136.93,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_image_1e4a479a1a.png"}},"hash":"image_1e4a479a1a","ext":".png","mime":"image/png","size":58.91,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/image_1e4a479a1a.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2023-11-20T02:53:48.770Z","updatedAt":"2023-11-20T02:53:48.770Z"}}},"localizations":{"data":[]}}},{"id":131,"attributes":{"feature":false,"title":"生产企业数据服务平台","content":"在现代工业生产中，生产数据的管理和分析对于企业的运营和决策是很重要的。生产企业数据服务平台可通过整合和分析生产数据，可提供更智能化解决方案。这不仅可帮助企业更好地理解生产过程，还提高生产效率并支持业务决策。下面简单介绍该服务平台。\n![企业微信截图_16988346069159.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/16988346069159_e1e6745354.png)\n一、特点\n1、多渠道：生产企业数据服务平台能够整合多个数据源，包括生产线设备传感器数据、实时监控数据、产品质量数据等。\n2、分析准：该服务平台能够进行数据的清洗和处理，提供高质量和准确的数据分析结果。\n3、可视化：该服务平台还具备数据可视化的能力，通过图表和报告展现数据分析的结果，便于用户理解和利用。\n二、作用\n通过对生产数据的深入分析，生产企业数据服务平台可以帮助企业了解市场需求、产品趋势等重要信息，为企业提供战略性的决策支持。同时，还可以进行预测分析，帮助企业预测市场变化、产品需求等因素，为企业的规划和创新提供指导。\n三、优势\n1、及时：该服务平台通过实时监控和分析生产数据，可以帮助企业及时发现生产线上的问题和异常，并采取相应的措施，减少生产停机时间和损失。\n2、准确：该服务平台可以分析生产数据中的关联性和趋势，为企业提供更准确的生产计划和调度。\n3、高效：该服务平台可以优化生产过程，提高生产线的效率和质量，降低生产成本。\n综上所述，生产企业数据服务平台是为了满足生产过程中数据管理和分析的需求而开发的一种智能化解决方案。生产企业数据服务平台可以帮助企业更好地管理和分析生产数据。通过提供数据的整合、清洗、处理和可视化等功能，为企业提升生产效率、支持业务决策，并创造更大的价值。","date":"2024-04-16","author":"思斐","excerpt":"在现代工业生产中，生产数据的管理和分析对于企业的运营和决策是很重要的。生产企业数据服务平台可通过整合和分析生产数据，可提供更智能化解决方案。","createdAt":"2024-04-16T02:48:55.968Z","updatedAt":"2024-04-16T02:48:57.633Z","publishedAt":"2024-04-16T02:48:57.629Z","locale":"zh","newsType":{"data":null},"cover":{"data":{"id":514,"attributes":{"name":"企业微信截图_16988346069159.png","alternativeText":"企业微信截图_16988346069159.png","caption":"企业微信截图_16988346069159.png","width":640,"height":383,"formats":{"thumbnail":{"name":"thumbnail_企业微信截图_16988346069159.png","hash":"thumbnail_16988346069159_e1e6745354","ext":".png","mime":"image/png","width":245,"height":147,"size":54.74,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_16988346069159_e1e6745354.png"},"small":{"name":"small_企业微信截图_16988346069159.png","hash":"small_16988346069159_e1e6745354","ext":".png","mime":"image/png","width":500,"height":299,"size":199.82,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_16988346069159_e1e6745354.png"}},"hash":"16988346069159_e1e6745354","ext":".png","mime":"image/png","size":110.5,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/16988346069159_e1e6745354.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2023-11-01T10:31:59.862Z","updatedAt":"2023-11-01T10:31:59.862Z"}}},"localizations":{"data":[]}}},{"id":130,"attributes":{"feature":false,"title":"什么是数据库读写分离？","content":"　　数据库是业务中非常重要的一部分，也往往是业务发展的瓶颈。高性能数据库通常有两种常用方法，读写分离和分库分表。什么是数据库读写分离？其实就是数据库读写分离是指将数据库的读操作和写操作分别分配到不同的数据库服务器上，在实际应用的优势也很明显。\n![企业微信截图_16988342686686.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/16988342686686_3ead618b94.png)\n　　数据库读写分离是相对于传统的数据库架构而得来的概念。在传统的数据库架构中，读写操作都集中在同一台数据库服务器上。当访问量增加的时候，负载就会加剧，从而导致系统反应变慢或者崩溃。\n\n　　读写分离主要是为了将对数据库的读写操作分散到不同的数据库节点上，从基本原理上说是将数据库读写分散到不同的结点上。在实际使用中，主要是基于主从复制来同步数据，然后采用读写分离来提高数据库的并发负载能力。\n\n　　通过数据库读写分离，可以有效分散数据库服务器的负载，提高系统的稳定性和可用性。其作用如下：\n\n　　1、提高系统性：因为读和写是分开来操作，此时数据库服务器只需要完成以往的50%的工作。当负担减小时，自然就能提高系统的处理能力和响应速度。\n\n　　2、提高系统的稳定性：分散数据库服务器的负载可以降低系统单点故障的风险，提高系统的可用性和稳定性。\n\n　　3、提高数据安全性：通过分离读写操作，可以更好地控制数据的访问权限，提高数据的安全性和保密性。\n\n　　4、降低成本：通过读写分离，可以充分利用现有的数据库资源，避免因性能瓶颈而不得不升级硬件或增加数据库服务器的情况，从而降低系统维护成本。\n\n　　什么是数据库读写分离？其实就是一种有效的数据库优化策略，是现代大型系统架构中常用的技术手段之一。通过将读操作和写操作分开处理，有效提升系统的并发处理能力，从而可有效提升系统性能、稳定性、数据安全性和降低系统维护的成本。","date":"2024-04-11","author":"数据库读写分离","excerpt":"什么是数据库读写分离？其实就是数据库读写分离是指将数据库的读操作和写操作分别分配到不同的数据库服务器上，在实际应用的优势也很明显。","createdAt":"2024-04-11T02:23:17.068Z","updatedAt":"2024-04-11T02:23:18.988Z","publishedAt":"2024-04-11T02:23:18.985Z","locale":"zh","newsType":{"data":null},"cover":{"data":{"id":513,"attributes":{"name":"企业微信截图_16988342686686.png","alternativeText":"企业微信截图_16988342686686.png","caption":"企业微信截图_16988342686686.png","width":469,"height":278,"formats":{"thumbnail":{"name":"thumbnail_企业微信截图_16988342686686.png","hash":"thumbnail_16988342686686_3ead618b94","ext":".png","mime":"image/png","width":245,"height":145,"size":50.61,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_16988342686686_3ead618b94.png"}},"hash":"16988342686686_3ead618b94","ext":".png","mime":"image/png","size":63.16,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/16988342686686_3ead618b94.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2023-11-01T10:25:01.095Z","updatedAt":"2023-11-01T10:25:01.095Z"}}},"localizations":{"data":[]}}}],"en":[{"id":64,"attributes":{"feature":true,"title":"SphereEx-DBPlusEngine 1.4.0 Release: Enhanced Data Governance for Enterprises","content":"SphereEx-DBPlusEngine 1.3.0, released in January, received a lot of attention and feedback from users and customers. To meet their needs and focus on the industry's future development, we developed a release schedule based on feedback and are excited to announce the release of SphereEx-DBPlusEngine 1.4.0. This version includes significant updates that optimize the migration process and enhance security features such as in-process audit, archiving, and DDL consistency.\n\n# New Capabilities Meet Core User Demands\n\n## 1. Archiving: Support for automatic deletion of expired data\n\nArchiving expired data is a common requirement, and SphereEx-DBPlusEngine 1.4.0 now supports the automatic deletion of expired data. By defining a specific time field in the data table, the system can automatically delete data stored in the table that exceeds the specified time. This simple configuration process saves time and improves efficiency while also enhancing security.\n\n## 2. DDL consistency: Support for consistent execution of DDL statements\n\nDDL consistency has always been a problem in a distributed database environment, especially with sharded tables stored in multiple storage nodes. SphereEx-DBPlusEngine 1.4.0 now supports consistent execution of DDL statements, which can be combined with locks to ensure consistency. This guarantees the maximum concurrency of SQL execution and enhances efficiency.\n\n# Optimized Design Makes Products More Stable and Efficient\n\n## 1. Enhanced migration process: Support for migration of multiple tables with one DistSQL task\n\nTraditional data migration processes execute multiple table tasks in parallel to improve efficiency. However, each DistSQL task can only migrate one table, resulting in low efficiency and manual configuration requirements. SphereEx-DBPlusEngine 1.4.0 now supports the migration of multiple tables with one DistSQL task, greatly improving efficiency. Users only need to specify the tables that need to be migrated in the task configuration.\n\n## 2. Enhanced security features: Support for in-process audit\n\nIn the field of database technology, security has always been a significant issue. SphereEx-DBPlusEngine 1.4.0 introduces support for in-process audit, an important security mechanism that audits relevant SQL operations during execution. With built-in algorithms, it can audit relevant data changes and support two audit actions: log alarm and immediate fuse. This feature enhances system security and allows users to audit and trace more effectively.\n\n# About SphereEx-DBPlusEngine\n\nSphereEx-DBPlusEngine is a product based on the open-source kernel ShardingSphere, providing enterprise-level enhanced data services such as data sharding, distributed transactions, and data security for businesses. It consists of two products: SphereEx-DBPlusEngine-Driver and SphereEx-DBPlusEngine-Proxy, both of which can be deployed independently and support hybrid deployment. They provide standardized data horizontal scaling, distributed transactions, and distributed governance, and can be applied to a variety of diversified scenarios such as Java, homogeneous/heterogeneous languages, cloud-native, etc.\n\nThe release of SphereEx-DBPlusEngine 1.4.0 provides users with a series of new core features and major updates, further expanding the scope of application scenarios for SphereEx-DBPlusEngine and improving efficiency in practical environments. Choosing SphereEx-DBPlusEngine 1.4.0 can not only provide a more stable, efficient, and secure data governance solution but also offer more professional and complete enterprise-level services, reducing costs while accelerating digital business innovation.\n\n# Free Trial\n\nSphereEx-DBPlusEngine 1.4.0 is now available for free download and trial on the [SphereEx official website](https://www.sphere-ex.com/account/#/login/signIn?redirect=%2Fdownload). We are also an AWS APN technical partner, and every version of SphereEx-DBPlusEngine is packaged and released on AWS Marketplace. AWS users are welcome to find our offerings on [AWS Marketplace](https://aws.amazon.com/marketplace/seller-profile?id=d1a1d3ef-fce8-43d5-a57b-e5b1ec59caf0) to download and experience SphereEx-DBPlusEngine and unlock the convenience and efficiency of cloud-based digital services.","date":"2023-04-03","author":"SphereEx","excerpt":null,"createdAt":"2023-04-04T05:51:34.314Z","updatedAt":"2023-04-04T05:51:36.981Z","publishedAt":"2023-04-04T05:51:36.977Z","locale":"en","newsType":{"data":null},"cover":{"data":null},"localizations":{"data":[]}}},{"id":63,"attributes":{"feature":true,"title":"SphereEx-DBPlusEngine V1.3.0: Enhanced Functionality for Better Data Governance","content":"SphereEx is excited to announce the release of SphereEx-DBPlusEngine V1.3.0, which comes with significant updates to provide enterprises with enhanced data service capabilities. Here are the key improvements in this release:\n\n- Data migration and horizontal scaling: The new update allows users to implement Proxy-based clustering migration, which enhances the computing and data processing capacity of the cluster. Additionally, DBPlusEngine simplifies the operational steps for data migration, making it easier for users.\n- Data masking: The latest update now features mask rules that deform and blur key data when certain key information queries are made, ensuring the safety of sensitive data.\n- Single table to shard table: The Scaling tool in the new update allows the automatic conversion of a single table to a shard table, simplifying users' operations.\n- Driver log collection and metrics monitoring: The DBPlusEngine-Driver form now has the same capability as DBPlusEngine-Proxy, which allows for the visual display of logs and monitoring metrics collected on the Driver side, improving users' experience in log retrieval and monitoring scenarios.\n- Fuzzy query calculations: The new implementation of like calculations in encrypted scenarios supports fuzzy query calculations.\n- Encrypted/decryption data cleaning File Transfer Protocol: In cases of an interruption/failure during encrypted data cleaning, DBPlusEngine can continue to start the data cleaning task based on File Transfer Protocol.\n\n## SphereEx-DBPlusEngine-Mate: Fully Supporting All DBPlusEngine Capabilities\n\nIn addition to the updates to SphereEx-DBPlusEngine, the DBPlusEngine-Mate has come to the v0.3.0 version, which supports all DBPlusEngine capabilities in cloud environments. This allows users to use DBPlusEngine out of ZooKeeper in a Kubernetes environment to get closer to cloud-native ways of managing DBPlusEngine.\n\nThe DBPlusEngine-Mate is a metadata management tool in cloud-native scenarios that seamlessly integrates governance capabilities such as sharding, encrypted data cleaning, read/write separation, and high availability into the Kubernetes metadata system. This allows users to eliminate dependency on ZooKeeper on the cloud, reducing the cost of machine resources and the burden of operations and maintenance staff.\n\nOther Benefits of the DBPlusEngine-Mate v0.3.0 update:\n\n- Guarantees the integrity of DBPlusEngine functionality.\n- Empowers users to fully use DistSQL in the cloud.\n- Optimizes the user experience on the SRE side.\n- Provides SREs and DBAs with the same operational experience as a cloud-native database.\n\n## Experience SphereEx-DBPlusEngine V1.3.0 Today!\n\n![img](https://u01f1kqxrl.feishu.cn/space/api/box/stream/download/asynccode/?code=NGRhYWI1NzM3ODNkZWJkNmUwNzkwMGVjMWFmYjFiNDNfbjVKQW5Wd3FteHI1Tk1VNDl3N3g5N01UWDVNVHVFZ2JfVG9rZW46QW1kcmJEeldKb3h2QUx4Mlc0NmM3dW1BbkJoXzE2ODA1ODcwNzQ6MTY4MDU5MDY3NF9WNA)\n\n<center>(SphereEx-DBPlusEngine v1.3.0 Product Library page)</center>\n\nSphereEx-DBPlusEngine V1.3.0 is now available for download on the [SphereEx official website](https://www.sphere-ex.com/account/#/login/signIn?redirect=%2Fdownload). Contact our staff to get a limited-time license and experience all the features of SphereEx-DBPlusEngine v1.3.0 for free. AWS users are welcome to find our offerings on the [AWS Marketplace](https://aws.amazon.com/marketplace/seller-profile?id=d1a1d3ef-fce8-43d5-a57b-e5b1ec59caf0).","date":"2023-02-24","author":"SphereEx","excerpt":null,"createdAt":"2023-04-04T05:47:36.369Z","updatedAt":"2023-04-04T05:47:37.666Z","publishedAt":"2023-04-04T05:47:37.664Z","locale":"en","newsType":{"data":null},"cover":{"data":null},"localizations":{"data":[]}}},{"id":57,"attributes":{"feature":true,"title":"iQiyi goes cloud-native with Apache ShardingSphere & Database Mesh","content":" \n \nIn May of this year, we at [SphereEx](https://www.sphere-ex.com/en/) proposed the [Database Mesh 2.0](https://medium.com/faun/database-mesh-2-0-database-governance-in-a-cloud-native-environment-ac24080349eb) concept. \n[Database Mesh](https://www.database-mesh.io/) is a dynamic concept that is constantly evolving, focusing on database traffic governance and providing sharding, load balancing, observability, and audit capabilities based on database protocol awareness. These capabilities address some of the traffic governance issues. \nFurthermore, Database Mesh emphasizes the development of database reliability engineering (DBRE), providing easier-to-use and superior database governance capability. \n \n[iQiyi](https://www.crunchbase.com/organization/iqiyi) shares our view for the concept and vision of Database Mesh, which is to **achieve high-performance database expansion while tackling data governance issues in the cloud**. \n\niQiyi expanded [ShardingSphere-JDBC](https://shardingsphere.apache.org/document/current/en/overview/#shardingsphere-jdbc) based on its business requirements and conducted a series of tests combined with [Pisanix](https://github.com/database-mesh/pisanix), for the implementation of the Database Mesh concept. \n \n### How did iQiyi prepare to go cloud-native with Database Mesh & ShardingSphere-JDBC?\n\nWith the expansion in the number of features, products & service offerings and the surge in the number of users, enterprises have diversified the number of promotional activities to engage and retain users (flash sales, events, etc.). In successful cases, this led to a huge amount of traffic putting great pressure on their databases. \n\nAs a result, enterprises encounter database issues such as secondary delays and slow queries, with some operations failing to meet business requirements. \nMicroservices and cloud-native bring new possibilities for the business roll-out process and governance. But with more diversified business scenarios and stovepipe data application schemes, data control tends to be isolated. Tech teams face problems such as difficult technology selection, high costs, and complicated management and control.\n \nParticularly, cloud-native architecture is growing mature, and the relationship between business applications and database infrastructure is changing gradually. iQiyi hopes to grasp this new trend and adopt unified management to expand and update databases, thus supporting more businesses and applications migrating to the cloud.\n \nTo meet the requirements for database performance and availability in cloud environments, iQiyi needed to migrate [ShardingSphere](https://shardingsphere.apache.org/)'s local distributed capability to the cloud. To achieve this, iQiyi was looking for a tool that can unify cloud database traffic access in a cloud-native environment and achieve the unified and efficient management of cloud traffic and data.\n \nWhile investigating and testing Pisanix, a Database Mesh solution provided by SphereEx, iQiyi also redeveloped ShardingSphere-JDBC, to meet the requirements for sharding, load balancing, configuration and storage, and security when accessing businesses to database governance platforms.\n \n#### 1. Preparation: iQiyi transforms ShardingSphere-JDBC\n\nCurrently, iQiyi uses a unified config center to store database connection configuration. [KMS technology](https://kms-technology.com/) is used to encrypt database access configuration and ShardingSphere-JDBC is used to implement sharding and load balancing. The complete architecture is shown below.\n \n![iQiyi 1.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/i_Qiyi_1_ca3a63a55b.png)\n\n \nWhen businesses are connected to the data governance platform, they apply for relevant connection configuration. After they are transformed and the access information is encrypted via KMS, they are stored in the unified configuration storage center. When the application starts, the transformed ShardingSphere-JDBC fetches the configuration and monitors configuration changes to support hot configuration updates.\n \nBefore the transformation, when there was a need to change the configuration, scale-out sharding clusters, upgrade cluster version, or migrate a database to the cloud, it usually required the release of a new version. Also, the DevOps teams had to design complicated procedures such as switchover, rollback, timing selection, grayscale traffic, and data verification, to account for various scenarios.\n \nAfter the transformation, the customized ShardingSphere-JDBC can support sharding cluster scaling or binding changes when adding or modifying table sharding configuration. In the configuration center, you can perform visual operations to modify configurations or bind clusters, and select the configuration of reload timing. When the SDK receives the latest configurations, it starts asynchronous tasks to close the old connection pool and replace the existing one. This facilitates the smooth migration of read/write traffic and greatly simplifies the migration of data governance capabilities to the cloud environment.\n \niQiyi plans to introduce Pisanix-Proxy by accessing Database Mesh, further sinking data governance capability from [SDK](https://en.wikipedia.org/wiki/Software_development_kit) to Sidecar. \n \n#### 2. Data governance capability with Sidecar and building a unified data governance based on Pisanix\n\nIn the traffic access layer, as cloud-native applications move closer to microservices and Serverless, users need to configure complex routing rules, support multiple application-layer protocols, and ensure service access security and the observability of traffic. In response to these requirements, iQiyi used middleware to manage [Redis](https://redis.io/) and [MySQL](https://www.mysql.com/) at the very beginning.\n\n![iQiyi 2.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/i_Qiyi_2_fdfce31fdb.png)\n \nAdditionally, SmartJedis provided a unified configuration center to support iQiyi's hybrid cloud deployment. In the unified configuration center, configurations in different environments could be dynamically supported. In a non-mesh environment, a direct connection is adopted; while in a mesh environment, RedisProxy in Envoy is used to manage Redis protocol traffic and support hot updates of connection configuration, avoiding downtime after Redis is moved to the cloud. \n \nIn terms of MySQL, iQiyi's R&D team tested Pisanix, the specific implementation of Database Mesh. Written in [Go](https://go.dev/) and [Rust](lhttps://www.rust-lang.org/) for the [Kubernetes](https://kubernetes.io/) environment, Pisanix currently supports [MySQL](https://www.mysql.com/). It includes three components: Pisa-Controller, Pisa-Proxy, and Pisa-Daemon, which provide a local database for users and applications. It supports multi-protocol pluggable architecture, shields the status of real data sources, and provides unified database traffic control capabilities for data DevOps teams.\n\nCurrently, iQiyi still uses ShardingSphere-JDBC to support Java applications. Once Pisanix will be further implemented by iQiyi, the company will implement standardized automatic database maintenance via Pisanix, and achieve the cloud-native orchestration of multiple database governance behaviors by supporting multi-language applications. Based on Database Mesh's standard `CustomResourceDefinition`, such as unified database access declaration configuration and programmable database access resource limitations, iQiyi can rapidly achieve the governance and orchestration of cloud-native databases.\n \n#### 3. iQiyi's plan for Pisanix\n\n**1）Data sharding: achieve high performance on par with ShardingSphere-JDBC in the cloud**\n\nData sharding is an effective way to deal with massive data storage and computing, which is why iQiyi chose Pisanix for cloud-native and non-Java scenarios. Data sharding mainly includes four modules: SQL parser, SQL rewriting, SQL router, and result merger.\n \nTo facilitate the migration of ShardingSphere's powerful local sharding capability to the cloud, Pisanix provides data sharding governance capabilities in the cloud based on the underlying database, allowing users to achieve horizontal scaling computing through Pisanix. At the same time, more custom metrics are available to achieve intelligent, stable, and advanced auto-scaling for Pisa-Proxy.\n \nBased on the Pisa-Controller plane, iQiyi can achieve the management and control of data plane components. Pisa-Proxy can also be combined and deployed in the same Pod with business applications in Sidecar mode to monitor MySQL protocol and obtain the traffic of applications accessing the database. Pisanix also provides iQiyi with a variety of governance capabilities:\n- **SQL traffic governance:** achieve multiple load balancing strategies and current limiting by paring SQL.\n- **Access control:** achieve fine-grained permission control based on the relationship between users and data permission.\n- **SQL firewall:** prevent high-risk SQL from executing.\n- **Observability:** expose various database access metrics such as throughput and latency.\n \nFrom iQiyi's point of view, Pisanix enables the high-performance sharding of both Java and non-Java services in the cloud environment. This achievement lays the foundation for the smooth transition of more businesses.\n \n**2）Read/write splitting: increase database throughput.**\n\nTo improve throughput and availability, many systems adopt a primary-secondary database architecture configuration mode, which is a bit complicated. Therefore, when read requests outnumber write requests, read/write splitting should be used to overcome the performance bottleneck of the database in real-world application scenarios.\n \nRead/write splitting is a widely used technical solution to improve throughput in primary-secondary scenarios, and is capable of improving query performance and reducing server load. It also brings the same problem with data sharding, which makes it more complicated for DevOps teams to operate databases.\n \nCurrently, iQiyi evenly distributes query requests to multiple data copies through the configuration mode of one primary and multi-secondary, which improves the processing capability of the system. This method improves throughput and the availability of the system - even when a database breaks down or a disk is physically damaged, the system can still maintain normal functioning.\n \niQiyi plans to adopt Pisanix's dynamic read/write splitting feature to manage multi-primary and multi-secondary database clusters. After connecting to Pisanix, iQiyi will be able to transparently manage the primary/secondary database with read/write splitting so that users can use the database with the primary/secondary architecture just like a monolithic database.\n \n### Future plan\n\nCurrently, iQiyi has completed its internal transformation for ShardingSphere-JDBC. In the future, it plans to combine Pisanix and ShardingSphere to achieve the unified governance of MySQL. \n\nDriven by the ShardingSphere and Database Mesh communities, Pisanix will continue to develop cloud solutions to meet various usage scenarios, with SphereEx providing reliable technical support for iQiyi and accelerating the transition speed to the cloud. \n \nPisanix is a very young project, which means there are some shortcomings. iQiyi's test shows that Pisanix is limited in its expression support for database and table sharding, and its special configuration for SQL needs to be further improved. \n\nNext, the community will focus on improving Pisanix's online capabilities, including operating status visualization, metrics, circuit breaker degradation strategy, and tracing. \nAdditionally, SQL audit, Pisa-Controller's merge with [Istio](https://istio.io/), and other issues related to compatibility and performance have also been put on the agenda.\n \nIn the coming future, iQiyi will build a MySQL-based unified data access standard and solution based on ShardingSphere-JDBC and Pisanix that is still evolving under the Database Mesh concept. \n\nThrough a unified configuration center and customized Sidecar, iQiyi will gradually make the database access details fully transparent to developers. This way, it can simplify the operating process while enhancing the security of database access, simplifying moving applications moving to the cloud.\n \n----------------------------\nFor more information about Database Mesh and Pisanix, follow the links below:\n[Database Mesh 2.0: Database Governance in a Cloud Native Environment](https://medium.com/faun/database-mesh-2-0-database-governance-in-a-cloud-native-environment-ac24080349eb)\n[Pisanix is Available! An Open Source Database Mesh Solution Launched by SphereEx](https://www.sphere-ex.com/news/43/)\n[ Pisanix GitHub](https://github.com/database-mesh/pisanix)\n","date":"2022-12-16","author":"SphereEx","excerpt":"iQiyi migrates ShardingSphere’s local distributed capability to the cloud with Database Mesh’s Pisanix\n\n","createdAt":"2022-12-15T06:58:49.152Z","updatedAt":"2023-01-16T03:48:29.037Z","publishedAt":"2022-12-16T08:22:35.305Z","locale":"en","newsType":{"data":null},"cover":{"data":{"id":457,"attributes":{"name":"iQiyi & Database Mesh.png","alternativeText":"iQiyi & Database Mesh.png","caption":"iQiyi & Database Mesh.png","width":1800,"height":766,"formats":{"thumbnail":{"name":"thumbnail_iQiyi & Database Mesh.png","hash":"thumbnail_i_Qiyi_and_Database_Mesh_dc1577e484","ext":".png","mime":"image/png","width":245,"height":104,"size":23.87,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_i_Qiyi_and_Database_Mesh_dc1577e484.png"},"large":{"name":"large_iQiyi & Database Mesh.png","hash":"large_i_Qiyi_and_Database_Mesh_dc1577e484","ext":".png","mime":"image/png","width":1000,"height":426,"size":142.16,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/large_i_Qiyi_and_Database_Mesh_dc1577e484.png"},"medium":{"name":"medium_iQiyi & Database Mesh.png","hash":"medium_i_Qiyi_and_Database_Mesh_dc1577e484","ext":".png","mime":"image/png","width":750,"height":319,"size":105.4,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/medium_i_Qiyi_and_Database_Mesh_dc1577e484.png"},"small":{"name":"small_iQiyi & Database Mesh.png","hash":"small_i_Qiyi_and_Database_Mesh_dc1577e484","ext":".png","mime":"image/png","width":500,"height":213,"size":63.66,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_i_Qiyi_and_Database_Mesh_dc1577e484.png"}},"hash":"i_Qiyi_and_Database_Mesh_dc1577e484","ext":".png","mime":"image/png","size":134.2,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/i_Qiyi_and_Database_Mesh_dc1577e484.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-12-16T07:14:02.426Z","updatedAt":"2022-12-16T07:14:02.426Z"}}},"localizations":{"data":[]}}},{"id":56,"attributes":{"feature":true,"title":"SphereEx builds a complete enterprise data security ecosystem","content":"Guaranteeing data security is essential, to avoid putting users' personal data at risk of leaks, and avoid damage to enterprises' business security and brand reputation. \n\nAlthough data security cannot generate direct monetary returns, it has become crucial for enterprises. Regulations on data protection have been introduced all over the world, making data security of paramount importance.\n\nFrom an enterprise perspective, the challenges faced in data security can be attributed to both internal and external factors.\n\nEnterprises must speed up building their data security systems since they have a limited amount of time to comply with safety regulations. \n\nLarge enterprises and digital-first companies are typically the focus of regulators when it comes to data security regulation. Additionally, if a company has a presence in the EU for example, it must also adhere to GDPR regulations - making building a data security system of the utmost importance.\n\nHowever, Rome wasn't built in a day. There are many pain points in terms of technology and standards when it comes to data security:\n\n- High business transformation costs: WMS (warehouse management systems) are diversified and large in scale, so application transformation entails high costs. \n\n- High risk during the release phase: there's a high risk when switching applications.\n\n- Switching costs: business switchover is challenging, requiring custom-made strategies.\n\n- Scattered data without unified standards: enterprise data is scattered and without unified authority control.\n\n#### Background\n\n**Data security is positively correlated with business coupling**\n\nAccording to regulations, data related to users' security or commercially sensitive data needs to be encrypted. \n\nHowever, traditional data encryption solutions such as hard disk encryption, file encryption, database TDE encryption, database encryption gateway, and application encryption show a very close positive correlation between their data security and business coupling.\n\n![1280X1280.PNG](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/1280_X1280_b763c15c3a.PNG)\n\nAs mobile Internet takes over, business adjustments and feature launch frequency are rising, with product features and business scope expanding as well. Enterprises must react rapidly to market demands and sophisticated operating models. \n\nAs a result, traditional stovepipe architecture gradually gave way to microservice architecture - making the \"more secure data leads to more coupled business\" assumption obsolete.\n\nIf we pursue low business coupling, we have to sacrifice a certain degree of data security, which is unacceptable to both the internal requirements of enterprises and external industry standards.\n\n**Business scenarios associated with data encryption**\n\nDepending on specific industry requirements, DevOps teams must maintain a set of encryption and decryption systems for real-world business scenarios. \n\nThe self-maintained encryption system often needs to be rebuilt or modified when the encryption scenario changes. Additionally, for services that have already been launched, it's complicated to transparently and securely implement seamless encryption and transformation without modifying the business logic and SQL.\n\nIn terms of new services, data encryption is required. DevOps teams must achieve data encryption based on encryption requirements since everything is new. Rapid business growth, however, makes it difficult for the original encryption strategy to match the new demands. As a result, large-scale business system transformation is required, causing huge upgrading costs.\n\nFor mature services that are already online and are stored in plain text, when it comes to the the migration and encryption (data cleansing) of the old data and the related business,  SQL transformation is required - which is quite complicated. \n\nMoreover, the core business needs to be transformed without impacting the service level. The transformation involves establishing a pre-release environment and coming up with a rollback strategy, which will create significant costs.\n\n### SphereEx-DBPlusEngine: A Comprehensive Data Security Solution\n\nIn response to these issues, SphereEx-DBPlusEngine provides an enterprise cross-platform data security solution for heterogeneous environments requiring zero changes to the original code. \n\nIt also provides online data cleansing, custom algorithms, multiple key management (cloud management is also included), and more, to empower enterprises in coping with various data security requirements.\n\nFollowing the launch of cloud key management, encryption, and online data cleansing features with November's [version 1.2.0 release](https://www.sphere-ex.com/news/50/), SphereEx now completes its data security solution with regulation-compliant testing tools and cryptographic computing in the data flow process, establishing a streamlined enterprise-grade data security system.\n\n---\n\n#### 1. One-Stop Security Compliance\n##### <u>1.1 Security compliance testing tools</u>\n\nEnterprises must determine which data needs to be encrypted, which comes with its own set of challenges as it is difficult to take into account all the legal and regulatory encryption requirements. \n\nLegal and regulatory encryption requirements are fragmented to say the least, as they vary by location. Nevertheless, enterprises need a tool to quickly determine which data needs to be encrypted.\n\nWith this in mind, we introduced our security compliance testing tools. The tools can examine business data in accordance with national standards and overseas laws and regulations (such as GDPR), and automatically detect the fields in the system that need to be encrypted - reducing negative business impact.\n\n##### <u>1.2 No-code implementation</u>\n\nWhen it comes to data encryption, enterprises are most concerned about applications being changed. Code changes imply cost, stability, and security concerns as well as many unintended risks.\n\nThe open-source project [ShardingSphere](https://shardingsphere.apache.org) developed a mature no-code implementation capability for data encryption. \n\nThis feature has been enhanced by SphereEx-DBPlusEngine. Enterprises can use SphereEx-DBPlusEngine without changing any application or source code, thus avoiding the business risks caused by code modification. SphereEx-DBPlusEngine enables enterprises to quickly implement data encryption requirements to ensure rapid deployment.\n\n##### <u>1.3 Key management</u>\n\nAs more businesses are transitioning to the cloud, business data naturally run in cloud environments. However, in a public cloud environment, if enterprises still use the original management method when using SphereEx-DBPlusEngine, hidden dangers in terms of security could manifest:\n\n- Encryption is needed for data storage and use in the cloud, as well as during data transfer.\n\n- The management term of the encryption/decryption key is the entire lifecycle of the data. If the key is lost before the data is destroyed, the data cannot be decrypted.\n\nIn order to address the two issues above, SphereEx-DBPlusEngine offers a cloud-based key management approach by abstracting key management as a standard SPI for cloud vendors like [AWS](https://aws.amazon.com/) and [Alibaba Cloud](https://www.alibabacloud.com/).\n\n![WX20221207-181651@2x.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/WX_20221207_181651_2x_3e36e2770f.png)\n\nTake AWS as an example. When the program initializes the encryption algorithm, it connects to AWS to retrieve the relevant key stored there and then stores the key in the algorithm. \n\nThe entire data encryption process doesn't include any network communication with the cloud, preventing data flow caused by interaction and fundamentally ensuring key security.\n\nBy offering a cloud-based key management solution, SphereEx provides enterprises with incredibly high key management flexibility and improves the convenience and security of the entire encryption system. \n\nIt can also seamlessly interface with each cloud's key management features to offer the best protection. Moreover, SphereEx-DBPlusEngine supports a number of key management methods to interface with cloud-based, public, and private key management.\n\n##### <u>1.4 Encrypted data cleansing, backwashing, and rewashing</u>\nWhen enterprises need to migrate new services, they often need to encrypt a large amount of new business data to comply with regulations and internal compliance requirements in terms of data security. A traditional encryption method would not only increase the workload but also delay the entire migration process, affecting the business deployment process.\n\nCurrently, DBPlusEngine already provides an encryption solution. For new tables and services, we can directly configure them using encryption rules; but for existing data tables, the plaintext fields in these tables should be cleaned and converted to encrypted content.\n\n![WX20221207-181958@2x.png](https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/WX_20221207_181958_2x_bf9abe0340.png)\n\nThe data cleansing job is triggered by [DistSQL](https://shardingsphere.apache.org/document/5.1.0/en/concepts/distsql/). Once the program receives the request, it will create a data cleansing job according to the current data cleansing rule and encryption rule. \n\nThe job is divided into two sections: the query and update tasks:\n\n- The query task is responsible for querying the user's table data and retrieving the plaintext fields that need to be encrypted and then pushing them to the channel. \n\n- The update task obtains the data from the channel, encrypts it, and updates it. \n\nThe whole task creation and execution process interacts with the governance center, allowing users to query its progress or clean up the job through DistSQL.\n\nFurthermore, in an OLAP scenario, DevOps teams cannot analyze the encrypted data, while the business must maintain the encrypted state. \n\nIn this context, the decrypt() function can be used to obtain the plaintext data directly without having to backwash the data, allowing your teams to analyze the ciphertext data and obtain the data value.\n\nSphereEx-DBPlusEngine also supports backwashing and rewashing in the following two scenarios:\n- **Backwashing for business data rollback**\n\nIf some data does not need to be encrypted once the business goes online, or when data masking is performed on data that has been encrypted in large batches, it is necessary to backwash the encrypted data and uniformly convert it to plaintext again.\n\n- **Rewashing for key replacement**\n\nIf the key needs to be changed on a regular basis or at a critical point to ensure long-term data security, it is necessary to backwash the encrypted data, convert it to plaintext, and re-encrypt the data using the new encryption method.\n\n#### 2. Compatibility & Flexibility\n##### <u>2.1 Flexible encryption algorithm</u>\nSphereEx-DBPlusEngine supports complete data lifecycle security management, with particular attention to the encryption capability for data storage security. It is possible to store and access encrypted data without modifying the application side by implementing data encryption on the client.\n\nSphereEx-DBPlusEngine provides customization capabilities in terms of key management methods and support for [IDEA](https://en.wikipedia.org/wiki/International_Data_Encryption_Algorithm) and other encryption algorithms to meet the wide range of data encryption needs.\n\nTo further increase the efficiency of encrypted storage and computing, SphereEx-DBPlusEngine can work with security hardware for complete and high-performance encryption. It can also provide standard security equipment with integrated hardware and software, further lowering the user's threshold.\n\n##### <u>2.2 Fine-grained encryption capability</u>\nSphereEx-DBPlusEngine supports multi-dimensional and fine-grained data encryption capability, which can implement data encryption at the row and column levels, and then support data encryption at both the user and tenant levels. \n\nAccording to encryption granularity, different encryption algorithms and key management can be flexibly configured to achieve accurate and adaptable data security protection.\n\n##### 2.3 <u>Suitable for private, public, and hybrid cloud environments deployment</u>\n\nTo increase data security, many enterprises distribute all their data across various environments. This is especially true for industries or application scenarios that have strict requirements for data security. They often need to take into account their diverse deployment environments and complex data security environments.\n\nSphereEx-DBPlusEngine can be flexibly deployed in private, public, and hybrid cloud environments to meet various users' needs. Its key management, compliance detection, data cleansing, fine-grained encryption, encryption algorithm adaptation and other capabilities fully satisfy users' needs for data security in hybrid environments, while shielding the differences created by different underlying environments and ensuring a consistent user experience.\n\n### About SphereEx-DBPlusEngine\n\nSphereEx-DBPlusEngine, a database enhancement engine, adopts a pluggable architecture with functional modularity. In addition to data storage, it also provides data sharding, distributed transactions, data security, and other database application architecture enhancement capabilities.\n\nIn November, SphereEx-DBPlusEngine's version [V1.2.0](https://www.sphere-ex.com/news/50/) was released, adding cloud-based key management and data cleansing capabilities for data security. \n\nIt provides enterprises with comprehensive and powerful compliance testing tools, cloud-based key management, encryption and decryption, and cryptographic computing capabilities, further enhancing the data security protection capability of SphereEx-DBPlusEngine.\n\nTo find out more or request a free trial for DBPlusEngine, you can sign up on our website [here](https://www.sphere-ex.com/account/#/login/signIn?redirect=%2F).\n\nAlternatively, if you are an AWS user, you can learn more about our offering on AWS Marketplace [here](https://aws.amazon.com/marketplace/seller-profile?id=d1a1d3ef-fce8-43d5-a57b-e5b1ec59caf0).\n\n\n","date":"2022-12-07","author":"SphereEx","excerpt":"SphereEx-DBPlusEngine provides an enterprise cross-platform data security solution for heterogeneous environments requiring zero changes to the original code.","createdAt":"2022-12-07T10:36:49.258Z","updatedAt":"2022-12-07T10:58:34.575Z","publishedAt":"2022-12-07T10:58:34.571Z","locale":"en","newsType":{"data":null},"cover":{"data":{"id":452,"attributes":{"name":"20221207-184319.png","alternativeText":"20221207-184319.png","caption":"20221207-184319.png","width":2160,"height":828,"formats":{"thumbnail":{"name":"thumbnail_20221207-184319.png","hash":"thumbnail_20221207_184319_85657aa0ba","ext":".png","mime":"image/png","width":245,"height":94,"size":48.02,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail_20221207_184319_85657aa0ba.png"},"large":{"name":"large_20221207-184319.png","hash":"large_20221207_184319_85657aa0ba","ext":".png","mime":"image/png","width":1000,"height":383,"size":597.12,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/large_20221207_184319_85657aa0ba.png"},"medium":{"name":"medium_20221207-184319.png","hash":"medium_20221207_184319_85657aa0ba","ext":".png","mime":"image/png","width":750,"height":288,"size":375.15,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/medium_20221207_184319_85657aa0ba.png"},"small":{"name":"small_20221207-184319.png","hash":"small_20221207_184319_85657aa0ba","ext":".png","mime":"image/png","width":500,"height":192,"size":186.88,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/small_20221207_184319_85657aa0ba.png"}},"hash":"20221207_184319_85657aa0ba","ext":".png","mime":"image/png","size":756.49,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/20221207_184319_85657aa0ba.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-12-07T10:44:03.480Z","updatedAt":"2022-12-07T10:44:03.480Z"}}},"localizations":{"data":[]}}}]},"customerShowcases":{"zh":{"data":[{"id":13,"attributes":{"name":"58","website":null,"createdAt":"2022-05-12T09:59:45.880Z","updatedAt":"2022-05-12T10:00:08.185Z","locale":"zh","logo":{"data":{"id":193,"attributes":{"name":"58同城.png","alternativeText":"58同城.png","caption":"58同城.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_58同城.png","hash":"thumbnail_58_b8196c9bdc","ext":".png","mime":"image/png","width":245,"height":73,"size":7.56,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_58_b8196c9bdc.png"}},"hash":"58_b8196c9bdc","ext":".png","mime":"image/png","size":9.98,"url":"https://official-media.sphere-ex.com/58_b8196c9bdc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T09:59:34.418Z","updatedAt":"2022-05-12T09:59:34.418Z"}}},"localizations":{"data":[{"id":14,"attributes":{"name":"58","website":null,"createdAt":"2022-05-12T10:00:08.148Z","updatedAt":"2022-05-12T10:00:08.148Z","locale":"en"}}]}}},{"id":16,"attributes":{"name":"360数科","website":null,"createdAt":"2022-05-12T10:02:26.586Z","updatedAt":"2022-05-12T10:02:26.586Z","locale":"zh","logo":{"data":{"id":194,"attributes":{"name":"360 数科.png","alternativeText":"360 数科.png","caption":"360 数科.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_360 数科.png","hash":"thumbnail_360_ba73dda734","ext":".png","mime":"image/png","width":245,"height":73,"size":13.34,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_360_ba73dda734.png"}},"hash":"360_ba73dda734","ext":".png","mime":"image/png","size":24.34,"url":"https://official-media.sphere-ex.com/360_ba73dda734.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:02:01.076Z","updatedAt":"2022-05-12T10:02:01.076Z"}}},"localizations":{"data":[{"id":15,"attributes":{"name":"360数科","website":null,"createdAt":"2022-05-12T10:02:13.011Z","updatedAt":"2022-05-12T10:02:26.617Z","locale":"en"}}]}}},{"id":17,"attributes":{"name":"500PX","website":null,"createdAt":"2022-05-12T10:03:56.480Z","updatedAt":"2022-05-12T10:04:05.703Z","locale":"zh","logo":{"data":{"id":195,"attributes":{"name":"500px.png","alternativeText":"500px.png","caption":"500px.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_500px.png","hash":"thumbnail_500px_c2be77bdb0","ext":".png","mime":"image/png","width":245,"height":73,"size":4.56,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_500px_c2be77bdb0.png"}},"hash":"500px_c2be77bdb0","ext":".png","mime":"image/png","size":5.28,"url":"https://official-media.sphere-ex.com/500px_c2be77bdb0.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:03:43.369Z","updatedAt":"2022-05-12T10:03:43.369Z"}}},"localizations":{"data":[{"id":18,"attributes":{"name":"500PX","website":null,"createdAt":"2022-05-12T10:04:05.674Z","updatedAt":"2022-05-12T10:04:05.674Z","locale":"en"}}]}}},{"id":19,"attributes":{"name":"爱番番","website":null,"createdAt":"2022-05-12T10:04:52.902Z","updatedAt":"2022-05-12T10:05:05.715Z","locale":"zh","logo":{"data":{"id":196,"attributes":{"name":"爱番番.png","alternativeText":"爱番番.png","caption":"爱番番.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_爱番番.png","hash":"thumbnail__2ec44848c9","ext":".png","mime":"image/png","width":245,"height":73,"size":7.15,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__2ec44848c9.png"}},"hash":"_2ec44848c9","ext":".png","mime":"image/png","size":13.36,"url":"https://official-media.sphere-ex.com/_2ec44848c9.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:04:35.351Z","updatedAt":"2022-05-12T10:04:35.351Z"}}},"localizations":{"data":[{"id":20,"attributes":{"name":"爱番番","website":null,"createdAt":"2022-05-12T10:05:05.682Z","updatedAt":"2022-05-12T10:05:05.682Z","locale":"en"}}]}}},{"id":21,"attributes":{"name":"爱奇艺","website":null,"createdAt":"2022-05-12T10:05:29.353Z","updatedAt":"2022-05-12T10:05:39.064Z","locale":"zh","logo":{"data":{"id":197,"attributes":{"name":"爱奇艺.png","alternativeText":"爱奇艺.png","caption":"爱奇艺.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_爱奇艺.png","hash":"thumbnail__ff2f4ac641","ext":".png","mime":"image/png","width":245,"height":73,"size":11.2,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ff2f4ac641.png"}},"hash":"_ff2f4ac641","ext":".png","mime":"image/png","size":19.87,"url":"https://official-media.sphere-ex.com/_ff2f4ac641.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:05:20.081Z","updatedAt":"2022-05-12T10:05:20.081Z"}}},"localizations":{"data":[{"id":22,"attributes":{"name":"爱奇艺","website":null,"createdAt":"2022-05-12T10:05:39.037Z","updatedAt":"2022-05-12T10:05:39.037Z","locale":"en"}}]}}},{"id":24,"attributes":{"name":"百果园","website":null,"createdAt":"2022-05-12T10:09:39.577Z","updatedAt":"2022-05-12T10:09:39.577Z","locale":"zh","logo":{"data":{"id":198,"attributes":{"name":"百果园.png","alternativeText":"百果园.png","caption":"百果园.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_百果园.png","hash":"thumbnail__b5aa05467d","ext":".png","mime":"image/png","width":245,"height":73,"size":8.48,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b5aa05467d.png"}},"hash":"_b5aa05467d","ext":".png","mime":"image/png","size":15.35,"url":"https://official-media.sphere-ex.com/_b5aa05467d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:09:15.192Z","updatedAt":"2022-05-12T10:09:15.192Z"}}},"localizations":{"data":[{"id":23,"attributes":{"name":"百果园","website":null,"createdAt":"2022-05-12T10:09:23.967Z","updatedAt":"2022-05-12T10:09:39.612Z","locale":"en"}}]}}},{"id":25,"attributes":{"name":"编程猫","website":null,"createdAt":"2022-05-12T10:10:23.647Z","updatedAt":"2022-05-12T10:10:32.569Z","locale":"zh","logo":{"data":{"id":199,"attributes":{"name":"编程猫.png","alternativeText":"编程猫.png","caption":"编程猫.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_编程猫.png","hash":"thumbnail__8a3da21399","ext":".png","mime":"image/png","width":245,"height":73,"size":6.46,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8a3da21399.png"}},"hash":"_8a3da21399","ext":".png","mime":"image/png","size":9.01,"url":"https://official-media.sphere-ex.com/_8a3da21399.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:10:12.303Z","updatedAt":"2022-05-12T10:10:12.303Z"}}},"localizations":{"data":[{"id":26,"attributes":{"name":"编程猫","website":null,"createdAt":"2022-05-12T10:10:32.541Z","updatedAt":"2022-05-12T10:10:32.541Z","locale":"en"}}]}}},{"id":27,"attributes":{"name":"天威诚信","website":null,"createdAt":"2022-05-12T10:10:58.220Z","updatedAt":"2022-05-12T10:11:06.416Z","locale":"zh","logo":{"data":{"id":200,"attributes":{"name":"诚信天威.png","alternativeText":"诚信天威.png","caption":"诚信天威.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_诚信天威.png","hash":"thumbnail__bd7c360f7e","ext":".png","mime":"image/png","width":245,"height":73,"size":7.26,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__bd7c360f7e.png"}},"hash":"_bd7c360f7e","ext":".png","mime":"image/png","size":13.57,"url":"https://official-media.sphere-ex.com/_bd7c360f7e.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:10:47.908Z","updatedAt":"2022-05-12T10:10:47.908Z"}}},"localizations":{"data":[{"id":28,"attributes":{"name":"天威诚信","website":null,"createdAt":"2022-05-12T10:11:06.381Z","updatedAt":"2022-05-12T10:11:06.381Z","locale":"en"}}]}}},{"id":30,"attributes":{"name":"大搜车","website":null,"createdAt":"2022-05-12T11:05:07.827Z","updatedAt":"2022-05-12T11:05:07.827Z","locale":"zh","logo":{"data":{"id":201,"attributes":{"name":"大搜车.png","alternativeText":"大搜车.png","caption":"大搜车.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_大搜车.png","hash":"thumbnail__1e1776bd45","ext":".png","mime":"image/png","width":245,"height":73,"size":5.03,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__1e1776bd45.png"}},"hash":"_1e1776bd45","ext":".png","mime":"image/png","size":7.47,"url":"https://official-media.sphere-ex.com/_1e1776bd45.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:04:51.089Z","updatedAt":"2022-05-12T11:04:51.089Z"}}},"localizations":{"data":[{"id":29,"attributes":{"name":"大搜车","website":null,"createdAt":"2022-05-12T11:05:00.232Z","updatedAt":"2022-05-12T11:05:07.849Z","locale":"en"}}]}}},{"id":31,"attributes":{"name":"当当","website":null,"createdAt":"2022-05-12T11:05:35.672Z","updatedAt":"2022-05-12T11:05:45.516Z","locale":"zh","logo":{"data":{"id":202,"attributes":{"name":"当当.png","alternativeText":"当当.png","caption":"当当.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_当当.png","hash":"thumbnail__454b261869","ext":".png","mime":"image/png","width":245,"height":73,"size":9.01,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__454b261869.png"}},"hash":"_454b261869","ext":".png","mime":"image/png","size":15.73,"url":"https://official-media.sphere-ex.com/_454b261869.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:05:27.557Z","updatedAt":"2022-05-12T11:05:27.557Z"}}},"localizations":{"data":[{"id":32,"attributes":{"name":"当当","website":null,"createdAt":"2022-05-12T11:05:45.489Z","updatedAt":"2022-05-12T11:05:45.489Z","locale":"en"}}]}}},{"id":35,"attributes":{"name":"丁香园","website":null,"createdAt":"2022-05-12T11:06:42.076Z","updatedAt":"2022-05-12T11:07:02.931Z","locale":"zh","logo":{"data":{"id":204,"attributes":{"name":"丁香园.png","alternativeText":"丁香园.png","caption":"丁香园.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_丁香园.png","hash":"thumbnail__bd4781b4c7","ext":".png","mime":"image/png","width":245,"height":73,"size":6.46,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__bd4781b4c7.png"}},"hash":"_bd4781b4c7","ext":".png","mime":"image/png","size":9.79,"url":"https://official-media.sphere-ex.com/_bd4781b4c7.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:06:35.002Z","updatedAt":"2022-05-12T11:06:35.002Z"}}},"localizations":{"data":[{"id":36,"attributes":{"name":"丁香园","website":null,"createdAt":"2022-05-12T11:07:02.905Z","updatedAt":"2022-05-12T11:07:02.905Z","locale":"en"}}]}}},{"id":37,"attributes":{"name":"得物","website":null,"createdAt":"2022-05-12T11:08:13.051Z","updatedAt":"2022-05-12T11:08:25.837Z","locale":"zh","logo":{"data":{"id":203,"attributes":{"name":"得物.png","alternativeText":"得物.png","caption":"得物.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_得物.png","hash":"thumbnail__3625fb8574","ext":".png","mime":"image/png","width":245,"height":73,"size":3.52,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__3625fb8574.png"}},"hash":"_3625fb8574","ext":".png","mime":"image/png","size":3.77,"url":"https://official-media.sphere-ex.com/_3625fb8574.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:06:06.032Z","updatedAt":"2022-05-12T11:06:06.032Z"}}},"localizations":{"data":[{"id":38,"attributes":{"name":"得物","website":null,"createdAt":"2022-05-12T11:08:25.812Z","updatedAt":"2022-05-12T11:08:25.812Z","locale":"en"}}]}}},{"id":40,"attributes":{"name":"叮当快药","website":null,"createdAt":"2022-05-12T11:09:38.353Z","updatedAt":"2022-05-12T11:09:38.353Z","locale":"zh","logo":{"data":{"id":206,"attributes":{"name":"叮当快药.png","alternativeText":"叮当快药.png","caption":"叮当快药.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_叮当快药.png","hash":"thumbnail__0f02ae8949","ext":".png","mime":"image/png","width":245,"height":73,"size":7.88,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__0f02ae8949.png"}},"hash":"_0f02ae8949","ext":".png","mime":"image/png","size":14.81,"url":"https://official-media.sphere-ex.com/_0f02ae8949.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:09:20.787Z","updatedAt":"2022-05-12T11:09:20.787Z"}}},"localizations":{"data":[{"id":39,"attributes":{"name":"叮当快药","website":null,"createdAt":"2022-05-12T11:09:30.322Z","updatedAt":"2022-05-12T11:09:38.381Z","locale":"en"}}]}}},{"id":41,"attributes":{"name":"斗鱼","website":null,"createdAt":"2022-05-12T11:10:11.928Z","updatedAt":"2022-05-12T11:10:22.618Z","locale":"zh","logo":{"data":{"id":207,"attributes":{"name":"斗鱼.png","alternativeText":"斗鱼.png","caption":"斗鱼.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_斗鱼.png","hash":"thumbnail__50476865dc","ext":".png","mime":"image/png","width":245,"height":73,"size":11.3,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__50476865dc.png"}},"hash":"_50476865dc","ext":".png","mime":"image/png","size":22.41,"url":"https://official-media.sphere-ex.com/_50476865dc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:10:03.411Z","updatedAt":"2022-05-12T11:10:03.411Z"}}},"localizations":{"data":[{"id":42,"attributes":{"name":"斗鱼","website":null,"createdAt":"2022-05-12T11:10:22.593Z","updatedAt":"2022-05-12T11:10:22.593Z","locale":"en"}}]}}},{"id":43,"attributes":{"name":"公牛","website":null,"createdAt":"2022-05-12T11:10:47.512Z","updatedAt":"2022-05-12T11:10:57.005Z","locale":"zh","logo":{"data":{"id":208,"attributes":{"name":"公牛.png","alternativeText":"公牛.png","caption":"公牛.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_公牛.png","hash":"thumbnail__f5c6be9842","ext":".png","mime":"image/png","width":245,"height":73,"size":6.26,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__f5c6be9842.png"}},"hash":"_f5c6be9842","ext":".png","mime":"image/png","size":10.15,"url":"https://official-media.sphere-ex.com/_f5c6be9842.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:10:36.578Z","updatedAt":"2022-05-12T11:10:36.578Z"}}},"localizations":{"data":[{"id":44,"attributes":{"name":"公牛","website":null,"createdAt":"2022-05-12T11:10:56.977Z","updatedAt":"2022-05-12T11:10:56.977Z","locale":"en"}}]}}},{"id":45,"attributes":{"name":"海典","website":null,"createdAt":"2022-05-12T11:11:32.952Z","updatedAt":"2022-05-12T11:14:54.887Z","locale":"zh","logo":{"data":{"id":209,"attributes":{"name":"海典.png","alternativeText":"海典.png","caption":"海典.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_海典.png","hash":"thumbnail__ce8f7e0cc1","ext":".png","mime":"image/png","width":245,"height":73,"size":8.02,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ce8f7e0cc1.png"}},"hash":"_ce8f7e0cc1","ext":".png","mime":"image/png","size":10.81,"url":"https://official-media.sphere-ex.com/_ce8f7e0cc1.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.684Z","updatedAt":"2022-05-12T11:11:18.684Z"}}},"localizations":{"data":[{"id":46,"attributes":{"name":"海典","website":null,"createdAt":"2022-05-12T11:11:45.328Z","updatedAt":"2022-05-12T11:14:58.768Z","locale":"en"}}]}}},{"id":47,"attributes":{"name":"广联达","website":null,"createdAt":"2022-05-12T11:11:59.223Z","updatedAt":"2022-05-12T11:12:09.270Z","locale":"zh","logo":{"data":{"id":210,"attributes":{"name":"广联达.png","alternativeText":"广联达.png","caption":"广联达.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_广联达.png","hash":"thumbnail__5b3f63fe0c","ext":".png","mime":"image/png","width":245,"height":73,"size":11.9,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__5b3f63fe0c.png"}},"hash":"_5b3f63fe0c","ext":".png","mime":"image/png","size":24.1,"url":"https://official-media.sphere-ex.com/_5b3f63fe0c.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.691Z","updatedAt":"2022-05-12T11:11:18.691Z"}}},"localizations":{"data":[{"id":48,"attributes":{"name":"广联达","website":null,"createdAt":"2022-05-12T11:12:09.243Z","updatedAt":"2022-05-12T11:12:09.243Z","locale":"en"}}]}}},{"id":49,"attributes":{"name":"海尔消费金融","website":null,"createdAt":"2022-05-12T11:12:29.224Z","updatedAt":"2022-05-12T11:12:39.803Z","locale":"zh","logo":{"data":{"id":211,"attributes":{"name":"海尔.png","alternativeText":"海尔.png","caption":"海尔.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_海尔.png","hash":"thumbnail__21ad0931e1","ext":".png","mime":"image/png","width":245,"height":73,"size":8.32,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__21ad0931e1.png"}},"hash":"_21ad0931e1","ext":".png","mime":"image/png","size":13.4,"url":"https://official-media.sphere-ex.com/_21ad0931e1.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.777Z","updatedAt":"2022-05-12T11:11:18.777Z"}}},"localizations":{"data":[{"id":50,"attributes":{"name":"海尔消费金融","website":null,"createdAt":"2022-05-12T11:12:39.776Z","updatedAt":"2022-05-12T11:12:39.776Z","locale":"en"}}]}}},{"id":51,"attributes":{"name":"瓜子二手车","website":null,"createdAt":"2022-05-12T11:13:02.908Z","updatedAt":"2022-05-12T11:13:19.943Z","locale":"zh","logo":{"data":{"id":212,"attributes":{"name":"瓜子.png","alternativeText":"瓜子.png","caption":"瓜子.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_瓜子.png","hash":"thumbnail__ac83d8efd6","ext":".png","mime":"image/png","width":245,"height":73,"size":11.82,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ac83d8efd6.png"}},"hash":"_ac83d8efd6","ext":".png","mime":"image/png","size":22.1,"url":"https://official-media.sphere-ex.com/_ac83d8efd6.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.862Z","updatedAt":"2022-05-12T11:11:18.862Z"}}},"localizations":{"data":[{"id":52,"attributes":{"name":"瓜子二手车","website":null,"createdAt":"2022-05-12T11:13:19.919Z","updatedAt":"2022-05-12T11:13:19.919Z","locale":"en"}}]}}},{"id":53,"attributes":{"name":"怪兽充电","website":null,"createdAt":"2022-05-12T11:13:38.051Z","updatedAt":"2022-05-12T11:13:46.687Z","locale":"zh","logo":{"data":{"id":213,"attributes":{"name":"怪兽充电.png","alternativeText":"怪兽充电.png","caption":"怪兽充电.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_怪兽充电.png","hash":"thumbnail__a71d67b0e7","ext":".png","mime":"image/png","width":245,"height":73,"size":8.74,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__a71d67b0e7.png"}},"hash":"_a71d67b0e7","ext":".png","mime":"image/png","size":15.71,"url":"https://official-media.sphere-ex.com/_a71d67b0e7.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.863Z","updatedAt":"2022-05-12T11:11:18.863Z"}}},"localizations":{"data":[{"id":54,"attributes":{"name":"怪兽充电","website":null,"createdAt":"2022-05-12T11:13:46.662Z","updatedAt":"2022-05-12T11:13:46.662Z","locale":"en"}}]}}},{"id":55,"attributes":{"name":"海康","website":null,"createdAt":"2022-05-12T11:14:20.838Z","updatedAt":"2022-05-12T11:14:35.835Z","locale":"zh","logo":{"data":{"id":214,"attributes":{"name":"海康威视.png","alternativeText":"海康威视.png","caption":"海康威视.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_海康威视.png","hash":"thumbnail__3fd9901f86","ext":".png","mime":"image/png","width":245,"height":73,"size":6.17,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__3fd9901f86.png"}},"hash":"_3fd9901f86","ext":".png","mime":"image/png","size":8.15,"url":"https://official-media.sphere-ex.com/_3fd9901f86.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:14:12.210Z","updatedAt":"2022-05-12T11:14:12.210Z"}}},"localizations":{"data":[{"id":56,"attributes":{"name":"海康","website":null,"createdAt":"2022-05-12T11:14:35.811Z","updatedAt":"2022-05-12T11:14:35.811Z","locale":"en"}}]}}},{"id":57,"attributes":{"name":"好未来","website":null,"createdAt":"2022-05-12T11:15:53.432Z","updatedAt":"2022-05-12T11:16:04.478Z","locale":"zh","logo":{"data":{"id":215,"attributes":{"name":"好未来.png","alternativeText":"好未来.png","caption":"好未来.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_好未来.png","hash":"thumbnail__d93086d051","ext":".png","mime":"image/png","width":245,"height":73,"size":10.17,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__d93086d051.png"}},"hash":"_d93086d051","ext":".png","mime":"image/png","size":20.34,"url":"https://official-media.sphere-ex.com/_d93086d051.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:15:46.920Z","updatedAt":"2022-05-12T11:15:46.920Z"}}},"localizations":{"data":[{"id":58,"attributes":{"name":"好未来","website":null,"createdAt":"2022-05-12T11:16:04.452Z","updatedAt":"2022-05-12T11:16:04.452Z","locale":"en"}}]}}},{"id":59,"attributes":{"name":"欢聚时代","website":null,"createdAt":"2022-05-12T11:16:21.597Z","updatedAt":"2022-05-12T11:16:27.246Z","locale":"zh","logo":{"data":{"id":216,"attributes":{"name":"欢聚时代.png","alternativeText":"欢聚时代.png","caption":"欢聚时代.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_欢聚时代.png","hash":"thumbnail__b286bdb96d","ext":".png","mime":"image/png","width":245,"height":73,"size":12.22,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b286bdb96d.png"}},"hash":"_b286bdb96d","ext":".png","mime":"image/png","size":22.36,"url":"https://official-media.sphere-ex.com/_b286bdb96d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:16:14.879Z","updatedAt":"2022-05-12T11:16:14.879Z"}}},"localizations":{"data":[{"id":60,"attributes":{"name":"欢聚时代","website":null,"createdAt":"2022-05-12T11:16:27.223Z","updatedAt":"2022-05-12T11:16:27.223Z","locale":"en"}}]}}},{"id":61,"attributes":{"name":"环球网校","website":null,"createdAt":"2022-05-12T11:16:58.746Z","updatedAt":"2022-05-12T11:17:07.952Z","locale":"zh","logo":{"data":{"id":217,"attributes":{"name":"环球网校.png","alternativeText":"环球网校.png","caption":"环球网校.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_环球网校.png","hash":"thumbnail__57f58a8c7b","ext":".png","mime":"image/png","width":245,"height":73,"size":8.77,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__57f58a8c7b.png"}},"hash":"_57f58a8c7b","ext":".png","mime":"image/png","size":15.82,"url":"https://official-media.sphere-ex.com/_57f58a8c7b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:16:46.576Z","updatedAt":"2022-05-12T11:16:46.576Z"}}},"localizations":{"data":[{"id":62,"attributes":{"name":"环球网校","website":null,"createdAt":"2022-05-12T11:17:07.929Z","updatedAt":"2022-05-12T11:17:07.929Z","locale":"en"}}]}}},{"id":63,"attributes":{"name":"货车帮","website":null,"createdAt":"2022-05-12T11:17:31.439Z","updatedAt":"2022-05-12T11:17:37.868Z","locale":"zh","logo":{"data":{"id":218,"attributes":{"name":"货车帮.png","alternativeText":"货车帮.png","caption":"货车帮.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_货车帮.png","hash":"thumbnail__d7cbf73239","ext":".png","mime":"image/png","width":245,"height":73,"size":11.36,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__d7cbf73239.png"}},"hash":"_d7cbf73239","ext":".png","mime":"image/png","size":17.92,"url":"https://official-media.sphere-ex.com/_d7cbf73239.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:17:23.196Z","updatedAt":"2022-05-12T11:17:23.196Z"}}},"localizations":{"data":[{"id":64,"attributes":{"name":"货车帮","website":null,"createdAt":"2022-05-12T11:17:37.845Z","updatedAt":"2022-05-12T11:17:37.845Z","locale":"en"}}]}}},{"id":65,"attributes":{"name":"家视天下","website":null,"createdAt":"2022-05-12T11:18:06.319Z","updatedAt":"2022-05-12T11:18:16.588Z","locale":"zh","logo":{"data":{"id":219,"attributes":{"name":"家视天下.png","alternativeText":"家视天下.png","caption":"家视天下.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_家视天下.png","hash":"thumbnail__69bf270b74","ext":".png","mime":"image/png","width":245,"height":73,"size":5.13,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__69bf270b74.png"}},"hash":"_69bf270b74","ext":".png","mime":"image/png","size":7.15,"url":"https://official-media.sphere-ex.com/_69bf270b74.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:17:54.407Z","updatedAt":"2022-05-12T11:17:54.407Z"}}},"localizations":{"data":[{"id":66,"attributes":{"name":"家视天下","website":null,"createdAt":"2022-05-12T11:18:16.566Z","updatedAt":"2022-05-12T11:18:16.566Z","locale":"en"}}]}}},{"id":67,"attributes":{"name":"建信金科","website":null,"createdAt":"2022-05-12T11:18:42.863Z","updatedAt":"2022-05-12T11:18:49.256Z","locale":"zh","logo":{"data":{"id":220,"attributes":{"name":"建信金科.png","alternativeText":"建信金科.png","caption":"建信金科.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_建信金科.png","hash":"thumbnail__6b2c67ba48","ext":".png","mime":"image/png","width":245,"height":73,"size":9.45,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__6b2c67ba48.png"}},"hash":"_6b2c67ba48","ext":".png","mime":"image/png","size":15.25,"url":"https://official-media.sphere-ex.com/_6b2c67ba48.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:18:33.807Z","updatedAt":"2022-05-12T11:18:33.807Z"}}},"localizations":{"data":[{"id":68,"attributes":{"name":"建信金科","website":null,"createdAt":"2022-05-12T11:18:49.234Z","updatedAt":"2022-05-12T11:18:49.234Z","locale":"en"}}]}}},{"id":69,"attributes":{"name":"京东科技","website":null,"createdAt":"2022-05-12T11:19:09.045Z","updatedAt":"2022-05-12T11:19:17.099Z","locale":"zh","logo":{"data":{"id":221,"attributes":{"name":"京东科技.png","alternativeText":"京东科技.png","caption":"京东科技.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_京东科技.png","hash":"thumbnail__36be828c9c","ext":".png","mime":"image/png","width":245,"height":73,"size":7.44,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__36be828c9c.png"}},"hash":"_36be828c9c","ext":".png","mime":"image/png","size":11.23,"url":"https://official-media.sphere-ex.com/_36be828c9c.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:19:02.366Z","updatedAt":"2022-05-12T11:19:02.366Z"}}},"localizations":{"data":[{"id":70,"attributes":{"name":"京东科技","website":null,"createdAt":"2022-05-12T11:19:17.074Z","updatedAt":"2022-05-12T11:19:17.074Z","locale":"en"}}]}}},{"id":71,"attributes":{"name":"京东物流","website":null,"createdAt":"2022-05-12T11:19:36.772Z","updatedAt":"2022-05-12T11:19:48.204Z","locale":"zh","logo":{"data":{"id":222,"attributes":{"name":"京东物流.png","alternativeText":"京东物流.png","caption":"京东物流.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_京东物流.png","hash":"thumbnail__20b318c172","ext":".png","mime":"image/png","width":245,"height":73,"size":6.21,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__20b318c172.png"}},"hash":"_20b318c172","ext":".png","mime":"image/png","size":5.83,"url":"https://official-media.sphere-ex.com/_20b318c172.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:19:28.897Z","updatedAt":"2022-05-12T11:19:28.897Z"}}},"localizations":{"data":[{"id":72,"attributes":{"name":"京东物流","website":null,"createdAt":"2022-05-12T11:19:48.106Z","updatedAt":"2022-05-12T11:19:48.106Z","locale":"en"}}]}}},{"id":73,"attributes":{"name":"玖富集团","website":null,"createdAt":"2022-05-12T11:20:14.253Z","updatedAt":"2022-05-12T11:20:21.264Z","locale":"zh","logo":{"data":{"id":223,"attributes":{"name":"玖富集团.png","alternativeText":"玖富集团.png","caption":"玖富集团.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_玖富集团.png","hash":"thumbnail__a9a3ec5822","ext":".png","mime":"image/png","width":245,"height":73,"size":7.26,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__a9a3ec5822.png"}},"hash":"_a9a3ec5822","ext":".png","mime":"image/png","size":11.86,"url":"https://official-media.sphere-ex.com/_a9a3ec5822.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:20:00.653Z","updatedAt":"2022-05-12T11:20:00.653Z"}}},"localizations":{"data":[{"id":74,"attributes":{"name":"玖富集团","website":null,"createdAt":"2022-05-12T11:20:21.242Z","updatedAt":"2022-05-12T11:20:21.242Z","locale":"en"}}]}}},{"id":75,"attributes":{"name":"科大讯飞","website":null,"createdAt":"2022-05-12T11:20:39.898Z","updatedAt":"2022-05-12T11:20:45.857Z","locale":"zh","logo":{"data":{"id":224,"attributes":{"name":"科大讯飞.png","alternativeText":"科大讯飞.png","caption":"科大讯飞.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_科大讯飞.png","hash":"thumbnail__840f032a53","ext":".png","mime":"image/png","width":245,"height":73,"size":8.73,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__840f032a53.png"}},"hash":"_840f032a53","ext":".png","mime":"image/png","size":12.8,"url":"https://official-media.sphere-ex.com/_840f032a53.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:20:32.329Z","updatedAt":"2022-05-12T11:20:32.329Z"}}},"localizations":{"data":[{"id":76,"attributes":{"name":"科大讯飞","website":null,"createdAt":"2022-05-12T11:20:45.826Z","updatedAt":"2022-05-12T11:20:45.826Z","locale":"en"}}]}}},{"id":77,"attributes":{"name":"客如云","website":null,"createdAt":"2022-05-12T11:21:06.372Z","updatedAt":"2022-05-12T11:21:12.174Z","locale":"zh","logo":{"data":{"id":225,"attributes":{"name":"客如云.png","alternativeText":"客如云.png","caption":"客如云.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_客如云.png","hash":"thumbnail__9539ee7440","ext":".png","mime":"image/png","width":245,"height":73,"size":5.78,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__9539ee7440.png"}},"hash":"_9539ee7440","ext":".png","mime":"image/png","size":4.81,"url":"https://official-media.sphere-ex.com/_9539ee7440.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:20:57.667Z","updatedAt":"2022-05-12T11:20:57.667Z"}}},"localizations":{"data":[{"id":78,"attributes":{"name":"客如云","website":null,"createdAt":"2022-05-12T11:21:12.112Z","updatedAt":"2022-05-12T11:21:12.112Z","locale":"en"}}]}}},{"id":79,"attributes":{"name":"马上消费","website":null,"createdAt":"2022-05-12T11:21:50.193Z","updatedAt":"2022-05-12T11:22:06.902Z","locale":"zh","logo":{"data":{"id":226,"attributes":{"name":"马上消费.png","alternativeText":"马上消费.png","caption":"马上消费.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_马上消费.png","hash":"thumbnail__96b249b440","ext":".png","mime":"image/png","width":245,"height":73,"size":7.5,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__96b249b440.png"}},"hash":"_96b249b440","ext":".png","mime":"image/png","size":11.76,"url":"https://official-media.sphere-ex.com/_96b249b440.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.147Z","updatedAt":"2022-05-12T11:21:41.147Z"}}},"localizations":{"data":[{"id":80,"attributes":{"name":"马上消费","website":null,"createdAt":"2022-05-12T11:22:06.877Z","updatedAt":"2022-05-12T11:22:06.877Z","locale":"en"}}]}}},{"id":81,"attributes":{"name":"联通云","website":null,"createdAt":"2022-05-12T11:22:25.376Z","updatedAt":"2022-05-12T11:22:36.391Z","locale":"zh","logo":{"data":{"id":227,"attributes":{"name":"联通云.png","alternativeText":"联通云.png","caption":"联通云.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_联通云.png","hash":"thumbnail__b834778d2b","ext":".png","mime":"image/png","width":245,"height":73,"size":8.03,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b834778d2b.png"}},"hash":"_b834778d2b","ext":".png","mime":"image/png","size":14.26,"url":"https://official-media.sphere-ex.com/_b834778d2b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.228Z","updatedAt":"2022-05-12T11:21:41.228Z"}}},"localizations":{"data":[{"id":82,"attributes":{"name":"联通云","website":null,"createdAt":"2022-05-12T11:22:36.369Z","updatedAt":"2022-05-12T11:22:36.369Z","locale":"en"}}]}}},{"id":83,"attributes":{"name":"马蜂窝","website":null,"createdAt":"2022-05-12T11:22:56.870Z","updatedAt":"2022-05-12T11:23:07.683Z","locale":"zh","logo":{"data":{"id":228,"attributes":{"name":"马蜂窝.png","alternativeText":"马蜂窝.png","caption":"马蜂窝.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_马蜂窝.png","hash":"thumbnail__3c4a989dc8","ext":".png","mime":"image/png","width":245,"height":73,"size":8.87,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__3c4a989dc8.png"}},"hash":"_3c4a989dc8","ext":".png","mime":"image/png","size":15.92,"url":"https://official-media.sphere-ex.com/_3c4a989dc8.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.300Z","updatedAt":"2022-05-12T11:21:41.300Z"}}},"localizations":{"data":[{"id":84,"attributes":{"name":"马蜂窝","website":null,"createdAt":"2022-05-12T11:23:07.661Z","updatedAt":"2022-05-12T11:23:07.661Z","locale":"en"}}]}}},{"id":85,"attributes":{"name":"快捷通","website":null,"createdAt":"2022-05-12T11:23:30.037Z","updatedAt":"2022-05-12T11:23:37.812Z","locale":"zh","logo":{"data":{"id":229,"attributes":{"name":"快捷通.png","alternativeText":"快捷通.png","caption":"快捷通.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_快捷通.png","hash":"thumbnail__7a0f85a547","ext":".png","mime":"image/png","width":245,"height":73,"size":7.73,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__7a0f85a547.png"}},"hash":"_7a0f85a547","ext":".png","mime":"image/png","size":11.36,"url":"https://official-media.sphere-ex.com/_7a0f85a547.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.388Z","updatedAt":"2022-05-12T11:21:41.388Z"}}},"localizations":{"data":[{"id":86,"attributes":{"name":"快捷通","website":null,"createdAt":"2022-05-12T11:23:37.789Z","updatedAt":"2022-05-12T11:23:37.789Z","locale":"en"}}]}}},{"id":87,"attributes":{"name":"理想","website":null,"createdAt":"2022-05-12T11:23:56.121Z","updatedAt":"2022-05-12T11:24:03.523Z","locale":"zh","logo":{"data":{"id":230,"attributes":{"name":"理想.png","alternativeText":"理想.png","caption":"理想.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_理想.png","hash":"thumbnail__e076874d2d","ext":".png","mime":"image/png","width":245,"height":73,"size":6.59,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__e076874d2d.png"}},"hash":"_e076874d2d","ext":".png","mime":"image/png","size":11.85,"url":"https://official-media.sphere-ex.com/_e076874d2d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.511Z","updatedAt":"2022-05-12T11:21:41.511Z"}}},"localizations":{"data":[{"id":88,"attributes":{"name":"理想","website":null,"createdAt":"2022-05-12T11:24:03.499Z","updatedAt":"2022-05-12T11:24:03.499Z","locale":"en"}}]}}},{"id":89,"attributes":{"name":"每日优鲜","website":null,"createdAt":"2022-05-12T11:30:58.535Z","updatedAt":"2022-05-12T11:31:06.422Z","locale":"zh","logo":{"data":{"id":231,"attributes":{"name":"每日优鲜.png","alternativeText":"每日优鲜.png","caption":"每日优鲜.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_每日优鲜.png","hash":"thumbnail__8049aa0985","ext":".png","mime":"image/png","width":245,"height":73,"size":8.03,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8049aa0985.png"}},"hash":"_8049aa0985","ext":".png","mime":"image/png","size":12.69,"url":"https://official-media.sphere-ex.com/_8049aa0985.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:30:49.874Z","updatedAt":"2022-05-12T11:30:49.874Z"}}},"localizations":{"data":[{"id":90,"attributes":{"name":"每日优鲜","website":null,"createdAt":"2022-05-12T11:31:06.401Z","updatedAt":"2022-05-12T11:31:06.401Z","locale":"en"}}]}}},{"id":92,"attributes":{"name":"中国民生银行","website":null,"createdAt":"2022-05-13T08:53:45.974Z","updatedAt":"2022-05-13T08:53:45.974Z","locale":"zh","logo":{"data":{"id":232,"attributes":{"name":"民生银行.png","alternativeText":"民生银行.png","caption":"民生银行.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_民生银行.png","hash":"thumbnail__6fd163ced8","ext":".png","mime":"image/png","width":245,"height":73,"size":12.39,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__6fd163ced8.png"}},"hash":"_6fd163ced8","ext":".png","mime":"image/png","size":23.87,"url":"https://official-media.sphere-ex.com/_6fd163ced8.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:53:14.337Z","updatedAt":"2022-05-13T08:53:14.337Z"}}},"localizations":{"data":[{"id":91,"attributes":{"name":"中国民生银行","website":null,"createdAt":"2022-05-13T08:53:26.029Z","updatedAt":"2022-05-13T08:53:46.005Z","locale":"en"}}]}}},{"id":93,"attributes":{"name":"搜狐新闻","website":null,"createdAt":"2022-05-13T08:54:19.289Z","updatedAt":"2022-05-13T08:54:28.945Z","locale":"zh","logo":{"data":{"id":234,"attributes":{"name":"搜狐新闻.png","alternativeText":"搜狐新闻.png","caption":"搜狐新闻.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_搜狐新闻.png","hash":"thumbnail__f06beae44d","ext":".png","mime":"image/png","width":245,"height":73,"size":8.08,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__f06beae44d.png"}},"hash":"_f06beae44d","ext":".png","mime":"image/png","size":14.43,"url":"https://official-media.sphere-ex.com/_f06beae44d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.179Z","updatedAt":"2022-05-13T08:54:12.179Z"}}},"localizations":{"data":[{"id":94,"attributes":{"name":"搜狐新闻","website":null,"createdAt":"2022-05-13T08:54:28.895Z","updatedAt":"2022-05-13T08:54:28.895Z","locale":"en"}}]}}},{"id":95,"attributes":{"name":"汽车之家","website":null,"createdAt":"2022-05-13T08:54:40.671Z","updatedAt":"2022-05-13T08:54:51.370Z","locale":"zh","logo":{"data":{"id":233,"attributes":{"name":"汽车之家.png","alternativeText":"汽车之家.png","caption":"汽车之家.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_汽车之家.png","hash":"thumbnail__52e1c6df2d","ext":".png","mime":"image/png","width":245,"height":73,"size":11.84,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__52e1c6df2d.png"}},"hash":"_52e1c6df2d","ext":".png","mime":"image/png","size":20.7,"url":"https://official-media.sphere-ex.com/_52e1c6df2d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.154Z","updatedAt":"2022-05-13T08:54:12.154Z"}}},"localizations":{"data":[{"id":96,"attributes":{"name":"汽车之家","website":null,"createdAt":"2022-05-13T08:54:51.347Z","updatedAt":"2022-05-13T08:54:51.347Z","locale":"en"}}]}}},{"id":97,"attributes":{"name":"闪送","website":null,"createdAt":"2022-05-13T08:55:04.149Z","updatedAt":"2022-05-13T08:55:10.674Z","locale":"zh","logo":{"data":{"id":235,"attributes":{"name":"闪送.png","alternativeText":"闪送.png","caption":"闪送.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_闪送.png","hash":"thumbnail__43705d7b17","ext":".png","mime":"image/png","width":245,"height":73,"size":15.58,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__43705d7b17.png"}},"hash":"_43705d7b17","ext":".png","mime":"image/png","size":31.84,"url":"https://official-media.sphere-ex.com/_43705d7b17.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.223Z","updatedAt":"2022-05-13T08:54:12.223Z"}}},"localizations":{"data":[{"id":98,"attributes":{"name":"闪送","website":null,"createdAt":"2022-05-13T08:55:10.617Z","updatedAt":"2022-05-13T08:55:10.617Z","locale":"en"}}]}}},{"id":99,"attributes":{"name":"三只松鼠","website":null,"createdAt":"2022-05-13T08:55:21.083Z","updatedAt":"2022-05-13T08:55:28.282Z","locale":"zh","logo":{"data":{"id":236,"attributes":{"name":"三只松鼠.png","alternativeText":"三只松鼠.png","caption":"三只松鼠.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_三只松鼠.png","hash":"thumbnail__8c33dfeb6b","ext":".png","mime":"image/png","width":245,"height":73,"size":11.61,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8c33dfeb6b.png"}},"hash":"_8c33dfeb6b","ext":".png","mime":"image/png","size":22.67,"url":"https://official-media.sphere-ex.com/_8c33dfeb6b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.230Z","updatedAt":"2022-05-13T08:54:12.230Z"}}},"localizations":{"data":[{"id":100,"attributes":{"name":"三只松鼠","website":null,"createdAt":"2022-05-13T08:55:28.254Z","updatedAt":"2022-05-13T08:55:28.254Z","locale":"en"}}]}}},{"id":101,"attributes":{"name":"首汽约车","website":null,"createdAt":"2022-05-13T08:55:44.940Z","updatedAt":"2022-05-13T08:55:52.567Z","locale":"zh","logo":{"data":{"id":237,"attributes":{"name":"首汽约车.png","alternativeText":"首汽约车.png","caption":"首汽约车.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_首汽约车.png","hash":"thumbnail__ca02385dfc","ext":".png","mime":"image/png","width":245,"height":73,"size":10.92,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ca02385dfc.png"}},"hash":"_ca02385dfc","ext":".png","mime":"image/png","size":21.38,"url":"https://official-media.sphere-ex.com/_ca02385dfc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.374Z","updatedAt":"2022-05-13T08:54:12.374Z"}}},"localizations":{"data":[{"id":102,"attributes":{"name":"首汽约车","website":null,"createdAt":"2022-05-13T08:55:52.546Z","updatedAt":"2022-05-13T08:55:52.546Z","locale":"en"}}]}}},{"id":103,"attributes":{"name":"腾讯音乐人","website":null,"createdAt":"2022-05-13T08:56:30.799Z","updatedAt":"2022-05-13T08:56:37.803Z","locale":"zh","logo":{"data":{"id":238,"attributes":{"name":"腾讯音乐人.png","alternativeText":"腾讯音乐人.png","caption":"腾讯音乐人.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_腾讯音乐人.png","hash":"thumbnail__691253dfe6","ext":".png","mime":"image/png","width":245,"height":73,"size":7.17,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__691253dfe6.png"}},"hash":"_691253dfe6","ext":".png","mime":"image/png","size":10.04,"url":"https://official-media.sphere-ex.com/_691253dfe6.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.308Z","updatedAt":"2022-05-13T08:56:21.308Z"}}},"localizations":{"data":[{"id":104,"attributes":{"name":"腾讯音乐人","website":null,"createdAt":"2022-05-13T08:56:37.773Z","updatedAt":"2022-05-13T08:56:37.773Z","locale":"en"}}]}}},{"id":105,"attributes":{"name":"豌豆公主","website":null,"createdAt":"2022-05-13T08:56:49.892Z","updatedAt":"2022-05-13T08:56:56.478Z","locale":"zh","logo":{"data":{"id":239,"attributes":{"name":"豌豆公主.png","alternativeText":"豌豆公主.png","caption":"豌豆公主.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_豌豆公主.png","hash":"thumbnail__87d194643d","ext":".png","mime":"image/png","width":245,"height":73,"size":6.47,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__87d194643d.png"}},"hash":"_87d194643d","ext":".png","mime":"image/png","size":10.93,"url":"https://official-media.sphere-ex.com/_87d194643d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.441Z","updatedAt":"2022-05-13T08:56:21.441Z"}}},"localizations":{"data":[{"id":106,"attributes":{"name":"豌豆公主","website":null,"createdAt":"2022-05-13T08:56:56.457Z","updatedAt":"2022-05-13T08:56:56.457Z","locale":"en"}}]}}},{"id":107,"attributes":{"name":"天涯社区","website":null,"createdAt":"2022-05-13T08:57:19.133Z","updatedAt":"2022-05-13T11:14:57.190Z","locale":"zh","logo":{"data":{"id":240,"attributes":{"name":"天涯社区.png","alternativeText":"天涯社区.png","caption":"天涯社区.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_天涯社区.png","hash":"thumbnail__34fdcd8ea3","ext":".png","mime":"image/png","width":245,"height":73,"size":17.91,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__34fdcd8ea3.png"}},"hash":"_34fdcd8ea3","ext":".png","mime":"image/png","size":36.45,"url":"https://official-media.sphere-ex.com/_34fdcd8ea3.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.445Z","updatedAt":"2022-05-13T08:56:21.445Z"}}},"localizations":{"data":[{"id":124,"attributes":{"name":"天涯社区","website":null,"createdAt":"2022-05-13T11:14:57.164Z","updatedAt":"2022-05-13T11:14:57.164Z","locale":"en"}}]}}},{"id":108,"attributes":{"name":"特微智能","website":null,"createdAt":"2022-05-13T11:06:01.596Z","updatedAt":"2022-05-13T11:06:26.584Z","locale":"zh","logo":{"data":{"id":241,"attributes":{"name":"特微智能.png","alternativeText":"特微智能.png","caption":"特微智能.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_特微智能.png","hash":"thumbnail__a3819c29c7","ext":".png","mime":"image/png","width":245,"height":73,"size":10.14,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__a3819c29c7.png"}},"hash":"_a3819c29c7","ext":".png","mime":"image/png","size":16.2,"url":"https://official-media.sphere-ex.com/_a3819c29c7.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.461Z","updatedAt":"2022-05-13T08:56:21.461Z"}}},"localizations":{"data":[{"id":109,"attributes":{"name":"特微智能","website":null,"createdAt":"2022-05-13T11:06:26.555Z","updatedAt":"2022-05-13T11:06:26.555Z","locale":"en"}}]}}},{"id":110,"attributes":{"name":"甜橙金融","website":null,"createdAt":"2022-05-13T11:06:40.170Z","updatedAt":"2022-05-13T11:06:50.639Z","locale":"zh","logo":{"data":{"id":242,"attributes":{"name":"甜橙金融.png","alternativeText":"甜橙金融.png","caption":"甜橙金融.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_甜橙金融.png","hash":"thumbnail__448c66753b","ext":".png","mime":"image/png","width":245,"height":73,"size":14.46,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__448c66753b.png"}},"hash":"_448c66753b","ext":".png","mime":"image/png","size":27.59,"url":"https://official-media.sphere-ex.com/_448c66753b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.476Z","updatedAt":"2022-05-13T08:56:21.476Z"}}},"localizations":{"data":[{"id":111,"attributes":{"name":"甜橙金融","website":null,"createdAt":"2022-05-13T11:06:50.620Z","updatedAt":"2022-05-13T11:06:50.620Z","locale":"en"}}]}}},{"id":112,"attributes":{"name":"网易游戏","website":null,"createdAt":"2022-05-13T11:07:17.490Z","updatedAt":"2022-05-13T11:07:27.108Z","locale":"zh","logo":{"data":{"id":243,"attributes":{"name":"网易游戏.png","alternativeText":"网易游戏.png","caption":"网易游戏.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_网易游戏.png","hash":"thumbnail__6c9d91cfde","ext":".png","mime":"image/png","width":245,"height":73,"size":14.59,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__6c9d91cfde.png"}},"hash":"_6c9d91cfde","ext":".png","mime":"image/png","size":30.86,"url":"https://official-media.sphere-ex.com/_6c9d91cfde.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:07:10.149Z","updatedAt":"2022-05-13T11:07:10.149Z"}}},"localizations":{"data":[{"id":113,"attributes":{"name":"网易游戏","website":null,"createdAt":"2022-05-13T11:07:27.085Z","updatedAt":"2022-05-13T11:07:27.085Z","locale":"en"}}]}}},{"id":114,"attributes":{"name":"唯品会","website":null,"createdAt":"2022-05-13T11:07:38.182Z","updatedAt":"2022-05-13T11:07:47.075Z","locale":"zh","logo":{"data":{"id":244,"attributes":{"name":"唯品会.png","alternativeText":"唯品会.png","caption":"唯品会.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_唯品会.png","hash":"thumbnail__73c4ab0fa5","ext":".png","mime":"image/png","width":245,"height":73,"size":7.59,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__73c4ab0fa5.png"}},"hash":"_73c4ab0fa5","ext":".png","mime":"image/png","size":9.44,"url":"https://official-media.sphere-ex.com/_73c4ab0fa5.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:07:10.159Z","updatedAt":"2022-05-13T11:07:10.159Z"}}},"localizations":{"data":[{"id":115,"attributes":{"name":"唯品会","website":null,"createdAt":"2022-05-13T11:07:47.052Z","updatedAt":"2022-05-13T11:07:47.052Z","locale":"en"}}]}}},{"id":116,"attributes":{"name":"携程","website":null,"createdAt":"2022-05-13T11:10:23.100Z","updatedAt":"2022-05-13T11:10:33.504Z","locale":"zh","logo":{"data":{"id":245,"attributes":{"name":"携程.png","alternativeText":"携程.png","caption":"携程.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_携程.png","hash":"thumbnail__b86b92e821","ext":".png","mime":"image/png","width":245,"height":73,"size":10.25,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b86b92e821.png"}},"hash":"_b86b92e821","ext":".png","mime":"image/png","size":17.88,"url":"https://official-media.sphere-ex.com/_b86b92e821.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:10:15.339Z","updatedAt":"2022-05-13T11:10:15.339Z"}}},"localizations":{"data":[{"id":117,"attributes":{"name":"携程","website":null,"createdAt":"2022-05-13T11:10:33.475Z","updatedAt":"2022-05-13T11:10:33.475Z","locale":"en"}}]}}},{"id":118,"attributes":{"name":"易车","website":null,"createdAt":"2022-05-13T11:13:25.517Z","updatedAt":"2022-05-13T11:13:35.381Z","locale":"zh","logo":{"data":{"id":246,"attributes":{"name":"易车.png","alternativeText":"易车.png","caption":"易车.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_易车.png","hash":"thumbnail__e0cabfed8a","ext":".png","mime":"image/png","width":245,"height":73,"size":9.82,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__e0cabfed8a.png"}},"hash":"_e0cabfed8a","ext":".png","mime":"image/png","size":19.88,"url":"https://official-media.sphere-ex.com/_e0cabfed8a.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.094Z","updatedAt":"2022-05-13T11:13:19.094Z"}}},"localizations":{"data":[{"id":119,"attributes":{"name":"易车","website":null,"createdAt":"2022-05-13T11:13:35.354Z","updatedAt":"2022-05-13T11:13:35.354Z","locale":"en"}}]}}},{"id":120,"attributes":{"name":"云学堂","website":null,"createdAt":"2022-05-13T11:13:46.465Z","updatedAt":"2022-05-13T11:13:56.133Z","locale":"zh","logo":{"data":{"id":247,"attributes":{"name":"云学堂.png","alternativeText":"云学堂.png","caption":"云学堂.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_云学堂.png","hash":"thumbnail__38d46e9c1f","ext":".png","mime":"image/png","width":245,"height":73,"size":9.16,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__38d46e9c1f.png"}},"hash":"_38d46e9c1f","ext":".png","mime":"image/png","size":13.93,"url":"https://official-media.sphere-ex.com/_38d46e9c1f.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.212Z","updatedAt":"2022-05-13T11:13:19.212Z"}}},"localizations":{"data":[{"id":121,"attributes":{"name":"云学堂","website":null,"createdAt":"2022-05-13T11:13:56.105Z","updatedAt":"2022-05-13T11:13:56.105Z","locale":"en"}}]}}},{"id":122,"attributes":{"name":"韵达","website":null,"createdAt":"2022-05-13T11:14:22.755Z","updatedAt":"2022-05-13T11:14:30.758Z","locale":"zh","logo":{"data":{"id":248,"attributes":{"name":"韵达.png","alternativeText":"韵达.png","caption":"韵达.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_韵达.png","hash":"thumbnail__d887641689","ext":".png","mime":"image/png","width":245,"height":73,"size":5.93,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__d887641689.png"}},"hash":"_d887641689","ext":".png","mime":"image/png","size":5.19,"url":"https://official-media.sphere-ex.com/_d887641689.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.280Z","updatedAt":"2022-05-13T11:13:19.280Z"}}},"localizations":{"data":[{"id":123,"attributes":{"name":"韵达","website":null,"createdAt":"2022-05-13T11:14:30.735Z","updatedAt":"2022-05-13T11:14:30.735Z","locale":"en"}}]}}},{"id":125,"attributes":{"name":"元气森林","website":null,"createdAt":"2022-05-13T11:15:18.862Z","updatedAt":"2022-05-13T11:15:29.267Z","locale":"zh","logo":{"data":{"id":249,"attributes":{"name":"元气森林.png","alternativeText":"元气森林.png","caption":"元气森林.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_元气森林.png","hash":"thumbnail__13df5999cb","ext":".png","mime":"image/png","width":245,"height":73,"size":5.21,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__13df5999cb.png"}},"hash":"_13df5999cb","ext":".png","mime":"image/png","size":9.91,"url":"https://official-media.sphere-ex.com/_13df5999cb.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.354Z","updatedAt":"2022-05-13T11:13:19.354Z"}}},"localizations":{"data":[{"id":126,"attributes":{"name":"元气森林","website":null,"createdAt":"2022-05-13T11:15:29.243Z","updatedAt":"2022-05-13T11:15:29.243Z","locale":"en"}}]}}},{"id":127,"attributes":{"name":"中通快递","website":null,"createdAt":"2022-05-13T11:16:17.997Z","updatedAt":"2022-05-13T11:16:29.091Z","locale":"zh","logo":{"data":{"id":250,"attributes":{"name":"中通快递.png","alternativeText":"中通快递.png","caption":"中通快递.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_中通快递.png","hash":"thumbnail__dfc99996ce","ext":".png","mime":"image/png","width":245,"height":73,"size":8.56,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__dfc99996ce.png"}},"hash":"_dfc99996ce","ext":".png","mime":"image/png","size":15.26,"url":"https://official-media.sphere-ex.com/_dfc99996ce.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:10.523Z","updatedAt":"2022-05-13T11:16:10.523Z"}}},"localizations":{"data":[{"id":128,"attributes":{"name":"中通快递","website":null,"createdAt":"2022-05-13T11:16:29.062Z","updatedAt":"2022-05-13T11:16:29.062Z","locale":"en"}}]}}},{"id":129,"attributes":{"name":"bilibili","website":null,"createdAt":"2022-05-13T11:16:55.526Z","updatedAt":"2022-05-13T11:17:02.244Z","locale":"zh","logo":{"data":{"id":251,"attributes":{"name":"bilibili.png","alternativeText":"bilibili.png","caption":"bilibili.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_bilibili.png","hash":"thumbnail_bilibili_75aa2c0654","ext":".png","mime":"image/png","width":245,"height":73,"size":8.45,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_bilibili_75aa2c0654.png"}},"hash":"bilibili_75aa2c0654","ext":".png","mime":"image/png","size":14.23,"url":"https://official-media.sphere-ex.com/bilibili_75aa2c0654.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.177Z","updatedAt":"2022-05-13T11:16:47.177Z"}}},"localizations":{"data":[{"id":130,"attributes":{"name":"bilibili","website":null,"createdAt":"2022-05-13T11:17:02.221Z","updatedAt":"2022-05-13T11:17:02.221Z","locale":"en"}}]}}},{"id":131,"attributes":{"name":"yaduo","website":null,"createdAt":"2022-05-13T11:17:14.350Z","updatedAt":"2022-05-13T11:17:25.860Z","locale":"zh","logo":{"data":{"id":252,"attributes":{"name":"ATOUR.png","alternativeText":"ATOUR.png","caption":"ATOUR.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_ATOUR.png","hash":"thumbnail_ATOUR_43065721dc","ext":".png","mime":"image/png","width":245,"height":73,"size":3.9,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_ATOUR_43065721dc.png"}},"hash":"ATOUR_43065721dc","ext":".png","mime":"image/png","size":6.94,"url":"https://official-media.sphere-ex.com/ATOUR_43065721dc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.243Z","updatedAt":"2022-05-13T11:16:47.243Z"}}},"localizations":{"data":[{"id":132,"attributes":{"name":"yaduo","website":null,"createdAt":"2022-05-13T11:17:25.836Z","updatedAt":"2022-05-13T11:17:25.836Z","locale":"en"}}]}}},{"id":133,"attributes":{"name":"中移金融科技","website":null,"createdAt":"2022-05-13T11:17:55.006Z","updatedAt":"2022-05-13T11:18:01.693Z","locale":"zh","logo":{"data":{"id":253,"attributes":{"name":"中移金融科技.png","alternativeText":"中移金融科技.png","caption":"中移金融科技.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_中移金融科技.png","hash":"thumbnail__8be830fc07","ext":".png","mime":"image/png","width":245,"height":73,"size":9.7,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8be830fc07.png"}},"hash":"_8be830fc07","ext":".png","mime":"image/png","size":14.26,"url":"https://official-media.sphere-ex.com/_8be830fc07.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.279Z","updatedAt":"2022-05-13T11:16:47.279Z"}}},"localizations":{"data":[{"id":134,"attributes":{"name":"中移金融科技","website":null,"createdAt":"2022-05-13T11:18:01.671Z","updatedAt":"2022-05-13T11:18:01.671Z","locale":"en"}}]}}},{"id":135,"attributes":{"name":"转转","website":null,"createdAt":"2022-05-13T11:18:11.675Z","updatedAt":"2022-05-13T11:18:17.664Z","locale":"zh","logo":{"data":{"id":255,"attributes":{"name":"转转.png","alternativeText":"转转.png","caption":"转转.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_转转.png","hash":"thumbnail__03fdcefd4f","ext":".png","mime":"image/png","width":245,"height":73,"size":8.53,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__03fdcefd4f.png"}},"hash":"_03fdcefd4f","ext":".png","mime":"image/png","size":14.8,"url":"https://official-media.sphere-ex.com/_03fdcefd4f.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.319Z","updatedAt":"2022-05-13T11:16:47.319Z"}}},"localizations":{"data":[{"id":136,"attributes":{"name":"转转","website":null,"createdAt":"2022-05-13T11:18:17.642Z","updatedAt":"2022-05-13T11:18:17.642Z","locale":"en"}}]}}},{"id":137,"attributes":{"name":"CIBN","website":null,"createdAt":"2022-05-13T11:18:31.316Z","updatedAt":"2022-05-13T11:18:42.136Z","locale":"zh","logo":{"data":{"id":254,"attributes":{"name":"CIBN.png","alternativeText":"CIBN.png","caption":"CIBN.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_CIBN.png","hash":"thumbnail_CIBN_f326b4bb6e","ext":".png","mime":"image/png","width":245,"height":73,"size":10.91,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_CIBN_f326b4bb6e.png"}},"hash":"CIBN_f326b4bb6e","ext":".png","mime":"image/png","size":17.42,"url":"https://official-media.sphere-ex.com/CIBN_f326b4bb6e.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.319Z","updatedAt":"2022-05-13T11:16:47.319Z"}}},"localizations":{"data":[{"id":138,"attributes":{"name":"CIBN","website":null,"createdAt":"2022-05-13T11:18:42.111Z","updatedAt":"2022-05-13T11:18:42.111Z","locale":"en"}}]}}},{"id":139,"attributes":{"name":"TCL","website":null,"createdAt":"2022-05-13T11:19:06.784Z","updatedAt":"2022-05-13T11:19:13.669Z","locale":"zh","logo":{"data":{"id":256,"attributes":{"name":"TCL.png","alternativeText":"TCL.png","caption":"TCL.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_TCL.png","hash":"thumbnail_TCL_7d13dc3257","ext":".png","mime":"image/png","width":245,"height":73,"size":3.37,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_TCL_7d13dc3257.png"}},"hash":"TCL_7d13dc3257","ext":".png","mime":"image/png","size":4.61,"url":"https://official-media.sphere-ex.com/TCL_7d13dc3257.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.724Z","updatedAt":"2022-05-13T11:18:57.724Z"}}},"localizations":{"data":[{"id":140,"attributes":{"name":"TCL","website":null,"createdAt":"2022-05-13T11:19:13.648Z","updatedAt":"2022-05-13T11:19:13.648Z","locale":"en"}}]}}},{"id":141,"attributes":{"name":"SOUL","website":null,"createdAt":"2022-05-13T11:19:28.899Z","updatedAt":"2022-05-13T11:19:35.488Z","locale":"zh","logo":{"data":{"id":257,"attributes":{"name":"Soul.png","alternativeText":"Soul.png","caption":"Soul.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_Soul.png","hash":"thumbnail_Soul_d4e65f038d","ext":".png","mime":"image/png","width":245,"height":73,"size":7.48,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_Soul_d4e65f038d.png"}},"hash":"Soul_d4e65f038d","ext":".png","mime":"image/png","size":13.21,"url":"https://official-media.sphere-ex.com/Soul_d4e65f038d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.791Z","updatedAt":"2022-05-13T11:18:57.791Z"}}},"localizations":{"data":[{"id":142,"attributes":{"name":"SOUL","website":null,"createdAt":"2022-05-13T11:19:35.462Z","updatedAt":"2022-05-13T11:19:35.462Z","locale":"en"}}]}}},{"id":143,"attributes":{"name":"vivo","website":null,"createdAt":"2022-05-13T11:19:50.897Z","updatedAt":"2022-05-13T11:19:57.357Z","locale":"zh","logo":{"data":{"id":258,"attributes":{"name":"vivo.png","alternativeText":"vivo.png","caption":"vivo.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_vivo.png","hash":"thumbnail_vivo_5b4a903f3b","ext":".png","mime":"image/png","width":245,"height":73,"size":7.7,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_vivo_5b4a903f3b.png"}},"hash":"vivo_5b4a903f3b","ext":".png","mime":"image/png","size":15.34,"url":"https://official-media.sphere-ex.com/vivo_5b4a903f3b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.796Z","updatedAt":"2022-05-13T11:18:57.796Z"}}},"localizations":{"data":[{"id":144,"attributes":{"name":"vivo","website":null,"createdAt":"2022-05-13T11:19:57.336Z","updatedAt":"2022-05-13T11:19:57.336Z","locale":"en"}}]}}},{"id":145,"attributes":{"name":"OPPO","website":null,"createdAt":"2022-05-13T11:20:10.065Z","updatedAt":"2022-05-13T11:20:15.977Z","locale":"zh","logo":{"data":{"id":259,"attributes":{"name":"OPPO.png","alternativeText":"OPPO.png","caption":"OPPO.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_OPPO.png","hash":"thumbnail_OPPO_2a3767d1ca","ext":".png","mime":"image/png","width":245,"height":73,"size":4.3,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_OPPO_2a3767d1ca.png"}},"hash":"OPPO_2a3767d1ca","ext":".png","mime":"image/png","size":5.57,"url":"https://official-media.sphere-ex.com/OPPO_2a3767d1ca.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.906Z","updatedAt":"2022-05-13T11:18:57.906Z"}}},"localizations":{"data":[{"id":146,"attributes":{"name":"OPPO","website":null,"createdAt":"2022-05-13T11:20:15.954Z","updatedAt":"2022-05-13T11:20:15.954Z","locale":"en"}}]}}},{"id":147,"attributes":{"name":"Keep","website":null,"createdAt":"2022-05-13T11:20:27.179Z","updatedAt":"2022-05-13T11:20:32.964Z","locale":"zh","logo":{"data":{"id":260,"attributes":{"name":"Keep.png","alternativeText":"Keep.png","caption":"Keep.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_Keep.png","hash":"thumbnail_Keep_49456c2a4a","ext":".png","mime":"image/png","width":245,"height":73,"size":9.44,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_Keep_49456c2a4a.png"}},"hash":"Keep_49456c2a4a","ext":".png","mime":"image/png","size":16.24,"url":"https://official-media.sphere-ex.com/Keep_49456c2a4a.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.922Z","updatedAt":"2022-05-13T11:18:57.922Z"}}},"localizations":{"data":[{"id":148,"attributes":{"name":"Keep","website":null,"createdAt":"2022-05-13T11:20:32.939Z","updatedAt":"2022-05-13T11:20:32.939Z","locale":"en"}}]}}},{"id":150,"attributes":{"name":"平安银行","website":null,"createdAt":"2022-05-16T02:41:12.800Z","updatedAt":"2022-05-16T02:41:12.800Z","locale":"zh","logo":{"data":{"id":261,"attributes":{"name":"平安银行.png","alternativeText":"平安银行.png","caption":"平安银行.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_平安银行.png","hash":"thumbnail__5e1b99ec05","ext":".png","mime":"image/png","width":245,"height":73,"size":9.97,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__5e1b99ec05.png"}},"hash":"_5e1b99ec05","ext":".png","mime":"image/png","size":13.62,"url":"https://official-media.sphere-ex.com/_5e1b99ec05.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-05-16T02:40:48.928Z","updatedAt":"2022-05-16T02:40:48.928Z"}}},"localizations":{"data":[{"id":149,"attributes":{"name":"平安银行","website":null,"createdAt":"2022-05-16T02:40:57.467Z","updatedAt":"2022-05-16T02:41:12.840Z","locale":"en"}}]}}},{"id":152,"attributes":{"name":"人大金仓","website":null,"createdAt":"2022-10-11T06:04:24.860Z","updatedAt":"2022-10-11T06:04:24.860Z","locale":"zh","logo":{"data":{"id":404,"attributes":{"name":"人大金仓.png","alternativeText":"人大金仓.png","caption":"人大金仓.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_人大金仓.png","hash":"thumbnail__be56b73ca3","ext":".png","mime":"image/png","width":245,"height":73,"size":8.99,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail__be56b73ca3.png"}},"hash":"_be56b73ca3","ext":".png","mime":"image/png","size":15.25,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/_be56b73ca3.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-10-11T06:01:39.860Z","updatedAt":"2022-10-11T06:01:39.860Z"}}},"localizations":{"data":[{"id":151,"attributes":{"name":"人大金仓","website":null,"createdAt":"2022-10-11T06:04:09.036Z","updatedAt":"2022-10-11T06:04:24.888Z","locale":"en"}}]}}}],"meta":{"pagination":{"start":0,"limit":100,"total":69}}},"en":{"data":[{"id":14,"attributes":{"name":"58","website":null,"createdAt":"2022-05-12T10:00:08.148Z","updatedAt":"2022-05-12T10:00:08.148Z","locale":"en","logo":{"data":{"id":192,"attributes":{"name":"58同城.png","alternativeText":"58同城.png","caption":"58同城.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_58同城.png","hash":"thumbnail_58_c426aa4c6c","ext":".png","mime":"image/png","width":245,"height":73,"size":7.56,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_58_c426aa4c6c.png"}},"hash":"58_c426aa4c6c","ext":".png","mime":"image/png","size":9.98,"url":"https://official-media.sphere-ex.com/58_c426aa4c6c.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T09:32:56.594Z","updatedAt":"2022-05-12T09:59:17.161Z"}}},"localizations":{"data":[{"id":13,"attributes":{"name":"58","website":null,"createdAt":"2022-05-12T09:59:45.880Z","updatedAt":"2022-05-12T10:00:08.185Z","locale":"zh"}}]}}},{"id":15,"attributes":{"name":"360数科","website":null,"createdAt":"2022-05-12T10:02:13.011Z","updatedAt":"2022-05-12T10:02:26.617Z","locale":"en","logo":{"data":{"id":194,"attributes":{"name":"360 数科.png","alternativeText":"360 数科.png","caption":"360 数科.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_360 数科.png","hash":"thumbnail_360_ba73dda734","ext":".png","mime":"image/png","width":245,"height":73,"size":13.34,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_360_ba73dda734.png"}},"hash":"360_ba73dda734","ext":".png","mime":"image/png","size":24.34,"url":"https://official-media.sphere-ex.com/360_ba73dda734.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:02:01.076Z","updatedAt":"2022-05-12T10:02:01.076Z"}}},"localizations":{"data":[{"id":16,"attributes":{"name":"360数科","website":null,"createdAt":"2022-05-12T10:02:26.586Z","updatedAt":"2022-05-12T10:02:26.586Z","locale":"zh"}}]}}},{"id":18,"attributes":{"name":"500PX","website":null,"createdAt":"2022-05-12T10:04:05.674Z","updatedAt":"2022-05-12T10:04:05.674Z","locale":"en","logo":{"data":{"id":195,"attributes":{"name":"500px.png","alternativeText":"500px.png","caption":"500px.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_500px.png","hash":"thumbnail_500px_c2be77bdb0","ext":".png","mime":"image/png","width":245,"height":73,"size":4.56,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_500px_c2be77bdb0.png"}},"hash":"500px_c2be77bdb0","ext":".png","mime":"image/png","size":5.28,"url":"https://official-media.sphere-ex.com/500px_c2be77bdb0.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:03:43.369Z","updatedAt":"2022-05-12T10:03:43.369Z"}}},"localizations":{"data":[{"id":17,"attributes":{"name":"500PX","website":null,"createdAt":"2022-05-12T10:03:56.480Z","updatedAt":"2022-05-12T10:04:05.703Z","locale":"zh"}}]}}},{"id":20,"attributes":{"name":"爱番番","website":null,"createdAt":"2022-05-12T10:05:05.682Z","updatedAt":"2022-05-12T10:05:05.682Z","locale":"en","logo":{"data":{"id":196,"attributes":{"name":"爱番番.png","alternativeText":"爱番番.png","caption":"爱番番.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_爱番番.png","hash":"thumbnail__2ec44848c9","ext":".png","mime":"image/png","width":245,"height":73,"size":7.15,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__2ec44848c9.png"}},"hash":"_2ec44848c9","ext":".png","mime":"image/png","size":13.36,"url":"https://official-media.sphere-ex.com/_2ec44848c9.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:04:35.351Z","updatedAt":"2022-05-12T10:04:35.351Z"}}},"localizations":{"data":[{"id":19,"attributes":{"name":"爱番番","website":null,"createdAt":"2022-05-12T10:04:52.902Z","updatedAt":"2022-05-12T10:05:05.715Z","locale":"zh"}}]}}},{"id":22,"attributes":{"name":"爱奇艺","website":null,"createdAt":"2022-05-12T10:05:39.037Z","updatedAt":"2022-05-12T10:05:39.037Z","locale":"en","logo":{"data":{"id":197,"attributes":{"name":"爱奇艺.png","alternativeText":"爱奇艺.png","caption":"爱奇艺.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_爱奇艺.png","hash":"thumbnail__ff2f4ac641","ext":".png","mime":"image/png","width":245,"height":73,"size":11.2,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ff2f4ac641.png"}},"hash":"_ff2f4ac641","ext":".png","mime":"image/png","size":19.87,"url":"https://official-media.sphere-ex.com/_ff2f4ac641.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:05:20.081Z","updatedAt":"2022-05-12T10:05:20.081Z"}}},"localizations":{"data":[{"id":21,"attributes":{"name":"爱奇艺","website":null,"createdAt":"2022-05-12T10:05:29.353Z","updatedAt":"2022-05-12T10:05:39.064Z","locale":"zh"}}]}}},{"id":23,"attributes":{"name":"百果园","website":null,"createdAt":"2022-05-12T10:09:23.967Z","updatedAt":"2022-05-12T10:09:39.612Z","locale":"en","logo":{"data":{"id":198,"attributes":{"name":"百果园.png","alternativeText":"百果园.png","caption":"百果园.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_百果园.png","hash":"thumbnail__b5aa05467d","ext":".png","mime":"image/png","width":245,"height":73,"size":8.48,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b5aa05467d.png"}},"hash":"_b5aa05467d","ext":".png","mime":"image/png","size":15.35,"url":"https://official-media.sphere-ex.com/_b5aa05467d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:09:15.192Z","updatedAt":"2022-05-12T10:09:15.192Z"}}},"localizations":{"data":[{"id":24,"attributes":{"name":"百果园","website":null,"createdAt":"2022-05-12T10:09:39.577Z","updatedAt":"2022-05-12T10:09:39.577Z","locale":"zh"}}]}}},{"id":26,"attributes":{"name":"编程猫","website":null,"createdAt":"2022-05-12T10:10:32.541Z","updatedAt":"2022-05-12T10:10:32.541Z","locale":"en","logo":{"data":{"id":199,"attributes":{"name":"编程猫.png","alternativeText":"编程猫.png","caption":"编程猫.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_编程猫.png","hash":"thumbnail__8a3da21399","ext":".png","mime":"image/png","width":245,"height":73,"size":6.46,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8a3da21399.png"}},"hash":"_8a3da21399","ext":".png","mime":"image/png","size":9.01,"url":"https://official-media.sphere-ex.com/_8a3da21399.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:10:12.303Z","updatedAt":"2022-05-12T10:10:12.303Z"}}},"localizations":{"data":[{"id":25,"attributes":{"name":"编程猫","website":null,"createdAt":"2022-05-12T10:10:23.647Z","updatedAt":"2022-05-12T10:10:32.569Z","locale":"zh"}}]}}},{"id":28,"attributes":{"name":"天威诚信","website":null,"createdAt":"2022-05-12T10:11:06.381Z","updatedAt":"2022-05-12T10:11:06.381Z","locale":"en","logo":{"data":{"id":200,"attributes":{"name":"诚信天威.png","alternativeText":"诚信天威.png","caption":"诚信天威.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_诚信天威.png","hash":"thumbnail__bd7c360f7e","ext":".png","mime":"image/png","width":245,"height":73,"size":7.26,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__bd7c360f7e.png"}},"hash":"_bd7c360f7e","ext":".png","mime":"image/png","size":13.57,"url":"https://official-media.sphere-ex.com/_bd7c360f7e.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T10:10:47.908Z","updatedAt":"2022-05-12T10:10:47.908Z"}}},"localizations":{"data":[{"id":27,"attributes":{"name":"天威诚信","website":null,"createdAt":"2022-05-12T10:10:58.220Z","updatedAt":"2022-05-12T10:11:06.416Z","locale":"zh"}}]}}},{"id":29,"attributes":{"name":"大搜车","website":null,"createdAt":"2022-05-12T11:05:00.232Z","updatedAt":"2022-05-12T11:05:07.849Z","locale":"en","logo":{"data":{"id":201,"attributes":{"name":"大搜车.png","alternativeText":"大搜车.png","caption":"大搜车.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_大搜车.png","hash":"thumbnail__1e1776bd45","ext":".png","mime":"image/png","width":245,"height":73,"size":5.03,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__1e1776bd45.png"}},"hash":"_1e1776bd45","ext":".png","mime":"image/png","size":7.47,"url":"https://official-media.sphere-ex.com/_1e1776bd45.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:04:51.089Z","updatedAt":"2022-05-12T11:04:51.089Z"}}},"localizations":{"data":[{"id":30,"attributes":{"name":"大搜车","website":null,"createdAt":"2022-05-12T11:05:07.827Z","updatedAt":"2022-05-12T11:05:07.827Z","locale":"zh"}}]}}},{"id":32,"attributes":{"name":"当当","website":null,"createdAt":"2022-05-12T11:05:45.489Z","updatedAt":"2022-05-12T11:05:45.489Z","locale":"en","logo":{"data":{"id":202,"attributes":{"name":"当当.png","alternativeText":"当当.png","caption":"当当.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_当当.png","hash":"thumbnail__454b261869","ext":".png","mime":"image/png","width":245,"height":73,"size":9.01,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__454b261869.png"}},"hash":"_454b261869","ext":".png","mime":"image/png","size":15.73,"url":"https://official-media.sphere-ex.com/_454b261869.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:05:27.557Z","updatedAt":"2022-05-12T11:05:27.557Z"}}},"localizations":{"data":[{"id":31,"attributes":{"name":"当当","website":null,"createdAt":"2022-05-12T11:05:35.672Z","updatedAt":"2022-05-12T11:05:45.516Z","locale":"zh"}}]}}},{"id":36,"attributes":{"name":"丁香园","website":null,"createdAt":"2022-05-12T11:07:02.905Z","updatedAt":"2022-05-12T11:07:02.905Z","locale":"en","logo":{"data":{"id":205,"attributes":{"name":"丁香园.png","alternativeText":"丁香园.png","caption":"丁香园.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_丁香园.png","hash":"thumbnail__7baf317e28","ext":".png","mime":"image/png","width":245,"height":73,"size":6.46,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__7baf317e28.png"}},"hash":"_7baf317e28","ext":".png","mime":"image/png","size":9.79,"url":"https://official-media.sphere-ex.com/_7baf317e28.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:06:53.350Z","updatedAt":"2022-05-12T11:06:53.350Z"}}},"localizations":{"data":[{"id":35,"attributes":{"name":"丁香园","website":null,"createdAt":"2022-05-12T11:06:42.076Z","updatedAt":"2022-05-12T11:07:02.931Z","locale":"zh"}}]}}},{"id":38,"attributes":{"name":"得物","website":null,"createdAt":"2022-05-12T11:08:25.812Z","updatedAt":"2022-05-12T11:08:25.812Z","locale":"en","logo":{"data":{"id":203,"attributes":{"name":"得物.png","alternativeText":"得物.png","caption":"得物.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_得物.png","hash":"thumbnail__3625fb8574","ext":".png","mime":"image/png","width":245,"height":73,"size":3.52,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__3625fb8574.png"}},"hash":"_3625fb8574","ext":".png","mime":"image/png","size":3.77,"url":"https://official-media.sphere-ex.com/_3625fb8574.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:06:06.032Z","updatedAt":"2022-05-12T11:06:06.032Z"}}},"localizations":{"data":[{"id":37,"attributes":{"name":"得物","website":null,"createdAt":"2022-05-12T11:08:13.051Z","updatedAt":"2022-05-12T11:08:25.837Z","locale":"zh"}}]}}},{"id":39,"attributes":{"name":"叮当快药","website":null,"createdAt":"2022-05-12T11:09:30.322Z","updatedAt":"2022-05-12T11:09:38.381Z","locale":"en","logo":{"data":{"id":206,"attributes":{"name":"叮当快药.png","alternativeText":"叮当快药.png","caption":"叮当快药.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_叮当快药.png","hash":"thumbnail__0f02ae8949","ext":".png","mime":"image/png","width":245,"height":73,"size":7.88,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__0f02ae8949.png"}},"hash":"_0f02ae8949","ext":".png","mime":"image/png","size":14.81,"url":"https://official-media.sphere-ex.com/_0f02ae8949.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:09:20.787Z","updatedAt":"2022-05-12T11:09:20.787Z"}}},"localizations":{"data":[{"id":40,"attributes":{"name":"叮当快药","website":null,"createdAt":"2022-05-12T11:09:38.353Z","updatedAt":"2022-05-12T11:09:38.353Z","locale":"zh"}}]}}},{"id":42,"attributes":{"name":"斗鱼","website":null,"createdAt":"2022-05-12T11:10:22.593Z","updatedAt":"2022-05-12T11:10:22.593Z","locale":"en","logo":{"data":{"id":207,"attributes":{"name":"斗鱼.png","alternativeText":"斗鱼.png","caption":"斗鱼.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_斗鱼.png","hash":"thumbnail__50476865dc","ext":".png","mime":"image/png","width":245,"height":73,"size":11.3,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__50476865dc.png"}},"hash":"_50476865dc","ext":".png","mime":"image/png","size":22.41,"url":"https://official-media.sphere-ex.com/_50476865dc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:10:03.411Z","updatedAt":"2022-05-12T11:10:03.411Z"}}},"localizations":{"data":[{"id":41,"attributes":{"name":"斗鱼","website":null,"createdAt":"2022-05-12T11:10:11.928Z","updatedAt":"2022-05-12T11:10:22.618Z","locale":"zh"}}]}}},{"id":44,"attributes":{"name":"公牛","website":null,"createdAt":"2022-05-12T11:10:56.977Z","updatedAt":"2022-05-12T11:10:56.977Z","locale":"en","logo":{"data":{"id":208,"attributes":{"name":"公牛.png","alternativeText":"公牛.png","caption":"公牛.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_公牛.png","hash":"thumbnail__f5c6be9842","ext":".png","mime":"image/png","width":245,"height":73,"size":6.26,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__f5c6be9842.png"}},"hash":"_f5c6be9842","ext":".png","mime":"image/png","size":10.15,"url":"https://official-media.sphere-ex.com/_f5c6be9842.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:10:36.578Z","updatedAt":"2022-05-12T11:10:36.578Z"}}},"localizations":{"data":[{"id":43,"attributes":{"name":"公牛","website":null,"createdAt":"2022-05-12T11:10:47.512Z","updatedAt":"2022-05-12T11:10:57.005Z","locale":"zh"}}]}}},{"id":46,"attributes":{"name":"海典","website":null,"createdAt":"2022-05-12T11:11:45.328Z","updatedAt":"2022-05-12T11:14:58.768Z","locale":"en","logo":{"data":{"id":209,"attributes":{"name":"海典.png","alternativeText":"海典.png","caption":"海典.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_海典.png","hash":"thumbnail__ce8f7e0cc1","ext":".png","mime":"image/png","width":245,"height":73,"size":8.02,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ce8f7e0cc1.png"}},"hash":"_ce8f7e0cc1","ext":".png","mime":"image/png","size":10.81,"url":"https://official-media.sphere-ex.com/_ce8f7e0cc1.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.684Z","updatedAt":"2022-05-12T11:11:18.684Z"}}},"localizations":{"data":[{"id":45,"attributes":{"name":"海典","website":null,"createdAt":"2022-05-12T11:11:32.952Z","updatedAt":"2022-05-12T11:14:54.887Z","locale":"zh"}}]}}},{"id":48,"attributes":{"name":"广联达","website":null,"createdAt":"2022-05-12T11:12:09.243Z","updatedAt":"2022-05-12T11:12:09.243Z","locale":"en","logo":{"data":{"id":210,"attributes":{"name":"广联达.png","alternativeText":"广联达.png","caption":"广联达.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_广联达.png","hash":"thumbnail__5b3f63fe0c","ext":".png","mime":"image/png","width":245,"height":73,"size":11.9,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__5b3f63fe0c.png"}},"hash":"_5b3f63fe0c","ext":".png","mime":"image/png","size":24.1,"url":"https://official-media.sphere-ex.com/_5b3f63fe0c.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.691Z","updatedAt":"2022-05-12T11:11:18.691Z"}}},"localizations":{"data":[{"id":47,"attributes":{"name":"广联达","website":null,"createdAt":"2022-05-12T11:11:59.223Z","updatedAt":"2022-05-12T11:12:09.270Z","locale":"zh"}}]}}},{"id":50,"attributes":{"name":"海尔消费金融","website":null,"createdAt":"2022-05-12T11:12:39.776Z","updatedAt":"2022-05-12T11:12:39.776Z","locale":"en","logo":{"data":{"id":211,"attributes":{"name":"海尔.png","alternativeText":"海尔.png","caption":"海尔.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_海尔.png","hash":"thumbnail__21ad0931e1","ext":".png","mime":"image/png","width":245,"height":73,"size":8.32,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__21ad0931e1.png"}},"hash":"_21ad0931e1","ext":".png","mime":"image/png","size":13.4,"url":"https://official-media.sphere-ex.com/_21ad0931e1.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.777Z","updatedAt":"2022-05-12T11:11:18.777Z"}}},"localizations":{"data":[{"id":49,"attributes":{"name":"海尔消费金融","website":null,"createdAt":"2022-05-12T11:12:29.224Z","updatedAt":"2022-05-12T11:12:39.803Z","locale":"zh"}}]}}},{"id":52,"attributes":{"name":"瓜子二手车","website":null,"createdAt":"2022-05-12T11:13:19.919Z","updatedAt":"2022-05-12T11:13:19.919Z","locale":"en","logo":{"data":{"id":212,"attributes":{"name":"瓜子.png","alternativeText":"瓜子.png","caption":"瓜子.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_瓜子.png","hash":"thumbnail__ac83d8efd6","ext":".png","mime":"image/png","width":245,"height":73,"size":11.82,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ac83d8efd6.png"}},"hash":"_ac83d8efd6","ext":".png","mime":"image/png","size":22.1,"url":"https://official-media.sphere-ex.com/_ac83d8efd6.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.862Z","updatedAt":"2022-05-12T11:11:18.862Z"}}},"localizations":{"data":[{"id":51,"attributes":{"name":"瓜子二手车","website":null,"createdAt":"2022-05-12T11:13:02.908Z","updatedAt":"2022-05-12T11:13:19.943Z","locale":"zh"}}]}}},{"id":54,"attributes":{"name":"怪兽充电","website":null,"createdAt":"2022-05-12T11:13:46.662Z","updatedAt":"2022-05-12T11:13:46.662Z","locale":"en","logo":{"data":{"id":213,"attributes":{"name":"怪兽充电.png","alternativeText":"怪兽充电.png","caption":"怪兽充电.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_怪兽充电.png","hash":"thumbnail__a71d67b0e7","ext":".png","mime":"image/png","width":245,"height":73,"size":8.74,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__a71d67b0e7.png"}},"hash":"_a71d67b0e7","ext":".png","mime":"image/png","size":15.71,"url":"https://official-media.sphere-ex.com/_a71d67b0e7.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:11:18.863Z","updatedAt":"2022-05-12T11:11:18.863Z"}}},"localizations":{"data":[{"id":53,"attributes":{"name":"怪兽充电","website":null,"createdAt":"2022-05-12T11:13:38.051Z","updatedAt":"2022-05-12T11:13:46.687Z","locale":"zh"}}]}}},{"id":56,"attributes":{"name":"海康","website":null,"createdAt":"2022-05-12T11:14:35.811Z","updatedAt":"2022-05-12T11:14:35.811Z","locale":"en","logo":{"data":{"id":214,"attributes":{"name":"海康威视.png","alternativeText":"海康威视.png","caption":"海康威视.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_海康威视.png","hash":"thumbnail__3fd9901f86","ext":".png","mime":"image/png","width":245,"height":73,"size":6.17,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__3fd9901f86.png"}},"hash":"_3fd9901f86","ext":".png","mime":"image/png","size":8.15,"url":"https://official-media.sphere-ex.com/_3fd9901f86.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:14:12.210Z","updatedAt":"2022-05-12T11:14:12.210Z"}}},"localizations":{"data":[{"id":55,"attributes":{"name":"海康","website":null,"createdAt":"2022-05-12T11:14:20.838Z","updatedAt":"2022-05-12T11:14:35.835Z","locale":"zh"}}]}}},{"id":58,"attributes":{"name":"好未来","website":null,"createdAt":"2022-05-12T11:16:04.452Z","updatedAt":"2022-05-12T11:16:04.452Z","locale":"en","logo":{"data":{"id":215,"attributes":{"name":"好未来.png","alternativeText":"好未来.png","caption":"好未来.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_好未来.png","hash":"thumbnail__d93086d051","ext":".png","mime":"image/png","width":245,"height":73,"size":10.17,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__d93086d051.png"}},"hash":"_d93086d051","ext":".png","mime":"image/png","size":20.34,"url":"https://official-media.sphere-ex.com/_d93086d051.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:15:46.920Z","updatedAt":"2022-05-12T11:15:46.920Z"}}},"localizations":{"data":[{"id":57,"attributes":{"name":"好未来","website":null,"createdAt":"2022-05-12T11:15:53.432Z","updatedAt":"2022-05-12T11:16:04.478Z","locale":"zh"}}]}}},{"id":60,"attributes":{"name":"欢聚时代","website":null,"createdAt":"2022-05-12T11:16:27.223Z","updatedAt":"2022-05-12T11:16:27.223Z","locale":"en","logo":{"data":{"id":216,"attributes":{"name":"欢聚时代.png","alternativeText":"欢聚时代.png","caption":"欢聚时代.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_欢聚时代.png","hash":"thumbnail__b286bdb96d","ext":".png","mime":"image/png","width":245,"height":73,"size":12.22,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b286bdb96d.png"}},"hash":"_b286bdb96d","ext":".png","mime":"image/png","size":22.36,"url":"https://official-media.sphere-ex.com/_b286bdb96d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:16:14.879Z","updatedAt":"2022-05-12T11:16:14.879Z"}}},"localizations":{"data":[{"id":59,"attributes":{"name":"欢聚时代","website":null,"createdAt":"2022-05-12T11:16:21.597Z","updatedAt":"2022-05-12T11:16:27.246Z","locale":"zh"}}]}}},{"id":62,"attributes":{"name":"环球网校","website":null,"createdAt":"2022-05-12T11:17:07.929Z","updatedAt":"2022-05-12T11:17:07.929Z","locale":"en","logo":{"data":{"id":217,"attributes":{"name":"环球网校.png","alternativeText":"环球网校.png","caption":"环球网校.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_环球网校.png","hash":"thumbnail__57f58a8c7b","ext":".png","mime":"image/png","width":245,"height":73,"size":8.77,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__57f58a8c7b.png"}},"hash":"_57f58a8c7b","ext":".png","mime":"image/png","size":15.82,"url":"https://official-media.sphere-ex.com/_57f58a8c7b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:16:46.576Z","updatedAt":"2022-05-12T11:16:46.576Z"}}},"localizations":{"data":[{"id":61,"attributes":{"name":"环球网校","website":null,"createdAt":"2022-05-12T11:16:58.746Z","updatedAt":"2022-05-12T11:17:07.952Z","locale":"zh"}}]}}},{"id":64,"attributes":{"name":"货车帮","website":null,"createdAt":"2022-05-12T11:17:37.845Z","updatedAt":"2022-05-12T11:17:37.845Z","locale":"en","logo":{"data":{"id":218,"attributes":{"name":"货车帮.png","alternativeText":"货车帮.png","caption":"货车帮.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_货车帮.png","hash":"thumbnail__d7cbf73239","ext":".png","mime":"image/png","width":245,"height":73,"size":11.36,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__d7cbf73239.png"}},"hash":"_d7cbf73239","ext":".png","mime":"image/png","size":17.92,"url":"https://official-media.sphere-ex.com/_d7cbf73239.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:17:23.196Z","updatedAt":"2022-05-12T11:17:23.196Z"}}},"localizations":{"data":[{"id":63,"attributes":{"name":"货车帮","website":null,"createdAt":"2022-05-12T11:17:31.439Z","updatedAt":"2022-05-12T11:17:37.868Z","locale":"zh"}}]}}},{"id":66,"attributes":{"name":"家视天下","website":null,"createdAt":"2022-05-12T11:18:16.566Z","updatedAt":"2022-05-12T11:18:16.566Z","locale":"en","logo":{"data":{"id":219,"attributes":{"name":"家视天下.png","alternativeText":"家视天下.png","caption":"家视天下.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_家视天下.png","hash":"thumbnail__69bf270b74","ext":".png","mime":"image/png","width":245,"height":73,"size":5.13,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__69bf270b74.png"}},"hash":"_69bf270b74","ext":".png","mime":"image/png","size":7.15,"url":"https://official-media.sphere-ex.com/_69bf270b74.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:17:54.407Z","updatedAt":"2022-05-12T11:17:54.407Z"}}},"localizations":{"data":[{"id":65,"attributes":{"name":"家视天下","website":null,"createdAt":"2022-05-12T11:18:06.319Z","updatedAt":"2022-05-12T11:18:16.588Z","locale":"zh"}}]}}},{"id":68,"attributes":{"name":"建信金科","website":null,"createdAt":"2022-05-12T11:18:49.234Z","updatedAt":"2022-05-12T11:18:49.234Z","locale":"en","logo":{"data":{"id":220,"attributes":{"name":"建信金科.png","alternativeText":"建信金科.png","caption":"建信金科.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_建信金科.png","hash":"thumbnail__6b2c67ba48","ext":".png","mime":"image/png","width":245,"height":73,"size":9.45,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__6b2c67ba48.png"}},"hash":"_6b2c67ba48","ext":".png","mime":"image/png","size":15.25,"url":"https://official-media.sphere-ex.com/_6b2c67ba48.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:18:33.807Z","updatedAt":"2022-05-12T11:18:33.807Z"}}},"localizations":{"data":[{"id":67,"attributes":{"name":"建信金科","website":null,"createdAt":"2022-05-12T11:18:42.863Z","updatedAt":"2022-05-12T11:18:49.256Z","locale":"zh"}}]}}},{"id":70,"attributes":{"name":"京东科技","website":null,"createdAt":"2022-05-12T11:19:17.074Z","updatedAt":"2022-05-12T11:19:17.074Z","locale":"en","logo":{"data":{"id":221,"attributes":{"name":"京东科技.png","alternativeText":"京东科技.png","caption":"京东科技.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_京东科技.png","hash":"thumbnail__36be828c9c","ext":".png","mime":"image/png","width":245,"height":73,"size":7.44,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__36be828c9c.png"}},"hash":"_36be828c9c","ext":".png","mime":"image/png","size":11.23,"url":"https://official-media.sphere-ex.com/_36be828c9c.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:19:02.366Z","updatedAt":"2022-05-12T11:19:02.366Z"}}},"localizations":{"data":[{"id":69,"attributes":{"name":"京东科技","website":null,"createdAt":"2022-05-12T11:19:09.045Z","updatedAt":"2022-05-12T11:19:17.099Z","locale":"zh"}}]}}},{"id":72,"attributes":{"name":"京东物流","website":null,"createdAt":"2022-05-12T11:19:48.106Z","updatedAt":"2022-05-12T11:19:48.106Z","locale":"en","logo":{"data":{"id":222,"attributes":{"name":"京东物流.png","alternativeText":"京东物流.png","caption":"京东物流.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_京东物流.png","hash":"thumbnail__20b318c172","ext":".png","mime":"image/png","width":245,"height":73,"size":6.21,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__20b318c172.png"}},"hash":"_20b318c172","ext":".png","mime":"image/png","size":5.83,"url":"https://official-media.sphere-ex.com/_20b318c172.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:19:28.897Z","updatedAt":"2022-05-12T11:19:28.897Z"}}},"localizations":{"data":[{"id":71,"attributes":{"name":"京东物流","website":null,"createdAt":"2022-05-12T11:19:36.772Z","updatedAt":"2022-05-12T11:19:48.204Z","locale":"zh"}}]}}},{"id":74,"attributes":{"name":"玖富集团","website":null,"createdAt":"2022-05-12T11:20:21.242Z","updatedAt":"2022-05-12T11:20:21.242Z","locale":"en","logo":{"data":{"id":223,"attributes":{"name":"玖富集团.png","alternativeText":"玖富集团.png","caption":"玖富集团.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_玖富集团.png","hash":"thumbnail__a9a3ec5822","ext":".png","mime":"image/png","width":245,"height":73,"size":7.26,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__a9a3ec5822.png"}},"hash":"_a9a3ec5822","ext":".png","mime":"image/png","size":11.86,"url":"https://official-media.sphere-ex.com/_a9a3ec5822.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:20:00.653Z","updatedAt":"2022-05-12T11:20:00.653Z"}}},"localizations":{"data":[{"id":73,"attributes":{"name":"玖富集团","website":null,"createdAt":"2022-05-12T11:20:14.253Z","updatedAt":"2022-05-12T11:20:21.264Z","locale":"zh"}}]}}},{"id":76,"attributes":{"name":"科大讯飞","website":null,"createdAt":"2022-05-12T11:20:45.826Z","updatedAt":"2022-05-12T11:20:45.826Z","locale":"en","logo":{"data":{"id":224,"attributes":{"name":"科大讯飞.png","alternativeText":"科大讯飞.png","caption":"科大讯飞.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_科大讯飞.png","hash":"thumbnail__840f032a53","ext":".png","mime":"image/png","width":245,"height":73,"size":8.73,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__840f032a53.png"}},"hash":"_840f032a53","ext":".png","mime":"image/png","size":12.8,"url":"https://official-media.sphere-ex.com/_840f032a53.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:20:32.329Z","updatedAt":"2022-05-12T11:20:32.329Z"}}},"localizations":{"data":[{"id":75,"attributes":{"name":"科大讯飞","website":null,"createdAt":"2022-05-12T11:20:39.898Z","updatedAt":"2022-05-12T11:20:45.857Z","locale":"zh"}}]}}},{"id":78,"attributes":{"name":"客如云","website":null,"createdAt":"2022-05-12T11:21:12.112Z","updatedAt":"2022-05-12T11:21:12.112Z","locale":"en","logo":{"data":{"id":225,"attributes":{"name":"客如云.png","alternativeText":"客如云.png","caption":"客如云.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_客如云.png","hash":"thumbnail__9539ee7440","ext":".png","mime":"image/png","width":245,"height":73,"size":5.78,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__9539ee7440.png"}},"hash":"_9539ee7440","ext":".png","mime":"image/png","size":4.81,"url":"https://official-media.sphere-ex.com/_9539ee7440.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:20:57.667Z","updatedAt":"2022-05-12T11:20:57.667Z"}}},"localizations":{"data":[{"id":77,"attributes":{"name":"客如云","website":null,"createdAt":"2022-05-12T11:21:06.372Z","updatedAt":"2022-05-12T11:21:12.174Z","locale":"zh"}}]}}},{"id":80,"attributes":{"name":"马上消费","website":null,"createdAt":"2022-05-12T11:22:06.877Z","updatedAt":"2022-05-12T11:22:06.877Z","locale":"en","logo":{"data":{"id":226,"attributes":{"name":"马上消费.png","alternativeText":"马上消费.png","caption":"马上消费.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_马上消费.png","hash":"thumbnail__96b249b440","ext":".png","mime":"image/png","width":245,"height":73,"size":7.5,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__96b249b440.png"}},"hash":"_96b249b440","ext":".png","mime":"image/png","size":11.76,"url":"https://official-media.sphere-ex.com/_96b249b440.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.147Z","updatedAt":"2022-05-12T11:21:41.147Z"}}},"localizations":{"data":[{"id":79,"attributes":{"name":"马上消费","website":null,"createdAt":"2022-05-12T11:21:50.193Z","updatedAt":"2022-05-12T11:22:06.902Z","locale":"zh"}}]}}},{"id":82,"attributes":{"name":"联通云","website":null,"createdAt":"2022-05-12T11:22:36.369Z","updatedAt":"2022-05-12T11:22:36.369Z","locale":"en","logo":{"data":{"id":227,"attributes":{"name":"联通云.png","alternativeText":"联通云.png","caption":"联通云.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_联通云.png","hash":"thumbnail__b834778d2b","ext":".png","mime":"image/png","width":245,"height":73,"size":8.03,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b834778d2b.png"}},"hash":"_b834778d2b","ext":".png","mime":"image/png","size":14.26,"url":"https://official-media.sphere-ex.com/_b834778d2b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.228Z","updatedAt":"2022-05-12T11:21:41.228Z"}}},"localizations":{"data":[{"id":81,"attributes":{"name":"联通云","website":null,"createdAt":"2022-05-12T11:22:25.376Z","updatedAt":"2022-05-12T11:22:36.391Z","locale":"zh"}}]}}},{"id":84,"attributes":{"name":"马蜂窝","website":null,"createdAt":"2022-05-12T11:23:07.661Z","updatedAt":"2022-05-12T11:23:07.661Z","locale":"en","logo":{"data":{"id":228,"attributes":{"name":"马蜂窝.png","alternativeText":"马蜂窝.png","caption":"马蜂窝.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_马蜂窝.png","hash":"thumbnail__3c4a989dc8","ext":".png","mime":"image/png","width":245,"height":73,"size":8.87,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__3c4a989dc8.png"}},"hash":"_3c4a989dc8","ext":".png","mime":"image/png","size":15.92,"url":"https://official-media.sphere-ex.com/_3c4a989dc8.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.300Z","updatedAt":"2022-05-12T11:21:41.300Z"}}},"localizations":{"data":[{"id":83,"attributes":{"name":"马蜂窝","website":null,"createdAt":"2022-05-12T11:22:56.870Z","updatedAt":"2022-05-12T11:23:07.683Z","locale":"zh"}}]}}},{"id":86,"attributes":{"name":"快捷通","website":null,"createdAt":"2022-05-12T11:23:37.789Z","updatedAt":"2022-05-12T11:23:37.789Z","locale":"en","logo":{"data":{"id":229,"attributes":{"name":"快捷通.png","alternativeText":"快捷通.png","caption":"快捷通.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_快捷通.png","hash":"thumbnail__7a0f85a547","ext":".png","mime":"image/png","width":245,"height":73,"size":7.73,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__7a0f85a547.png"}},"hash":"_7a0f85a547","ext":".png","mime":"image/png","size":11.36,"url":"https://official-media.sphere-ex.com/_7a0f85a547.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.388Z","updatedAt":"2022-05-12T11:21:41.388Z"}}},"localizations":{"data":[{"id":85,"attributes":{"name":"快捷通","website":null,"createdAt":"2022-05-12T11:23:30.037Z","updatedAt":"2022-05-12T11:23:37.812Z","locale":"zh"}}]}}},{"id":88,"attributes":{"name":"理想","website":null,"createdAt":"2022-05-12T11:24:03.499Z","updatedAt":"2022-05-12T11:24:03.499Z","locale":"en","logo":{"data":{"id":230,"attributes":{"name":"理想.png","alternativeText":"理想.png","caption":"理想.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_理想.png","hash":"thumbnail__e076874d2d","ext":".png","mime":"image/png","width":245,"height":73,"size":6.59,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__e076874d2d.png"}},"hash":"_e076874d2d","ext":".png","mime":"image/png","size":11.85,"url":"https://official-media.sphere-ex.com/_e076874d2d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:21:41.511Z","updatedAt":"2022-05-12T11:21:41.511Z"}}},"localizations":{"data":[{"id":87,"attributes":{"name":"理想","website":null,"createdAt":"2022-05-12T11:23:56.121Z","updatedAt":"2022-05-12T11:24:03.523Z","locale":"zh"}}]}}},{"id":90,"attributes":{"name":"每日优鲜","website":null,"createdAt":"2022-05-12T11:31:06.401Z","updatedAt":"2022-05-12T11:31:06.401Z","locale":"en","logo":{"data":{"id":231,"attributes":{"name":"每日优鲜.png","alternativeText":"每日优鲜.png","caption":"每日优鲜.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_每日优鲜.png","hash":"thumbnail__8049aa0985","ext":".png","mime":"image/png","width":245,"height":73,"size":8.03,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8049aa0985.png"}},"hash":"_8049aa0985","ext":".png","mime":"image/png","size":12.69,"url":"https://official-media.sphere-ex.com/_8049aa0985.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-12T11:30:49.874Z","updatedAt":"2022-05-12T11:30:49.874Z"}}},"localizations":{"data":[{"id":89,"attributes":{"name":"每日优鲜","website":null,"createdAt":"2022-05-12T11:30:58.535Z","updatedAt":"2022-05-12T11:31:06.422Z","locale":"zh"}}]}}},{"id":91,"attributes":{"name":"中国民生银行","website":null,"createdAt":"2022-05-13T08:53:26.029Z","updatedAt":"2022-05-13T08:53:46.005Z","locale":"en","logo":{"data":{"id":232,"attributes":{"name":"民生银行.png","alternativeText":"民生银行.png","caption":"民生银行.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_民生银行.png","hash":"thumbnail__6fd163ced8","ext":".png","mime":"image/png","width":245,"height":73,"size":12.39,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__6fd163ced8.png"}},"hash":"_6fd163ced8","ext":".png","mime":"image/png","size":23.87,"url":"https://official-media.sphere-ex.com/_6fd163ced8.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:53:14.337Z","updatedAt":"2022-05-13T08:53:14.337Z"}}},"localizations":{"data":[{"id":92,"attributes":{"name":"中国民生银行","website":null,"createdAt":"2022-05-13T08:53:45.974Z","updatedAt":"2022-05-13T08:53:45.974Z","locale":"zh"}}]}}},{"id":94,"attributes":{"name":"搜狐新闻","website":null,"createdAt":"2022-05-13T08:54:28.895Z","updatedAt":"2022-05-13T08:54:28.895Z","locale":"en","logo":{"data":{"id":234,"attributes":{"name":"搜狐新闻.png","alternativeText":"搜狐新闻.png","caption":"搜狐新闻.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_搜狐新闻.png","hash":"thumbnail__f06beae44d","ext":".png","mime":"image/png","width":245,"height":73,"size":8.08,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__f06beae44d.png"}},"hash":"_f06beae44d","ext":".png","mime":"image/png","size":14.43,"url":"https://official-media.sphere-ex.com/_f06beae44d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.179Z","updatedAt":"2022-05-13T08:54:12.179Z"}}},"localizations":{"data":[{"id":93,"attributes":{"name":"搜狐新闻","website":null,"createdAt":"2022-05-13T08:54:19.289Z","updatedAt":"2022-05-13T08:54:28.945Z","locale":"zh"}}]}}},{"id":96,"attributes":{"name":"汽车之家","website":null,"createdAt":"2022-05-13T08:54:51.347Z","updatedAt":"2022-05-13T08:54:51.347Z","locale":"en","logo":{"data":{"id":233,"attributes":{"name":"汽车之家.png","alternativeText":"汽车之家.png","caption":"汽车之家.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_汽车之家.png","hash":"thumbnail__52e1c6df2d","ext":".png","mime":"image/png","width":245,"height":73,"size":11.84,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__52e1c6df2d.png"}},"hash":"_52e1c6df2d","ext":".png","mime":"image/png","size":20.7,"url":"https://official-media.sphere-ex.com/_52e1c6df2d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.154Z","updatedAt":"2022-05-13T08:54:12.154Z"}}},"localizations":{"data":[{"id":95,"attributes":{"name":"汽车之家","website":null,"createdAt":"2022-05-13T08:54:40.671Z","updatedAt":"2022-05-13T08:54:51.370Z","locale":"zh"}}]}}},{"id":98,"attributes":{"name":"闪送","website":null,"createdAt":"2022-05-13T08:55:10.617Z","updatedAt":"2022-05-13T08:55:10.617Z","locale":"en","logo":{"data":{"id":235,"attributes":{"name":"闪送.png","alternativeText":"闪送.png","caption":"闪送.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_闪送.png","hash":"thumbnail__43705d7b17","ext":".png","mime":"image/png","width":245,"height":73,"size":15.58,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__43705d7b17.png"}},"hash":"_43705d7b17","ext":".png","mime":"image/png","size":31.84,"url":"https://official-media.sphere-ex.com/_43705d7b17.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.223Z","updatedAt":"2022-05-13T08:54:12.223Z"}}},"localizations":{"data":[{"id":97,"attributes":{"name":"闪送","website":null,"createdAt":"2022-05-13T08:55:04.149Z","updatedAt":"2022-05-13T08:55:10.674Z","locale":"zh"}}]}}},{"id":100,"attributes":{"name":"三只松鼠","website":null,"createdAt":"2022-05-13T08:55:28.254Z","updatedAt":"2022-05-13T08:55:28.254Z","locale":"en","logo":{"data":{"id":236,"attributes":{"name":"三只松鼠.png","alternativeText":"三只松鼠.png","caption":"三只松鼠.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_三只松鼠.png","hash":"thumbnail__8c33dfeb6b","ext":".png","mime":"image/png","width":245,"height":73,"size":11.61,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8c33dfeb6b.png"}},"hash":"_8c33dfeb6b","ext":".png","mime":"image/png","size":22.67,"url":"https://official-media.sphere-ex.com/_8c33dfeb6b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.230Z","updatedAt":"2022-05-13T08:54:12.230Z"}}},"localizations":{"data":[{"id":99,"attributes":{"name":"三只松鼠","website":null,"createdAt":"2022-05-13T08:55:21.083Z","updatedAt":"2022-05-13T08:55:28.282Z","locale":"zh"}}]}}},{"id":102,"attributes":{"name":"首汽约车","website":null,"createdAt":"2022-05-13T08:55:52.546Z","updatedAt":"2022-05-13T08:55:52.546Z","locale":"en","logo":{"data":{"id":237,"attributes":{"name":"首汽约车.png","alternativeText":"首汽约车.png","caption":"首汽约车.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_首汽约车.png","hash":"thumbnail__ca02385dfc","ext":".png","mime":"image/png","width":245,"height":73,"size":10.92,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__ca02385dfc.png"}},"hash":"_ca02385dfc","ext":".png","mime":"image/png","size":21.38,"url":"https://official-media.sphere-ex.com/_ca02385dfc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:54:12.374Z","updatedAt":"2022-05-13T08:54:12.374Z"}}},"localizations":{"data":[{"id":101,"attributes":{"name":"首汽约车","website":null,"createdAt":"2022-05-13T08:55:44.940Z","updatedAt":"2022-05-13T08:55:52.567Z","locale":"zh"}}]}}},{"id":104,"attributes":{"name":"腾讯音乐人","website":null,"createdAt":"2022-05-13T08:56:37.773Z","updatedAt":"2022-05-13T08:56:37.773Z","locale":"en","logo":{"data":{"id":238,"attributes":{"name":"腾讯音乐人.png","alternativeText":"腾讯音乐人.png","caption":"腾讯音乐人.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_腾讯音乐人.png","hash":"thumbnail__691253dfe6","ext":".png","mime":"image/png","width":245,"height":73,"size":7.17,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__691253dfe6.png"}},"hash":"_691253dfe6","ext":".png","mime":"image/png","size":10.04,"url":"https://official-media.sphere-ex.com/_691253dfe6.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.308Z","updatedAt":"2022-05-13T08:56:21.308Z"}}},"localizations":{"data":[{"id":103,"attributes":{"name":"腾讯音乐人","website":null,"createdAt":"2022-05-13T08:56:30.799Z","updatedAt":"2022-05-13T08:56:37.803Z","locale":"zh"}}]}}},{"id":106,"attributes":{"name":"豌豆公主","website":null,"createdAt":"2022-05-13T08:56:56.457Z","updatedAt":"2022-05-13T08:56:56.457Z","locale":"en","logo":{"data":{"id":239,"attributes":{"name":"豌豆公主.png","alternativeText":"豌豆公主.png","caption":"豌豆公主.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_豌豆公主.png","hash":"thumbnail__87d194643d","ext":".png","mime":"image/png","width":245,"height":73,"size":6.47,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__87d194643d.png"}},"hash":"_87d194643d","ext":".png","mime":"image/png","size":10.93,"url":"https://official-media.sphere-ex.com/_87d194643d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.441Z","updatedAt":"2022-05-13T08:56:21.441Z"}}},"localizations":{"data":[{"id":105,"attributes":{"name":"豌豆公主","website":null,"createdAt":"2022-05-13T08:56:49.892Z","updatedAt":"2022-05-13T08:56:56.478Z","locale":"zh"}}]}}},{"id":109,"attributes":{"name":"特微智能","website":null,"createdAt":"2022-05-13T11:06:26.555Z","updatedAt":"2022-05-13T11:06:26.555Z","locale":"en","logo":{"data":{"id":241,"attributes":{"name":"特微智能.png","alternativeText":"特微智能.png","caption":"特微智能.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_特微智能.png","hash":"thumbnail__a3819c29c7","ext":".png","mime":"image/png","width":245,"height":73,"size":10.14,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__a3819c29c7.png"}},"hash":"_a3819c29c7","ext":".png","mime":"image/png","size":16.2,"url":"https://official-media.sphere-ex.com/_a3819c29c7.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.461Z","updatedAt":"2022-05-13T08:56:21.461Z"}}},"localizations":{"data":[{"id":108,"attributes":{"name":"特微智能","website":null,"createdAt":"2022-05-13T11:06:01.596Z","updatedAt":"2022-05-13T11:06:26.584Z","locale":"zh"}}]}}},{"id":111,"attributes":{"name":"甜橙金融","website":null,"createdAt":"2022-05-13T11:06:50.620Z","updatedAt":"2022-05-13T11:06:50.620Z","locale":"en","logo":{"data":{"id":242,"attributes":{"name":"甜橙金融.png","alternativeText":"甜橙金融.png","caption":"甜橙金融.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_甜橙金融.png","hash":"thumbnail__448c66753b","ext":".png","mime":"image/png","width":245,"height":73,"size":14.46,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__448c66753b.png"}},"hash":"_448c66753b","ext":".png","mime":"image/png","size":27.59,"url":"https://official-media.sphere-ex.com/_448c66753b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.476Z","updatedAt":"2022-05-13T08:56:21.476Z"}}},"localizations":{"data":[{"id":110,"attributes":{"name":"甜橙金融","website":null,"createdAt":"2022-05-13T11:06:40.170Z","updatedAt":"2022-05-13T11:06:50.639Z","locale":"zh"}}]}}},{"id":113,"attributes":{"name":"网易游戏","website":null,"createdAt":"2022-05-13T11:07:27.085Z","updatedAt":"2022-05-13T11:07:27.085Z","locale":"en","logo":{"data":{"id":243,"attributes":{"name":"网易游戏.png","alternativeText":"网易游戏.png","caption":"网易游戏.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_网易游戏.png","hash":"thumbnail__6c9d91cfde","ext":".png","mime":"image/png","width":245,"height":73,"size":14.59,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__6c9d91cfde.png"}},"hash":"_6c9d91cfde","ext":".png","mime":"image/png","size":30.86,"url":"https://official-media.sphere-ex.com/_6c9d91cfde.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:07:10.149Z","updatedAt":"2022-05-13T11:07:10.149Z"}}},"localizations":{"data":[{"id":112,"attributes":{"name":"网易游戏","website":null,"createdAt":"2022-05-13T11:07:17.490Z","updatedAt":"2022-05-13T11:07:27.108Z","locale":"zh"}}]}}},{"id":115,"attributes":{"name":"唯品会","website":null,"createdAt":"2022-05-13T11:07:47.052Z","updatedAt":"2022-05-13T11:07:47.052Z","locale":"en","logo":{"data":{"id":244,"attributes":{"name":"唯品会.png","alternativeText":"唯品会.png","caption":"唯品会.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_唯品会.png","hash":"thumbnail__73c4ab0fa5","ext":".png","mime":"image/png","width":245,"height":73,"size":7.59,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__73c4ab0fa5.png"}},"hash":"_73c4ab0fa5","ext":".png","mime":"image/png","size":9.44,"url":"https://official-media.sphere-ex.com/_73c4ab0fa5.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:07:10.159Z","updatedAt":"2022-05-13T11:07:10.159Z"}}},"localizations":{"data":[{"id":114,"attributes":{"name":"唯品会","website":null,"createdAt":"2022-05-13T11:07:38.182Z","updatedAt":"2022-05-13T11:07:47.075Z","locale":"zh"}}]}}},{"id":117,"attributes":{"name":"携程","website":null,"createdAt":"2022-05-13T11:10:33.475Z","updatedAt":"2022-05-13T11:10:33.475Z","locale":"en","logo":{"data":{"id":245,"attributes":{"name":"携程.png","alternativeText":"携程.png","caption":"携程.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_携程.png","hash":"thumbnail__b86b92e821","ext":".png","mime":"image/png","width":245,"height":73,"size":10.25,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__b86b92e821.png"}},"hash":"_b86b92e821","ext":".png","mime":"image/png","size":17.88,"url":"https://official-media.sphere-ex.com/_b86b92e821.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:10:15.339Z","updatedAt":"2022-05-13T11:10:15.339Z"}}},"localizations":{"data":[{"id":116,"attributes":{"name":"携程","website":null,"createdAt":"2022-05-13T11:10:23.100Z","updatedAt":"2022-05-13T11:10:33.504Z","locale":"zh"}}]}}},{"id":119,"attributes":{"name":"易车","website":null,"createdAt":"2022-05-13T11:13:35.354Z","updatedAt":"2022-05-13T11:13:35.354Z","locale":"en","logo":{"data":{"id":246,"attributes":{"name":"易车.png","alternativeText":"易车.png","caption":"易车.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_易车.png","hash":"thumbnail__e0cabfed8a","ext":".png","mime":"image/png","width":245,"height":73,"size":9.82,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__e0cabfed8a.png"}},"hash":"_e0cabfed8a","ext":".png","mime":"image/png","size":19.88,"url":"https://official-media.sphere-ex.com/_e0cabfed8a.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.094Z","updatedAt":"2022-05-13T11:13:19.094Z"}}},"localizations":{"data":[{"id":118,"attributes":{"name":"易车","website":null,"createdAt":"2022-05-13T11:13:25.517Z","updatedAt":"2022-05-13T11:13:35.381Z","locale":"zh"}}]}}},{"id":121,"attributes":{"name":"云学堂","website":null,"createdAt":"2022-05-13T11:13:56.105Z","updatedAt":"2022-05-13T11:13:56.105Z","locale":"en","logo":{"data":{"id":247,"attributes":{"name":"云学堂.png","alternativeText":"云学堂.png","caption":"云学堂.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_云学堂.png","hash":"thumbnail__38d46e9c1f","ext":".png","mime":"image/png","width":245,"height":73,"size":9.16,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__38d46e9c1f.png"}},"hash":"_38d46e9c1f","ext":".png","mime":"image/png","size":13.93,"url":"https://official-media.sphere-ex.com/_38d46e9c1f.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.212Z","updatedAt":"2022-05-13T11:13:19.212Z"}}},"localizations":{"data":[{"id":120,"attributes":{"name":"云学堂","website":null,"createdAt":"2022-05-13T11:13:46.465Z","updatedAt":"2022-05-13T11:13:56.133Z","locale":"zh"}}]}}},{"id":123,"attributes":{"name":"韵达","website":null,"createdAt":"2022-05-13T11:14:30.735Z","updatedAt":"2022-05-13T11:14:30.735Z","locale":"en","logo":{"data":{"id":248,"attributes":{"name":"韵达.png","alternativeText":"韵达.png","caption":"韵达.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_韵达.png","hash":"thumbnail__d887641689","ext":".png","mime":"image/png","width":245,"height":73,"size":5.93,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__d887641689.png"}},"hash":"_d887641689","ext":".png","mime":"image/png","size":5.19,"url":"https://official-media.sphere-ex.com/_d887641689.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.280Z","updatedAt":"2022-05-13T11:13:19.280Z"}}},"localizations":{"data":[{"id":122,"attributes":{"name":"韵达","website":null,"createdAt":"2022-05-13T11:14:22.755Z","updatedAt":"2022-05-13T11:14:30.758Z","locale":"zh"}}]}}},{"id":124,"attributes":{"name":"天涯社区","website":null,"createdAt":"2022-05-13T11:14:57.164Z","updatedAt":"2022-05-13T11:14:57.164Z","locale":"en","logo":{"data":{"id":240,"attributes":{"name":"天涯社区.png","alternativeText":"天涯社区.png","caption":"天涯社区.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_天涯社区.png","hash":"thumbnail__34fdcd8ea3","ext":".png","mime":"image/png","width":245,"height":73,"size":17.91,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__34fdcd8ea3.png"}},"hash":"_34fdcd8ea3","ext":".png","mime":"image/png","size":36.45,"url":"https://official-media.sphere-ex.com/_34fdcd8ea3.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T08:56:21.445Z","updatedAt":"2022-05-13T08:56:21.445Z"}}},"localizations":{"data":[{"id":107,"attributes":{"name":"天涯社区","website":null,"createdAt":"2022-05-13T08:57:19.133Z","updatedAt":"2022-05-13T11:14:57.190Z","locale":"zh"}}]}}},{"id":126,"attributes":{"name":"元气森林","website":null,"createdAt":"2022-05-13T11:15:29.243Z","updatedAt":"2022-05-13T11:15:29.243Z","locale":"en","logo":{"data":{"id":249,"attributes":{"name":"元气森林.png","alternativeText":"元气森林.png","caption":"元气森林.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_元气森林.png","hash":"thumbnail__13df5999cb","ext":".png","mime":"image/png","width":245,"height":73,"size":5.21,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__13df5999cb.png"}},"hash":"_13df5999cb","ext":".png","mime":"image/png","size":9.91,"url":"https://official-media.sphere-ex.com/_13df5999cb.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:13:19.354Z","updatedAt":"2022-05-13T11:13:19.354Z"}}},"localizations":{"data":[{"id":125,"attributes":{"name":"元气森林","website":null,"createdAt":"2022-05-13T11:15:18.862Z","updatedAt":"2022-05-13T11:15:29.267Z","locale":"zh"}}]}}},{"id":128,"attributes":{"name":"中通快递","website":null,"createdAt":"2022-05-13T11:16:29.062Z","updatedAt":"2022-05-13T11:16:29.062Z","locale":"en","logo":{"data":{"id":250,"attributes":{"name":"中通快递.png","alternativeText":"中通快递.png","caption":"中通快递.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_中通快递.png","hash":"thumbnail__dfc99996ce","ext":".png","mime":"image/png","width":245,"height":73,"size":8.56,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__dfc99996ce.png"}},"hash":"_dfc99996ce","ext":".png","mime":"image/png","size":15.26,"url":"https://official-media.sphere-ex.com/_dfc99996ce.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:10.523Z","updatedAt":"2022-05-13T11:16:10.523Z"}}},"localizations":{"data":[{"id":127,"attributes":{"name":"中通快递","website":null,"createdAt":"2022-05-13T11:16:17.997Z","updatedAt":"2022-05-13T11:16:29.091Z","locale":"zh"}}]}}},{"id":130,"attributes":{"name":"bilibili","website":null,"createdAt":"2022-05-13T11:17:02.221Z","updatedAt":"2022-05-13T11:17:02.221Z","locale":"en","logo":{"data":{"id":251,"attributes":{"name":"bilibili.png","alternativeText":"bilibili.png","caption":"bilibili.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_bilibili.png","hash":"thumbnail_bilibili_75aa2c0654","ext":".png","mime":"image/png","width":245,"height":73,"size":8.45,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_bilibili_75aa2c0654.png"}},"hash":"bilibili_75aa2c0654","ext":".png","mime":"image/png","size":14.23,"url":"https://official-media.sphere-ex.com/bilibili_75aa2c0654.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.177Z","updatedAt":"2022-05-13T11:16:47.177Z"}}},"localizations":{"data":[{"id":129,"attributes":{"name":"bilibili","website":null,"createdAt":"2022-05-13T11:16:55.526Z","updatedAt":"2022-05-13T11:17:02.244Z","locale":"zh"}}]}}},{"id":132,"attributes":{"name":"yaduo","website":null,"createdAt":"2022-05-13T11:17:25.836Z","updatedAt":"2022-05-13T11:17:25.836Z","locale":"en","logo":{"data":{"id":252,"attributes":{"name":"ATOUR.png","alternativeText":"ATOUR.png","caption":"ATOUR.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_ATOUR.png","hash":"thumbnail_ATOUR_43065721dc","ext":".png","mime":"image/png","width":245,"height":73,"size":3.9,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_ATOUR_43065721dc.png"}},"hash":"ATOUR_43065721dc","ext":".png","mime":"image/png","size":6.94,"url":"https://official-media.sphere-ex.com/ATOUR_43065721dc.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.243Z","updatedAt":"2022-05-13T11:16:47.243Z"}}},"localizations":{"data":[{"id":131,"attributes":{"name":"yaduo","website":null,"createdAt":"2022-05-13T11:17:14.350Z","updatedAt":"2022-05-13T11:17:25.860Z","locale":"zh"}}]}}},{"id":134,"attributes":{"name":"中移金融科技","website":null,"createdAt":"2022-05-13T11:18:01.671Z","updatedAt":"2022-05-13T11:18:01.671Z","locale":"en","logo":{"data":{"id":253,"attributes":{"name":"中移金融科技.png","alternativeText":"中移金融科技.png","caption":"中移金融科技.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_中移金融科技.png","hash":"thumbnail__8be830fc07","ext":".png","mime":"image/png","width":245,"height":73,"size":9.7,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__8be830fc07.png"}},"hash":"_8be830fc07","ext":".png","mime":"image/png","size":14.26,"url":"https://official-media.sphere-ex.com/_8be830fc07.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.279Z","updatedAt":"2022-05-13T11:16:47.279Z"}}},"localizations":{"data":[{"id":133,"attributes":{"name":"中移金融科技","website":null,"createdAt":"2022-05-13T11:17:55.006Z","updatedAt":"2022-05-13T11:18:01.693Z","locale":"zh"}}]}}},{"id":136,"attributes":{"name":"转转","website":null,"createdAt":"2022-05-13T11:18:17.642Z","updatedAt":"2022-05-13T11:18:17.642Z","locale":"en","logo":{"data":{"id":255,"attributes":{"name":"转转.png","alternativeText":"转转.png","caption":"转转.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_转转.png","hash":"thumbnail__03fdcefd4f","ext":".png","mime":"image/png","width":245,"height":73,"size":8.53,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__03fdcefd4f.png"}},"hash":"_03fdcefd4f","ext":".png","mime":"image/png","size":14.8,"url":"https://official-media.sphere-ex.com/_03fdcefd4f.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.319Z","updatedAt":"2022-05-13T11:16:47.319Z"}}},"localizations":{"data":[{"id":135,"attributes":{"name":"转转","website":null,"createdAt":"2022-05-13T11:18:11.675Z","updatedAt":"2022-05-13T11:18:17.664Z","locale":"zh"}}]}}},{"id":138,"attributes":{"name":"CIBN","website":null,"createdAt":"2022-05-13T11:18:42.111Z","updatedAt":"2022-05-13T11:18:42.111Z","locale":"en","logo":{"data":{"id":254,"attributes":{"name":"CIBN.png","alternativeText":"CIBN.png","caption":"CIBN.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_CIBN.png","hash":"thumbnail_CIBN_f326b4bb6e","ext":".png","mime":"image/png","width":245,"height":73,"size":10.91,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_CIBN_f326b4bb6e.png"}},"hash":"CIBN_f326b4bb6e","ext":".png","mime":"image/png","size":17.42,"url":"https://official-media.sphere-ex.com/CIBN_f326b4bb6e.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:16:47.319Z","updatedAt":"2022-05-13T11:16:47.319Z"}}},"localizations":{"data":[{"id":137,"attributes":{"name":"CIBN","website":null,"createdAt":"2022-05-13T11:18:31.316Z","updatedAt":"2022-05-13T11:18:42.136Z","locale":"zh"}}]}}},{"id":140,"attributes":{"name":"TCL","website":null,"createdAt":"2022-05-13T11:19:13.648Z","updatedAt":"2022-05-13T11:19:13.648Z","locale":"en","logo":{"data":{"id":256,"attributes":{"name":"TCL.png","alternativeText":"TCL.png","caption":"TCL.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_TCL.png","hash":"thumbnail_TCL_7d13dc3257","ext":".png","mime":"image/png","width":245,"height":73,"size":3.37,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_TCL_7d13dc3257.png"}},"hash":"TCL_7d13dc3257","ext":".png","mime":"image/png","size":4.61,"url":"https://official-media.sphere-ex.com/TCL_7d13dc3257.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.724Z","updatedAt":"2022-05-13T11:18:57.724Z"}}},"localizations":{"data":[{"id":139,"attributes":{"name":"TCL","website":null,"createdAt":"2022-05-13T11:19:06.784Z","updatedAt":"2022-05-13T11:19:13.669Z","locale":"zh"}}]}}},{"id":142,"attributes":{"name":"SOUL","website":null,"createdAt":"2022-05-13T11:19:35.462Z","updatedAt":"2022-05-13T11:19:35.462Z","locale":"en","logo":{"data":{"id":257,"attributes":{"name":"Soul.png","alternativeText":"Soul.png","caption":"Soul.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_Soul.png","hash":"thumbnail_Soul_d4e65f038d","ext":".png","mime":"image/png","width":245,"height":73,"size":7.48,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_Soul_d4e65f038d.png"}},"hash":"Soul_d4e65f038d","ext":".png","mime":"image/png","size":13.21,"url":"https://official-media.sphere-ex.com/Soul_d4e65f038d.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.791Z","updatedAt":"2022-05-13T11:18:57.791Z"}}},"localizations":{"data":[{"id":141,"attributes":{"name":"SOUL","website":null,"createdAt":"2022-05-13T11:19:28.899Z","updatedAt":"2022-05-13T11:19:35.488Z","locale":"zh"}}]}}},{"id":144,"attributes":{"name":"vivo","website":null,"createdAt":"2022-05-13T11:19:57.336Z","updatedAt":"2022-05-13T11:19:57.336Z","locale":"en","logo":{"data":{"id":258,"attributes":{"name":"vivo.png","alternativeText":"vivo.png","caption":"vivo.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_vivo.png","hash":"thumbnail_vivo_5b4a903f3b","ext":".png","mime":"image/png","width":245,"height":73,"size":7.7,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_vivo_5b4a903f3b.png"}},"hash":"vivo_5b4a903f3b","ext":".png","mime":"image/png","size":15.34,"url":"https://official-media.sphere-ex.com/vivo_5b4a903f3b.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.796Z","updatedAt":"2022-05-13T11:18:57.796Z"}}},"localizations":{"data":[{"id":143,"attributes":{"name":"vivo","website":null,"createdAt":"2022-05-13T11:19:50.897Z","updatedAt":"2022-05-13T11:19:57.357Z","locale":"zh"}}]}}},{"id":146,"attributes":{"name":"OPPO","website":null,"createdAt":"2022-05-13T11:20:15.954Z","updatedAt":"2022-05-13T11:20:15.954Z","locale":"en","logo":{"data":{"id":259,"attributes":{"name":"OPPO.png","alternativeText":"OPPO.png","caption":"OPPO.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_OPPO.png","hash":"thumbnail_OPPO_2a3767d1ca","ext":".png","mime":"image/png","width":245,"height":73,"size":4.3,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_OPPO_2a3767d1ca.png"}},"hash":"OPPO_2a3767d1ca","ext":".png","mime":"image/png","size":5.57,"url":"https://official-media.sphere-ex.com/OPPO_2a3767d1ca.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.906Z","updatedAt":"2022-05-13T11:18:57.906Z"}}},"localizations":{"data":[{"id":145,"attributes":{"name":"OPPO","website":null,"createdAt":"2022-05-13T11:20:10.065Z","updatedAt":"2022-05-13T11:20:15.977Z","locale":"zh"}}]}}},{"id":148,"attributes":{"name":"Keep","website":null,"createdAt":"2022-05-13T11:20:32.939Z","updatedAt":"2022-05-13T11:20:32.939Z","locale":"en","logo":{"data":{"id":260,"attributes":{"name":"Keep.png","alternativeText":"Keep.png","caption":"Keep.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_Keep.png","hash":"thumbnail_Keep_49456c2a4a","ext":".png","mime":"image/png","width":245,"height":73,"size":9.44,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail_Keep_49456c2a4a.png"}},"hash":"Keep_49456c2a4a","ext":".png","mime":"image/png","size":16.24,"url":"https://official-media.sphere-ex.com/Keep_49456c2a4a.png","previewUrl":null,"provider":"dine-strapi-provider-upload-aws-s3","provider_metadata":null,"createdAt":"2022-05-13T11:18:57.922Z","updatedAt":"2022-05-13T11:18:57.922Z"}}},"localizations":{"data":[{"id":147,"attributes":{"name":"Keep","website":null,"createdAt":"2022-05-13T11:20:27.179Z","updatedAt":"2022-05-13T11:20:32.964Z","locale":"zh"}}]}}},{"id":149,"attributes":{"name":"平安银行","website":null,"createdAt":"2022-05-16T02:40:57.467Z","updatedAt":"2022-05-16T02:41:12.840Z","locale":"en","logo":{"data":{"id":261,"attributes":{"name":"平安银行.png","alternativeText":"平安银行.png","caption":"平安银行.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_平安银行.png","hash":"thumbnail__5e1b99ec05","ext":".png","mime":"image/png","width":245,"height":73,"size":9.97,"path":null,"url":"https://official-media.sphere-ex.com/thumbnail__5e1b99ec05.png"}},"hash":"_5e1b99ec05","ext":".png","mime":"image/png","size":13.62,"url":"https://official-media.sphere-ex.com/_5e1b99ec05.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-05-16T02:40:48.928Z","updatedAt":"2022-05-16T02:40:48.928Z"}}},"localizations":{"data":[{"id":150,"attributes":{"name":"平安银行","website":null,"createdAt":"2022-05-16T02:41:12.800Z","updatedAt":"2022-05-16T02:41:12.800Z","locale":"zh"}}]}}},{"id":151,"attributes":{"name":"人大金仓","website":null,"createdAt":"2022-10-11T06:04:09.036Z","updatedAt":"2022-10-11T06:04:24.888Z","locale":"en","logo":{"data":{"id":404,"attributes":{"name":"人大金仓.png","alternativeText":"人大金仓.png","caption":"人大金仓.png","width":400,"height":120,"formats":{"thumbnail":{"name":"thumbnail_人大金仓.png","hash":"thumbnail__be56b73ca3","ext":".png","mime":"image/png","width":245,"height":73,"size":8.99,"path":null,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/thumbnail__be56b73ca3.png"}},"hash":"_be56b73ca3","ext":".png","mime":"image/png","size":15.25,"url":"https://sphereex-media-1305704183.cos.ap-beijing.myqcloud.com/_be56b73ca3.png","previewUrl":null,"provider":"strapi-provider-upload-s3-compat","provider_metadata":null,"createdAt":"2022-10-11T06:01:39.860Z","updatedAt":"2022-10-11T06:01:39.860Z"}}},"localizations":{"data":[{"id":152,"attributes":{"name":"人大金仓","website":null,"createdAt":"2022-10-11T06:04:24.860Z","updatedAt":"2022-10-11T06:04:24.860Z","locale":"zh"}}]}}}],"meta":{"pagination":{"start":0,"limit":100,"total":69}}}}}}},
    "staticQueryHashes": []}