4a42b95729eb26a1f630332369254bca20b2207c
[usecase-ui.git] /
1 export const COMMUNICATION_FORM_ITEMS = [
2     {
3         title: 'Communication Service Name',
4         key: 'name'
5     },
6     {
7         title: 'Max Number of UEs',
8         key: 'maxNumberofUEs'
9     },
10     {
11         title: 'Data Rate Downlink (Mbps)',
12         key: 'expDataRateDL'
13     },
14     {
15         title: 'Latency',
16         key: 'latency'
17     },
18     {
19         title: 'Data Rate Uplink (Mbps)',
20         key: 'expDataRateUL'
21     },
22     {
23         title: 'Resource Sharing Level',
24         key: 'resourceSharingLevel',
25         options: [
26             {
27                 title: 'Shared',
28                 key: 'shared'
29             },
30             {
31                 title: 'Non-shared',
32                 key: 'non-shared'
33             }
34         ]
35     },
36     {
37         title: 'Mobility',
38         key: 'uEMobilityLevel',
39         options: [
40             {
41                 title: 'Stationary',
42                 key: 'stationary'
43             },
44             {
45                 title: 'Nomadic',
46                 key: 'nomadic'
47             },
48             {
49                 title: 'Spatially Restricted Mobility',
50                 key: 'spatially restricted mobility'
51             },
52             {
53                 title: 'Fully Mobility',
54                 key: 'fully mobility'
55             }
56         ]
57     },
58     {
59         title: 'Area',
60         key: 'coverageArea'
61     },
62     {
63         title: 'Coverage Area Number',
64         key: 'coverageAreaNumber'
65     }
66 ]
67
68 export const COMMUNICATION_FORM_ADDRESS = [
69     {
70         "id": "1",
71         "name": "Beijing",
72         "city": [
73             {
74                 "id": "101",
75                 "name": "Beijing",
76                 "county": [
77                     {
78                         "id": "1001",
79                         "name": "Haiding District",
80                         "street": [
81                             {
82                                 "id": "100101",
83                                 "name": "Wanshoulu Street"
84                             },
85                             {
86                                 "id": "100102",
87                                 "name": "Zhongguancun Street"
88                             },
89                             {
90                                 "id": "100103",
91                                 "name": "Haidian Street"
92                             },
93                             {
94                                 "id": "100104",
95                                 "name": "Xisanqi Street"
96                             }
97                         ]
98                     },
99                     {
100                         "id": "1002",
101                         "name": "Xicheng District",
102                         "street": [
103                             {
104                                 "id": "100201",
105                                 "name": "Guang'anmenwai Street"
106                             },
107                             {
108                                 "id": "100202",
109                                 "name": "Xuanwumen Street"
110                             },
111                             {
112                                 "id": "100203",
113                                 "name": "West Changan Street"
114                             },
115                             {
116                                 "id": "100204",
117                                 "name": "Financial Street"
118                             }
119                         ]
120                     },
121                     {
122                         "id": "1003",
123                         "name": "Changping District",
124                         "street": [
125                             {
126                                 "id": "100301",
127                                 "name": "Chengbei Street"
128                             },
129                             {
130                                 "id": "100302",
131                                 "name": "Chengnan Street"
132                             },
133                             {
134                                 "id": "100303",
135                                 "name": "Tiantongyuan North Street"
136                             },
137                             {
138                                 "id": "100304",
139                                 "name": "Tiantongyuan South Street"
140                             }
141                         ]
142                     }
143                 ]
144             }
145         ]
146     },
147     {
148         "id": "2",
149         "name": "Shanghai",
150         "city": [{
151             "id": "201",
152             "name": "Shanghai City",
153             "county": [{
154                 "id": "2001",
155                 "name": "udongxin District",
156                 "street": [
157                     {
158                         "id": "200101",
159                         "name": "Lujiazui Street"
160                     },
161                     {
162                         "id": "200102",
163                         "name": "Zhoujiadu Street"
164                     },
165                     {
166                         "id": "200103",
167                         "name": "Tangqiao Street"
168                     },
169                     {
170                         "id": "200104",
171                         "name": "Nanquanlu Street"
172                     }
173                 ]
174             },
175                 {
176                     "id": "2002",
177                     "name": "Jingan District",
178                     "street": [
179                         {
180                             "id": "200201",
181                             "name": "Jiangning Lu Street"
182                         },
183                         {
184                             "id": "200202",
185                             "name": "Jing'an Temple Street"
186                         },
187                         {
188                             "id": "200203",
189                             "name": "Nanjing West Road Street"
190                         }
191                     ]
192                 }
193             ]
194         }]
195     }
196 ]