Files
mipu-open/docs/07-03_contact-info.md
杨柳杰 b450b512a2 init: mipu-open 对外开放项目统一管理仓库
- 添加 mipu-api 作为 git submodule (Claude Code Skill)
- 迁移 API 文档源文件到 docs/ 目录统一维护
- 添加 Gitea Actions 工作流:tag推送自动打包docs并发布Release
- Skill 运行时自动从 mipu-open Release 下载最新文档

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-04 12:16:08 +08:00

38 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- mipuyun-api-doc: contact-info -->
# ContanctInfo
# ContactInfo 实体定义
Contact 实体用于描述航班订单的联系人信息,是航司与用户沟通的核心渠道,用于发送订单确认通知、电子行程单、航班变动提醒等关键信息。
```objective-c
"contactInfo": {
"firstName": "san",
"lastName": "zhang",
"address": "dfdsaqqq",
"phoneCountryCode": "0086",
"phone": "18912345678",
"email": "san.zhang@gmail.com",
"postCode": "310006",
"city": "hangzhou",
"province": "zejiang",
"country": "CN"
```
| **字段名** | **数据类型** | 是否必选 | **示例值** | **说明** |
| --- | --- | --- | --- | --- |
| firstName | String | 是 | San | 乘客名,需与证件名完全一致,国际航司不可填入中文 |
| lastName | String | 是 | Zhang | 乘客姓,需与证件姓完全一致,国际航司不可填入中文 |
| address | String | 否 | No. 88 Jianguo Road, Chaoyang District, Beijing | 联系人详细地址,用英语(字母)填写。是否必选取决于航司是否需要这个信息。 |
| phoneCountryCode | String | 是 | 0086 | 国家码 |
| phone | String | 是 | 18912345678 | 联系电话号码 |
| postcode | String | 否 | "100022" | 联系人地址对应的邮编(邮政编码)是否必选取决于航司是否需要这个信息。 |
| email | String | 是 | "name@emaildomain.com" | 联系人邮箱地址,需符合标准邮箱格式(如 "用户名 @域名"用于接收电子行程单ETicket、订单确认邮件、航班变动通知是订单关键凭证的主要发送渠道不可为空且需确保邮箱可正常接收邮件 |
| city | String | 否 | hangzhou | 联系地址城市 |
| province | String | 否 | zhejiang | 联系地址省/州 |
| country | String | 否 | CN | 联系地址国家码 |