JD.com to list its property, industrial units in Hong Kong
itomcoil 2025-01-15 14:07 9 浏览
By YU Hao
Chinese e-commerce giant JD.com is planning to spin off two of its business units – JD property and JD industrials – through separate Hong Kong listings.
JD.com now holds 74.5 percent of JD Property and 78 percent of JD Industrials. After listing, JD.com will still hold more than 50 percent of each company, and both will remain its subsidiaries.
Right kind of development
Founded in 2018, JD Property builds and manages property – mostly industrial parks – at home and abroad. The company has more than 50 properties in China and 25 projects overseas. It also operates more than 100 megawatts of photovoltaic roof projects.
Back in 2018 when JD Property was founded, the Chinese government was tightening macro control policies on the property market and beefing up regulation of lending. The moves successfully curbed some leverage of real estate bubbles and encouraged the right kind of development. Having been founded at the very beginning of this tempestuous new era in China’s property market, JD Property was forged in a very different fire from China’s older developers.
Most of JD Property’s overseas projects are in Southeast Asia. Since 2021, it has invested heavily in logistics parks in Indonesia.
According to its prospectus, JD Property’s revenue grew from 582 million yuan (US$85 million) in 2020 to 2.3 billion yuan in 2022, with gross profit rising from 229 million yuan to 1.64 billion yuan.
Problem of efficiency
Marketing itself as a way of dealing with some of the low-efficiency, high-cost issues among Chinese enterprises, JD Industrial describes itself as a comprehensive provider of industrial supply-chain technology and services.
China's secondary industry output value rose from 33.3 trillion yuan to 48.3 trillion yuan between 2017 and 2022, with a compound annual growth rate of 7.7 percent. But statistics also showed that in 2022, operating costs of large-scale industrial enterprises in China accounted for 84.7 percent of total revenue; while data from the China Federation of Logistics & Purchasing indicated that the penetration rate of digital procurement in the country was only about 7.5 percent in 2022.
Independent operation
JD Industrials started to operate independently in 2017 and has so far closed two financing rounds that pushed its value to US$6.7 billion. At the end of 2022, JD Industrials was able to provide 48 product categories and approximately 42.5 million SKUs.
Data from China Insights Consultancy showed that in terms of GMV, JD Industrials is the largest service supply chain provider, occupying 4.1 percent of the total market. Its revenue grew quickly from 7 billion yuan in 2020 to 14 billion yuan last year.
相关推荐
- MySql安装与使用
-
介绍mysql是目前最流行的关系型数据库管理系统,在WEB应用方面MySQL是最好的RDBMS(RelationalDatabaseManagementSystem:关系数据库管理系统)应用软件...
- 使用AI来搭建一个用户系统,步骤应该是怎样的呢?
-
我给AI的第一个问题是这样的:创建一个java21+springboot3.4+mysql21的一个用户系统,需要使用JWT,支持多语言,使用swagger,这个用户系统都应该包含哪...
- Mysql 8.4数据库安装、新建用户和数据库、表单
-
1、下载MySQL数据库yuminstall-ywgetperlnet-toolslibtirpc#安装wget和perl、net-tools、libtirpcwgethtt...
- 介绍如何在 MySQL 中创建新用户并授予权限?
-
MySQL是一个开源的关系型数据库管理系统,常用于存储和管理大量的结构化数据。在使用MySQL进行数据管理时,为了安全和方便管理,通常需要创建新用户并授予相应的权限。本文将介绍如何在MySQL...
- Mysql创建用户和权限管理
-
MySQL是一个多用户的数据库,最高权限管理者是root用户,它拥有着最高的权限操作。包括select、update、delete、update、grant等操作。如果有其他用户想使用MySQL,那么...
- Mysql:创建用户详解
-
1、创建并授权用户--创建可从任何主机连接的用户CREATEUSER'myuser'@'%'IDENTIFIEDBY'mypassword'...
- Python 实现【字符匹配】
-
defis_match(s,pattern):m,n=len(s),len(pattern)dp=[[False]*(n+1)for_inrange...
- Python自动化:openpyxl工作簿、工作表相关操作
-
新建工作簿、工作表importopenpyxl#创建空白工作簿,会自动生成一个工作表:Sheetwb=openpyxl.Workbook()#新建工作表#create_sheet...
- python每日一练之三数排序
-
概述今天主要分享一个三树排序的实例,大家可以自己测试玩一下~需求输入三个整数x,y,z,请把这三个数由小到大输出。方法一:如果是要练练手就随便找个排序算法实现一下#usr/bin/python#...
- Python输出语句print()
-
Python中的输出语句主要通过内置函数print()实现,它可以灵活输出文本、变量、表达式结果等内容到控制台或其他文件。以下是详细介绍及示例:一、print()基本语法print(*object...
- Python设置excel表格格式,这3个属性6个模块,要表格好看
-
前言:通过前面两篇文章,我们用Python处理excel数据得到了结果并保存了文件。打开文件会发现,文件里表格是没有设置格式的,还需手动调整行高列宽等样式,很麻烦。其实,通过Python库模块,能轻松...
- python入门-day5-循环语句
-
以下是为“Day5:循环语句”设计的详细学习任务计划。这个任务旨在帮助初学者掌握Python中的循环语句(for和while),并通过实践理解它们的应用场景。Day5:循环语句学习目标...
- Python基础编程必备!涵盖常见语法与操作的代码示例合集
-
以下是一份Python基础代码示例合集,涵盖了常见的语法和操作,适合初学者快速掌握基本编程概念:1.基础语法python#打印输出print("Hello,World!")#变...
- Python循环语句实用教程
-
一、循环基础1.while循环基本语法:while条件表达式:循环体代码while循环流程图:应用示例:#简单计数器count=0whilecount<5:...
- 在 Python 中如何向一个已排序的数组(列表) 中插入一个数呢
-
在Python中如何向一个已排序的数组(列表)中插入一个数呢?方法有很多种,关键在于原来数组是什么样的排序,用到啥排序方法效率高,就用哪种。我们来练习其中的几种插入方法,另外也掌握下遍历数组的...
- 一周热门
- 最近发表
- 标签列表
-
- ps图案在哪里 (33)
- super().__init__ (33)
- python 获取日期 (34)
- 0xa (36)
- super().__init__()详解 (33)
- python安装包在哪里找 (33)
- linux查看python版本信息 (35)
- python怎么改成中文 (35)
- php文件怎么在浏览器运行 (33)
- eval在python中的意思 (33)
- python安装opencv库 (35)
- python div (34)
- sticky css (33)
- python中random.randint()函数 (34)
- python去掉字符串中的指定字符 (33)
- python入门经典100题 (34)
- anaconda安装路径 (34)
- yield和return的区别 (33)
- 1到10的阶乘之和是多少 (35)
- python安装sklearn库 (33)
- dom和bom区别 (33)
- js 替换指定位置的字符 (33)
- python判断元素是否存在 (33)
- sorted key (33)
- shutil.copy() (33)