AI 速度 构建你的企业级 CRM

NTN gives technical teams the building blocks for a custom CRM that meets complex business needs and quickly adapts as the business evolves.

开始使用
NTN CRM
Companies
FilterSortOptions
Companies
Url
Created By
Address
Account Owner
ICP
ARR
Linkedin
Industry
Main contact
Employees
Opportunities
Added
Tata Consultancy logo
Tata Consultancy
tata.com
Aarav Sharma
BKC, Mumbai
Ananya Iyer
True
,500,000
tata-consultancy-services
IT Services
Aarav Sharma
614,000
E
Enterprise Transformation
Jul 1, 2023
Infosys logo
Infosys
infosys.com
Rohan Mehta
Electronic City, Bengaluru
Pooja Deshmukh
True
,200,000
infosys
IT Consulting
Pooja Deshmukh
328,000
C
Cloud Migration
Jul 3, 2023
Reliance Jio logo
Reliance Jio
jio.com
Kabir Verma
Ghansoli, Navi Mumbai
Kabir Verma
True
,800,000
jio
Telecom & Cloud
Neha Kapoor
75,000
5G
5G Enterprise Mesh
Jul 5, 2023
Zomato logo
Zomato
zomato.com
API
API - Key name
Cyber City, Gurugram
Priya Nair
True
,400,000
zomato
Food Tech
Priya Nair
4,800
H
Hyperpure B2B Expansion
Jul 8, 2023
Swiggy logo
Swiggy
swiggy.com
WF
Workflow name
Koramangala, Bengaluru
Aditya Patel
True
,900,000
swiggy-in
Quick Commerce
Aditya Patel
5,200
I
Instamart Logistics
Jul 12, 2023
Flipkart logo
Flipkart
flipkart.com
Vikram Malhotra
Bellandur, Bengaluru
Rhea Sen
True
,700,000
flipkart
E-Commerce
Rhea Sen
30,000
S
Seller Ecosystem Rollout
Jul 14, 2023
Razorpay logo
Razorpay
razorpay.com
Arjun Singhania
Koramangala, Bengaluru
Shreya Mukherjee
True
,100,000
razorpay
FinTech & Payments
Shreya Mukherjee
3,200
P
Payment Gateway 3.0
Jul 15, 2023
Zerodha logo
Zerodha
zerodha.com
Siddharth Roy
JP Nagar, Bengaluru
Tanvi Kulkarni
True
,800,000
zerodha
Stock Broking
Siddharth Roy
1,100
K
Kite Connect API Integration
Jul 17, 2023
Paytm logo
Paytm
paytm.com
Ananya Iyer
Sector 98, Noida
Aarav Sharma
False
,400,000
paytm
Digital Payments
Aarav Sharma
12,000
S
Soundbox Enterprise
Jul 20, 2023
Wipro logo
Wipro
wipro.com
Pooja Deshmukh
Sarjapur Road, Bengaluru
Rohan Mehta
True
,600,000
wipro
Enterprise Tech
Rohan Mehta
230,000
G
Global Infra AI
Jul 21, 2023
HCLTech logo
HCLTech
hcltech.com
Neha Kapoor
Sector 126, Noida
Kabir Verma
True
,900,000
hcltech
Cloud & Engineering
Neha Kapoor
220,000
D
Digital Engineering
Jul 23, 2023
CRED logo
CRED
cred.club
Priya Nair
Indiranagar, Bengaluru
Aditya Patel
True
,900,000
cred
FinTech
Aditya Patel
900
R
Rewards Marketplace
Jul 24, 2023
Ola logo
Ola
ola.com
SYS
System
Koramangala, Bengaluru
Vikram Malhotra
True
,600,000
olacabs
Mobility & EV
Vikram Malhotra
7,000
F
Fleet Electrification
Jul 25, 2023
Freshworks logo
Freshworks
freshworks.com
Tanvi Kulkarni
Guindy, Chennai
Arjun Singhania
True
,100,000
freshworks
SaaS
Arjun Singhania
5,000
O
Omnichannel Customer Care
Jul 1, 2023 2:25 pm
Calculate

Scaffold a launch-ops CRM in my workspace with rockets, launches, payloads, customers, and launch sites, with relevant actions for each.

…my-twenty-app/src/constants/schema-identifiers.ts

+84-0
1export const SCHEMA_IDS = {
2 rocket: { object: '733956fd-…', fields: { launches: '5b877c2a-…' } },
3 launch: { object: 'e7f1e750-…', fields: { rocket: '42c9106f-…' } },
4 payload: { object: '16ffcc45-…', fields: { customer: 'd84468aa-…' } },
5 launchSite: { object: '2f18d525-…', fields: { launches: 'b94b7f00-…' } },
79 unmodified lines

…my-twenty-app/src/objects/launch.object.ts

+237-0
1import { defineObject, FieldType, RelationType } from 'twenty-sdk';
3export default defineObject({
4 nameSingular: 'launch',
5 labelSingular: 'Launch', labelPlural: 'Launches',
6 icon: 'IconRocket',
7 fields: [
8 { name: 'missionCode', type: FieldType.TEXT, isUnique: true },
9 { name: 'status', type: FieldType.SELECT, options: [ … ] },
10 { name: 'plannedLaunchAt', type: FieldType.DATE_TIME },
11 { name: 'rocket', type: FieldType.RELATION, relationType: RelationType.MANY_TO_ONE },
226 unmodified lines

…my-twenty-app/src/objects/payload.object.ts

+198-0
1import { STANDARD_OBJECT } from 'twenty-sdk';
4 { name: 'payloadType', type: FieldType.SELECT },
5 { name: 'customer', type: FieldType.RELATION,
6 relationTargetObjectMetadataUniversalIdentifier: STANDARD_OBJECT.company.universalIdentifier,
7 universalSettings: { relationType: RelationType.MANY_TO_ONE, joinColumnName: 'companyId' },
8 },
190 unmodified lines

…my-twenty-app/src/objects/rocket.object.ts

+28-32
140 unmodified lines
141
141 {
142 name: 'launches',
143 type: FieldType.RELATION,
144 relationType: RelationType.ONE_TO_MANY,
145 relationTargetObjectMetadataUniversalIdentifier: SCHEMA_IDS.launch.object,
146 },

…my-twenty-app/src/views/upcoming-launches.view.ts

+82-0
1import { defineView, ViewFilterOperand, ViewType } from 'twenty-sdk';
3export default defineView({
4 name: 'Upcoming launches',
5 type: ViewType.TABLE,
6 filters: [
7 { fieldMetadataUniversalIdentifier: SCHEMA_IDS.launch.fields.plannedLaunchAt,
8 operand: ViewFilterOperand.IS_IN_FUTURE },
9 ],
73 unmodified lines

…my-twenty-app/src/__tests__/schema.integration-test.ts

+412-40
150 unmodified lines
151 expect(application.objects).toHaveLength(1);
151 expect(application.objects).toHaveLength(4);
152 expectObject(application.objects, SCHEMA_IDS.launch.object, 'launch', 'Launch');
153 expectObject(application.objects, SCHEMA_IDS.payload.object, 'payload', 'Payload');
154 expectObject(application.objects, SCHEMA_IDS.launchSite.object, 'launchSite', 'Launch site');
155 expectRelationPair(payloadCustomerField, [payload.object, STANDARD_OBJECT.company.universalIdentifier], [...]);
325 unmodified lines
EARLY PARTNERS
Your company logo belongs here.Work with us to build your customized CRM and grow together.
Your Logo Here

问题。

一款定制 CRM 能让你的组织占得先机,但构建它会带来权衡取舍

巨型单体

专有语言、缓慢的部署周期,以及“黑盒”逻辑。

内部开发负担

它很脆弱。V1 可以很快上线,但长期维护和变更却是一种负担。

别再接受这些权衡。

组装、迭代并适配一套稳健的 CRM,可以快速灵活变通

使用单一扩展工具包组合你的 CRM 和内部应用。

生产级质量

W3villa 将 Twenty 作为生产级框架,用于他们本来需要自行重建的数据模型、权限、身份验证和工作流引擎。

工程副总裁

W3villa Technologies

用于快速迭代的 AI

Alternative Partners 使用代理式 AI,把通常需要数周的 Salesforce 迁移工作压缩成一个人就能统筹的规模。

负责人兼创始人

Alternative Partners

无拖累的掌控力

AC&T moved to a self-hosted NTN instance with no vendor risk, no forced migration, and CRM costs reduced by more than 90%.

CRM 工程师

AC&T 教育迁移

01
02
03

从生产级积木组件开始搭建

使用单一扩展工具包组合你的 CRM 和内部应用:数据模型、布局和自动化。

持续无摩擦地迭代

使用你已经熟悉并喜爱的 AI 编码工具,享受无限自定义。让你的 CRM 随着业务的成长和获客方式灵活演进。

Stay in control with enterprise architecture

Don't get locked into rigid vendor silos. NTN provides high-performance infrastructure, unlimited customization, dedicated data privacy, and seamless API integration.

跳过那些定制方案里总是伴随而来的笨重 UX。

让你的 GTM 团队爱上 这款 CRM

熟悉、现代的界面

NTN makes it simple. It's clean, intuitive, and built to feel like Notion.

实时数据与 AI 架构

一切都实时更新,AI 对话随时待命,帮助你更快行动。

快速通往行动

智能模式、快捷方式和布局让日常任务执行得更快、更轻松。

已在生产环境运行。

Dev teams power company-wide change with NTN

W3villa

Ship a product on NTN

W3villa built W3Grads for AI mock interviews at scale, with NTN as the operational backbone.

AC&T

从头到尾掌控你的 CRM

AC&T replaced a shuttered vendor CRM with self-hosted NTN and cut CRM costs by more than 90%.

NetZero

用灵活的基础推动增长

NetZero runs a modular NTN setup across carbon credits, ag products, and industrial systems.

1/3

他们才是真正的销售力量

真正产生差异的是这种灵活性。我们的需求变化非常快。我发现一个新需求,只需点两下就能解决。当你在高速前进时,这是真正的优势。

我们不想只是给问题打补丁。我们想构建一些机构能够在大规模下依赖的东西,而这意味着要从足够扎实的基础开始,来支撑我们设想中的全部复杂性。

与 Salesforce 或 HubSpot 打交道相比,这真是愉快太多了。我的使命是让每个工具都能通过 API 访问,这样一切都能相互联通。Twenty 以一种旧式 CRM 平台根本做不到的方式实现了这一点。

Olivier Reinaud

NetZero 联合创始人

有任何问题吗?

Stop fighting rigid software. Start growing with NTN

开始使用