form-sn-mapping.json
2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"version": "1.0",
"updated_at": "2026-02-06",
"description": "计划书 form_sn 映射表 - 后端根据产品返回对应的 form_sn,前端根据该字段选择模版组件",
"note": "所有配置细节(币种、缴费年期等)由前端处理,后端只需要返回正确的 form_sn 字段",
"templates": {
"LifeInsuranceTemplate": {
"name": "人寿保险模版",
"description": "用于人寿保险产品的计划书生成"
},
"CriticalIllnessTemplate": {
"name": "重疾保险模版",
"description": "用于重疾保险产品的计划书生成"
},
"SavingsTemplate": {
"name": "储蓄保险模版",
"description": "用于储蓄型保险产品的计划书生成(含提取计划)"
}
},
"mapping": {
"life-insurance-wiop3e": {
"product_name": "WIOP3E 盈传创富保障计划 3 - 优选版",
"template": "LifeInsuranceTemplate"
},
"life-insurance-wiop3": {
"product_name": "WIOP3 - 盈传创富保障计划 3",
"template": "LifeInsuranceTemplate"
},
"critical-illness-mpc": {
"product_name": "MPC 守护无间重疾",
"template": "CriticalIllnessTemplate"
},
"critical-illness-mbc-pro": {
"product_name": "MBC PRO 活跃人生重疾保 PRO",
"template": "CriticalIllnessTemplate"
},
"critical-illness-mbc2": {
"product_name": "MBC2 活跃人生重疾保 2",
"template": "CriticalIllnessTemplate"
},
"savings-gs": {
"product_name": "宏挚传承保障计划(GS)",
"template": "SavingsTemplate"
},
"savings-gc": {
"product_name": "宏挚家传保险计划(GC)",
"template": "SavingsTemplate"
},
"savings-fa": {
"product_name": "宏浚传承保障计划(FA)",
"template": "SavingsTemplate"
},
"savings-lv2": {
"product_name": "赤霞珠终身寿险计划2(LV2)",
"template": "SavingsTemplate"
}
},
"naming_convention": {
"format": "{模版类型}-{产品简称}",
"prefixes": {
"life-insurance-": "人寿保险",
"critical-illness-": "重疾保险",
"savings-": "储蓄保险"
}
},
"api_example": {
"product_list": {
"code": 1,
"data": [
{
"id": 1,
"product_name": "WIOP3E 盈传创富保障计划 3 - 优选版",
"form_sn": "life-insurance-wiop3e"
},
{
"id": 2,
"product_name": "MPC 守护无间重疾",
"form_sn": "critical-illness-mpc"
},
{
"id": 3,
"product_name": "宏挚传承保障计划",
"form_sn": "savings-gs"
}
]
}
}
}