@nocobase/plugin-workflow-test 0.18.0-alpha.1 → 0.18.0-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4250 @@
1
+ import { dayjs } from '@nocobase/utils';
2
+ import { lowerCase } from 'lodash';
3
+
4
+ /**
5
+ * 为json对象中collections节点的name、title属性添加后缀
6
+ * 为json对象中fields节点的collectionName、through、target性添加后缀
7
+ * @param jsonObj json对象
8
+ * @param appendText 后缀文本
9
+ */
10
+ export function appendJsonCollectionName(jsonObj: any, appendText: string) {
11
+ appendCollectionsNode(jsonObj, appendText);
12
+ for (const item of jsonObj['collections'][0]['fields']) {
13
+ appendFieldsNode(item, appendText);
14
+ }
15
+ return jsonObj;
16
+ }
17
+
18
+ function appendCollectionsNode(jsonObj: any, appendText: string) {
19
+ jsonObj['collections'][0]['name'] += appendText;
20
+ jsonObj['collections'][0]['title'] += appendText;
21
+ }
22
+
23
+ function appendFieldsNode(jsonObj: any, appendText: string) {
24
+ for (const key in jsonObj) {
25
+ if (key === 'collectionName' || key === 'through' || key === 'target') {
26
+ jsonObj[key] += appendText;
27
+ }
28
+ }
29
+ }
30
+
31
+ /**
32
+ * builtin_ 为NocoBase内置模板,同NocoBase在页面创建效果一致主要用法3种:
33
+ * 1是测试用例仅需一个无业务字段的表即可验证,
34
+ * 2是作为多对多的中间表,
35
+ * 3是存在先表后关系字段的情况,使用create内置模板表再update表的方式更新数据表来添加全部字段
36
+ * e2e_ 按照不同场景的数据表,可以多个测试用例共用一个或一套数据表
37
+ */
38
+ export const builtinGeneral = {
39
+ collections: [
40
+ {
41
+ key: 'hqh4qy21m46',
42
+ name: 'tt_amt_org',
43
+ title: '自动>组织[普通表]',
44
+ inherit: false,
45
+ hidden: false,
46
+ description: null,
47
+ fields: [
48
+ {
49
+ key: 'z3fvals50xp',
50
+ name: 'id',
51
+ type: 'bigInt',
52
+ interface: 'id',
53
+ description: null,
54
+ collectionName: 'tt_amt_org',
55
+ parentKey: null,
56
+ reverseKey: null,
57
+ autoIncrement: true,
58
+ primaryKey: true,
59
+ allowNull: false,
60
+ uiSchema: {
61
+ type: 'number',
62
+ title: '{{t("ID")}}',
63
+ 'x-component': 'InputNumber',
64
+ 'x-read-pretty': true,
65
+ },
66
+ },
67
+ {
68
+ key: '3cp1zy4ogle',
69
+ name: 'createdAt',
70
+ type: 'date',
71
+ interface: 'createdAt',
72
+ description: null,
73
+ collectionName: 'tt_amt_org',
74
+ parentKey: null,
75
+ reverseKey: null,
76
+ field: 'createdAt',
77
+ uiSchema: {
78
+ type: 'datetime',
79
+ title: '{{t("Created at")}}',
80
+ 'x-component': 'DatePicker',
81
+ 'x-component-props': {},
82
+ 'x-read-pretty': true,
83
+ },
84
+ },
85
+ {
86
+ key: '6l38n4nt7nb',
87
+ name: 'createdBy',
88
+ type: 'belongsTo',
89
+ interface: 'createdBy',
90
+ description: null,
91
+ collectionName: 'tt_amt_org',
92
+ parentKey: null,
93
+ reverseKey: null,
94
+ target: 'users',
95
+ foreignKey: 'createdById',
96
+ uiSchema: {
97
+ type: 'object',
98
+ title: '{{t("Created by")}}',
99
+ 'x-component': 'AssociationField',
100
+ 'x-component-props': {
101
+ fieldNames: {
102
+ value: 'id',
103
+ label: 'nickname',
104
+ },
105
+ },
106
+ 'x-read-pretty': true,
107
+ },
108
+ targetKey: 'id',
109
+ },
110
+ {
111
+ key: '3xds0p7ersr',
112
+ name: 'updatedAt',
113
+ type: 'date',
114
+ interface: 'updatedAt',
115
+ description: null,
116
+ collectionName: 'tt_amt_org',
117
+ parentKey: null,
118
+ reverseKey: null,
119
+ field: 'updatedAt',
120
+ uiSchema: {
121
+ type: 'string',
122
+ title: '{{t("Last updated at")}}',
123
+ 'x-component': 'DatePicker',
124
+ 'x-component-props': {},
125
+ 'x-read-pretty': true,
126
+ },
127
+ },
128
+ {
129
+ key: 'slqyx974mzc',
130
+ name: 'updatedBy',
131
+ type: 'belongsTo',
132
+ interface: 'updatedBy',
133
+ description: null,
134
+ collectionName: 'tt_amt_org',
135
+ parentKey: null,
136
+ reverseKey: null,
137
+ target: 'users',
138
+ foreignKey: 'updatedById',
139
+ uiSchema: {
140
+ type: 'object',
141
+ title: '{{t("Last updated by")}}',
142
+ 'x-component': 'AssociationField',
143
+ 'x-component-props': {
144
+ fieldNames: {
145
+ value: 'id',
146
+ label: 'nickname',
147
+ },
148
+ },
149
+ 'x-read-pretty': true,
150
+ },
151
+ targetKey: 'id',
152
+ },
153
+ ],
154
+ category: [],
155
+ logging: true,
156
+ autoGenId: true,
157
+ createdBy: true,
158
+ updatedBy: true,
159
+ createdAt: true,
160
+ updatedAt: true,
161
+ sortable: true,
162
+ template: 'general',
163
+ view: false,
164
+ schema: 'public',
165
+ },
166
+ ],
167
+ };
168
+
169
+ export const builtinCalendar = {
170
+ collections: [
171
+ {
172
+ key: '7lfgblnyr0w',
173
+ name: 'tt_amt_org_cld',
174
+ title: '自动>组织[日历表]',
175
+ inherit: false,
176
+ hidden: false,
177
+ description: null,
178
+ fields: [
179
+ {
180
+ key: 'nq6a40fz0nd',
181
+ name: 'cron',
182
+ type: 'string',
183
+ interface: 'select',
184
+ description: null,
185
+ collectionName: 'tt_amt_org_cld',
186
+ parentKey: null,
187
+ reverseKey: null,
188
+ uiSchema: {
189
+ type: 'string',
190
+ title: '{{t("Repeats")}}',
191
+ 'x-component': 'CronSet',
192
+ 'x-component-props': 'allowClear',
193
+ enum: [
194
+ {
195
+ label: '{{t("Daily")}}',
196
+ value: '0 0 0 * * ?',
197
+ },
198
+ {
199
+ label: '{{t("Weekly")}}',
200
+ value: 'every_week',
201
+ },
202
+ {
203
+ label: '{{t("Monthly")}}',
204
+ value: 'every_month',
205
+ },
206
+ {
207
+ label: '{{t("Yearly")}}',
208
+ value: 'every_year',
209
+ },
210
+ ],
211
+ },
212
+ },
213
+ {
214
+ key: 'qtxt638o4nq',
215
+ name: 'exclude',
216
+ type: 'json',
217
+ interface: null,
218
+ description: null,
219
+ collectionName: 'tt_amt_org_cld',
220
+ parentKey: null,
221
+ reverseKey: null,
222
+ },
223
+ {
224
+ key: 'ly88an4fg8f',
225
+ name: 'id',
226
+ type: 'bigInt',
227
+ interface: 'id',
228
+ description: null,
229
+ collectionName: 'tt_amt_org_cld',
230
+ parentKey: null,
231
+ reverseKey: null,
232
+ autoIncrement: true,
233
+ primaryKey: true,
234
+ allowNull: false,
235
+ uiSchema: {
236
+ type: 'number',
237
+ title: '{{t("ID")}}',
238
+ 'x-component': 'InputNumber',
239
+ 'x-read-pretty': true,
240
+ },
241
+ },
242
+ {
243
+ key: '8fiqtpovg79',
244
+ name: 'createdAt',
245
+ type: 'date',
246
+ interface: 'createdAt',
247
+ description: null,
248
+ collectionName: 'tt_amt_org_cld',
249
+ parentKey: null,
250
+ reverseKey: null,
251
+ field: 'createdAt',
252
+ uiSchema: {
253
+ type: 'datetime',
254
+ title: '{{t("Created at")}}',
255
+ 'x-component': 'DatePicker',
256
+ 'x-component-props': {},
257
+ 'x-read-pretty': true,
258
+ },
259
+ },
260
+ {
261
+ key: 'hup33jdnp9j',
262
+ name: 'createdBy',
263
+ type: 'belongsTo',
264
+ interface: 'createdBy',
265
+ description: null,
266
+ collectionName: 'tt_amt_org_cld',
267
+ parentKey: null,
268
+ reverseKey: null,
269
+ target: 'users',
270
+ foreignKey: 'createdById',
271
+ uiSchema: {
272
+ type: 'object',
273
+ title: '{{t("Created by")}}',
274
+ 'x-component': 'AssociationField',
275
+ 'x-component-props': {
276
+ fieldNames: {
277
+ value: 'id',
278
+ label: 'nickname',
279
+ },
280
+ },
281
+ 'x-read-pretty': true,
282
+ },
283
+ targetKey: 'id',
284
+ },
285
+ {
286
+ key: '4ky6wvfhduq',
287
+ name: 'updatedAt',
288
+ type: 'date',
289
+ interface: 'updatedAt',
290
+ description: null,
291
+ collectionName: 'tt_amt_org_cld',
292
+ parentKey: null,
293
+ reverseKey: null,
294
+ field: 'updatedAt',
295
+ uiSchema: {
296
+ type: 'string',
297
+ title: '{{t("Last updated at")}}',
298
+ 'x-component': 'DatePicker',
299
+ 'x-component-props': {},
300
+ 'x-read-pretty': true,
301
+ },
302
+ },
303
+ {
304
+ key: '1xht59blk26',
305
+ name: 'updatedBy',
306
+ type: 'belongsTo',
307
+ interface: 'updatedBy',
308
+ description: null,
309
+ collectionName: 'tt_amt_org_cld',
310
+ parentKey: null,
311
+ reverseKey: null,
312
+ target: 'users',
313
+ foreignKey: 'updatedById',
314
+ uiSchema: {
315
+ type: 'object',
316
+ title: '{{t("Last updated by")}}',
317
+ 'x-component': 'AssociationField',
318
+ 'x-component-props': {
319
+ fieldNames: {
320
+ value: 'id',
321
+ label: 'nickname',
322
+ },
323
+ },
324
+ 'x-read-pretty': true,
325
+ },
326
+ targetKey: 'id',
327
+ },
328
+ ],
329
+ category: [],
330
+ logging: true,
331
+ template: 'calendar',
332
+ view: false,
333
+ createdBy: true,
334
+ updatedBy: true,
335
+ createdAt: true,
336
+ updatedAt: true,
337
+ sortable: true,
338
+ schema: 'public',
339
+ },
340
+ ],
341
+ };
342
+
343
+ export const builtinTree = {
344
+ collections: [
345
+ {
346
+ key: 'wvgsufr1uxv',
347
+ name: 'tt_amt_org_tree',
348
+ title: '自动>组织[树表]',
349
+ inherit: false,
350
+ hidden: false,
351
+ description: null,
352
+ fields: [
353
+ {
354
+ key: '4ihc87rzn00',
355
+ name: 'parentId',
356
+ type: 'bigInt',
357
+ interface: 'integer',
358
+ description: null,
359
+ collectionName: 'tt_amt_org_tree',
360
+ parentKey: null,
361
+ reverseKey: null,
362
+ isForeignKey: true,
363
+ uiSchema: {
364
+ type: 'number',
365
+ title: '{{t("Parent ID")}}',
366
+ 'x-component': 'InputNumber',
367
+ 'x-read-pretty': true,
368
+ },
369
+ target: 'tt_amt_org_tree',
370
+ },
371
+ {
372
+ key: 'j58bfihyjdy',
373
+ name: 'parent',
374
+ type: 'belongsTo',
375
+ interface: 'm2o',
376
+ description: null,
377
+ collectionName: 'tt_amt_org_tree',
378
+ parentKey: null,
379
+ reverseKey: null,
380
+ foreignKey: 'parentId',
381
+ treeParent: true,
382
+ onDelete: 'CASCADE',
383
+ uiSchema: {
384
+ title: '{{t("Parent")}}',
385
+ 'x-component': 'AssociationField',
386
+ 'x-component-props': {
387
+ multiple: false,
388
+ fieldNames: {
389
+ label: 'id',
390
+ value: 'id',
391
+ },
392
+ },
393
+ },
394
+ target: 'tt_amt_org_tree',
395
+ targetKey: 'id',
396
+ },
397
+ {
398
+ key: '6r6b98g0hcz',
399
+ name: 'children',
400
+ type: 'hasMany',
401
+ interface: 'o2m',
402
+ description: null,
403
+ collectionName: 'tt_amt_org_tree',
404
+ parentKey: null,
405
+ reverseKey: null,
406
+ foreignKey: 'parentId',
407
+ treeChildren: true,
408
+ onDelete: 'CASCADE',
409
+ uiSchema: {
410
+ title: '{{t("Children")}}',
411
+ 'x-component': 'AssociationField',
412
+ 'x-component-props': {
413
+ multiple: true,
414
+ fieldNames: {
415
+ label: 'id',
416
+ value: 'id',
417
+ },
418
+ },
419
+ },
420
+ target: 'tt_amt_org_tree',
421
+ targetKey: 'id',
422
+ sourceKey: 'id',
423
+ },
424
+ {
425
+ key: 'hju1ggqps4n',
426
+ name: 'id',
427
+ type: 'bigInt',
428
+ interface: 'id',
429
+ description: null,
430
+ collectionName: 'tt_amt_org_tree',
431
+ parentKey: null,
432
+ reverseKey: null,
433
+ autoIncrement: true,
434
+ primaryKey: true,
435
+ allowNull: false,
436
+ uiSchema: {
437
+ type: 'number',
438
+ title: '{{t("ID")}}',
439
+ 'x-component': 'InputNumber',
440
+ 'x-read-pretty': true,
441
+ },
442
+ },
443
+ {
444
+ key: '1y7rpmh8muj',
445
+ name: 'createdAt',
446
+ type: 'date',
447
+ interface: 'createdAt',
448
+ description: null,
449
+ collectionName: 'tt_amt_org_tree',
450
+ parentKey: null,
451
+ reverseKey: null,
452
+ field: 'createdAt',
453
+ uiSchema: {
454
+ type: 'datetime',
455
+ title: '{{t("Created at")}}',
456
+ 'x-component': 'DatePicker',
457
+ 'x-component-props': {},
458
+ 'x-read-pretty': true,
459
+ },
460
+ },
461
+ {
462
+ key: 'ieknujjdkv9',
463
+ name: 'createdBy',
464
+ type: 'belongsTo',
465
+ interface: 'createdBy',
466
+ description: null,
467
+ collectionName: 'tt_amt_org_tree',
468
+ parentKey: null,
469
+ reverseKey: null,
470
+ target: 'users',
471
+ foreignKey: 'createdById',
472
+ uiSchema: {
473
+ type: 'object',
474
+ title: '{{t("Created by")}}',
475
+ 'x-component': 'AssociationField',
476
+ 'x-component-props': {
477
+ fieldNames: {
478
+ value: 'id',
479
+ label: 'nickname',
480
+ },
481
+ },
482
+ 'x-read-pretty': true,
483
+ },
484
+ targetKey: 'id',
485
+ },
486
+ {
487
+ key: 'cv35rzoqna6',
488
+ name: 'updatedAt',
489
+ type: 'date',
490
+ interface: 'updatedAt',
491
+ description: null,
492
+ collectionName: 'tt_amt_org_tree',
493
+ parentKey: null,
494
+ reverseKey: null,
495
+ field: 'updatedAt',
496
+ uiSchema: {
497
+ type: 'string',
498
+ title: '{{t("Last updated at")}}',
499
+ 'x-component': 'DatePicker',
500
+ 'x-component-props': {},
501
+ 'x-read-pretty': true,
502
+ },
503
+ },
504
+ {
505
+ key: 'z21wfpry7uh',
506
+ name: 'updatedBy',
507
+ type: 'belongsTo',
508
+ interface: 'updatedBy',
509
+ description: null,
510
+ collectionName: 'tt_amt_org_tree',
511
+ parentKey: null,
512
+ reverseKey: null,
513
+ target: 'users',
514
+ foreignKey: 'updatedById',
515
+ uiSchema: {
516
+ type: 'object',
517
+ title: '{{t("Last updated by")}}',
518
+ 'x-component': 'AssociationField',
519
+ 'x-component-props': {
520
+ fieldNames: {
521
+ value: 'id',
522
+ label: 'nickname',
523
+ },
524
+ },
525
+ 'x-read-pretty': true,
526
+ },
527
+ targetKey: 'id',
528
+ },
529
+ ],
530
+ category: [],
531
+ logging: true,
532
+ autoGenId: true,
533
+ createdBy: true,
534
+ updatedBy: true,
535
+ createdAt: true,
536
+ updatedAt: true,
537
+ sortable: true,
538
+ template: 'tree',
539
+ view: false,
540
+ tree: 'adjacencyList',
541
+ schema: 'public',
542
+ },
543
+ ],
544
+ };
545
+
546
+ export const builtinFile = {
547
+ collections: [
548
+ {
549
+ key: '6hzed4cvpxo',
550
+ name: 'tt_amt_file',
551
+ title: '自动>档案[文件表]',
552
+ inherit: false,
553
+ hidden: false,
554
+ description: null,
555
+ fields: [
556
+ {
557
+ key: 'qo0w8dcl45u',
558
+ name: 'title',
559
+ type: 'string',
560
+ interface: 'input',
561
+ description: null,
562
+ collectionName: 'tt_amt_file',
563
+ parentKey: null,
564
+ reverseKey: null,
565
+ deletable: false,
566
+ uiSchema: {
567
+ type: 'string',
568
+ title: '{{t("Title")}}',
569
+ 'x-component': 'Input',
570
+ },
571
+ },
572
+ {
573
+ key: 'ayzc9b3aee5',
574
+ name: 'filename',
575
+ type: 'string',
576
+ interface: 'input',
577
+ description: null,
578
+ collectionName: 'tt_amt_file',
579
+ parentKey: null,
580
+ reverseKey: null,
581
+ deletable: false,
582
+ uiSchema: {
583
+ type: 'string',
584
+ title: '{{t("File name", { ns: "file-manager" })}}',
585
+ 'x-component': 'Input',
586
+ 'x-read-pretty': true,
587
+ },
588
+ },
589
+ {
590
+ key: 'ftn60zv1rfr',
591
+ name: 'extname',
592
+ type: 'string',
593
+ interface: 'input',
594
+ description: null,
595
+ collectionName: 'tt_amt_file',
596
+ parentKey: null,
597
+ reverseKey: null,
598
+ deletable: false,
599
+ uiSchema: {
600
+ type: 'string',
601
+ title: '{{t("Extension name", { ns: "file-manager" })}}',
602
+ 'x-component': 'Input',
603
+ 'x-read-pretty': true,
604
+ },
605
+ },
606
+ {
607
+ key: '59oj6m0r8be',
608
+ name: 'size',
609
+ type: 'integer',
610
+ interface: 'integer',
611
+ description: null,
612
+ collectionName: 'tt_amt_file',
613
+ parentKey: null,
614
+ reverseKey: null,
615
+ deletable: false,
616
+ uiSchema: {
617
+ type: 'number',
618
+ title: '{{t("Size", { ns: "file-manager" })}}',
619
+ 'x-component': 'InputNumber',
620
+ 'x-read-pretty': true,
621
+ 'x-component-props': {
622
+ stringMode: true,
623
+ step: '0',
624
+ },
625
+ },
626
+ },
627
+ {
628
+ key: 'burt1tfbcjx',
629
+ name: 'mimetype',
630
+ type: 'string',
631
+ interface: 'input',
632
+ description: null,
633
+ collectionName: 'tt_amt_file',
634
+ parentKey: null,
635
+ reverseKey: null,
636
+ deletable: false,
637
+ uiSchema: {
638
+ type: 'string',
639
+ title: '{{t("Mime type", { ns: "file-manager" })}}',
640
+ 'x-component': 'Input',
641
+ 'x-read-pretty': true,
642
+ },
643
+ },
644
+ {
645
+ key: '1zfhbqod0i1',
646
+ name: 'path',
647
+ type: 'string',
648
+ interface: 'input',
649
+ description: null,
650
+ collectionName: 'tt_amt_file',
651
+ parentKey: null,
652
+ reverseKey: null,
653
+ deletable: false,
654
+ uiSchema: {
655
+ type: 'string',
656
+ title: '{{t("Path")}}',
657
+ 'x-component': 'Input',
658
+ 'x-read-pretty': true,
659
+ },
660
+ },
661
+ {
662
+ key: 'b0bmsmrfqqw',
663
+ name: 'url',
664
+ type: 'string',
665
+ interface: 'input',
666
+ description: null,
667
+ collectionName: 'tt_amt_file',
668
+ parentKey: null,
669
+ reverseKey: null,
670
+ deletable: false,
671
+ uiSchema: {
672
+ type: 'string',
673
+ title: '{{t("URL")}}',
674
+ 'x-component': 'Input.URL',
675
+ 'x-read-pretty': true,
676
+ },
677
+ },
678
+ {
679
+ key: 'indgsp9sqqq',
680
+ name: 'preview',
681
+ type: 'string',
682
+ interface: 'url',
683
+ description: null,
684
+ collectionName: 'tt_amt_file',
685
+ parentKey: null,
686
+ reverseKey: null,
687
+ field: 'url',
688
+ deletable: false,
689
+ uiSchema: {
690
+ type: 'string',
691
+ title: '{{t("Preview")}}',
692
+ 'x-component': 'Preview',
693
+ 'x-read-pretty': true,
694
+ },
695
+ },
696
+ {
697
+ key: '2p8d1h46x9l',
698
+ name: 'storage',
699
+ type: 'belongsTo',
700
+ interface: null,
701
+ description: null,
702
+ collectionName: 'tt_amt_file',
703
+ parentKey: null,
704
+ reverseKey: null,
705
+ comment: '存储引擎',
706
+ target: 'storages',
707
+ foreignKey: 'storageId',
708
+ deletable: false,
709
+ targetKey: 'id',
710
+ },
711
+ {
712
+ key: 'im0yegvb5jt',
713
+ name: 'meta',
714
+ type: 'jsonb',
715
+ interface: null,
716
+ description: null,
717
+ collectionName: 'tt_amt_file',
718
+ parentKey: null,
719
+ reverseKey: null,
720
+ deletable: false,
721
+ defaultValue: {},
722
+ },
723
+ {
724
+ key: 'tjr9nr5thoh',
725
+ name: 'id',
726
+ type: 'bigInt',
727
+ interface: 'id',
728
+ description: null,
729
+ collectionName: 'tt_amt_file',
730
+ parentKey: null,
731
+ reverseKey: null,
732
+ autoIncrement: true,
733
+ primaryKey: true,
734
+ allowNull: false,
735
+ uiSchema: {
736
+ type: 'number',
737
+ title: '{{t("ID")}}',
738
+ 'x-component': 'InputNumber',
739
+ 'x-read-pretty': true,
740
+ },
741
+ },
742
+ {
743
+ key: 's48vjiqbjcq',
744
+ name: 'createdAt',
745
+ type: 'date',
746
+ interface: 'createdAt',
747
+ description: null,
748
+ collectionName: 'tt_amt_file',
749
+ parentKey: null,
750
+ reverseKey: null,
751
+ field: 'createdAt',
752
+ uiSchema: {
753
+ type: 'datetime',
754
+ title: '{{t("Created at")}}',
755
+ 'x-component': 'DatePicker',
756
+ 'x-component-props': {},
757
+ 'x-read-pretty': true,
758
+ },
759
+ },
760
+ {
761
+ key: 'y3t7jii4m8w',
762
+ name: 'createdBy',
763
+ type: 'belongsTo',
764
+ interface: 'createdBy',
765
+ description: null,
766
+ collectionName: 'tt_amt_file',
767
+ parentKey: null,
768
+ reverseKey: null,
769
+ target: 'users',
770
+ foreignKey: 'createdById',
771
+ uiSchema: {
772
+ type: 'object',
773
+ title: '{{t("Created by")}}',
774
+ 'x-component': 'RecordPicker',
775
+ 'x-component-props': {
776
+ fieldNames: {
777
+ value: 'id',
778
+ label: 'nickname',
779
+ },
780
+ },
781
+ 'x-read-pretty': true,
782
+ },
783
+ targetKey: 'id',
784
+ },
785
+ {
786
+ key: 'z5gvejdbfyb',
787
+ name: 'updatedAt',
788
+ type: 'date',
789
+ interface: 'updatedAt',
790
+ description: null,
791
+ collectionName: 'tt_amt_file',
792
+ parentKey: null,
793
+ reverseKey: null,
794
+ field: 'updatedAt',
795
+ uiSchema: {
796
+ type: 'string',
797
+ title: '{{t("Last updated at")}}',
798
+ 'x-component': 'DatePicker',
799
+ 'x-component-props': {},
800
+ 'x-read-pretty': true,
801
+ },
802
+ },
803
+ {
804
+ key: 'qgd8zko7b0z',
805
+ name: 'updatedBy',
806
+ type: 'belongsTo',
807
+ interface: 'updatedBy',
808
+ description: null,
809
+ collectionName: 'tt_amt_file',
810
+ parentKey: null,
811
+ reverseKey: null,
812
+ target: 'users',
813
+ foreignKey: 'updatedById',
814
+ uiSchema: {
815
+ type: 'object',
816
+ title: '{{t("Last updated by")}}',
817
+ 'x-component': 'RecordPicker',
818
+ 'x-component-props': {
819
+ fieldNames: {
820
+ value: 'id',
821
+ label: 'nickname',
822
+ },
823
+ },
824
+ 'x-read-pretty': true,
825
+ },
826
+ targetKey: 'id',
827
+ },
828
+ ],
829
+ category: [],
830
+ logging: true,
831
+ template: 'file',
832
+ view: false,
833
+ createdBy: true,
834
+ updatedBy: true,
835
+ storage: 'local',
836
+ schema: 'public',
837
+ },
838
+ ],
839
+ };
840
+
841
+ export const builtinExpression = {
842
+ collections: [
843
+ {
844
+ key: 'w77iro3197g',
845
+ name: 'tt_amt_exp',
846
+ title: '自动>表达式[表达式表]',
847
+ inherit: false,
848
+ hidden: false,
849
+ description: null,
850
+ fields: [
851
+ {
852
+ key: 'slc2i7yz2ck',
853
+ name: 'engine',
854
+ type: 'string',
855
+ interface: 'radioGroup',
856
+ description: null,
857
+ collectionName: 'tt_amt_exp',
858
+ parentKey: null,
859
+ reverseKey: null,
860
+ uiSchema: {
861
+ type: 'string',
862
+ title: '{{t("Calculation engine")}}',
863
+ 'x-component': 'Radio.Group',
864
+ enum: [
865
+ {
866
+ value: 'math.js',
867
+ label: 'Math.js',
868
+ tooltip:
869
+ "{{t('Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types')}}",
870
+ link: 'https://mathjs.org/',
871
+ },
872
+ {
873
+ value: 'formula.js',
874
+ label: 'Formula.js',
875
+ tooltip: '{{t("Formula.js supports most Microsoft Excel formula functions.")}}',
876
+ link: 'https://formulajs.info/functions/',
877
+ },
878
+ ],
879
+ default: 'formula.js',
880
+ },
881
+ },
882
+ {
883
+ key: 'mlvkdcg2yvq',
884
+ name: 'sourceCollection',
885
+ type: 'string',
886
+ interface: 'select',
887
+ description: null,
888
+ collectionName: 'tt_amt_exp',
889
+ parentKey: null,
890
+ reverseKey: null,
891
+ uiSchema: {
892
+ type: 'string',
893
+ title: '{{t("Collection")}}',
894
+ 'x-component': 'CollectionSelect',
895
+ 'x-component-props': {},
896
+ },
897
+ },
898
+ {
899
+ key: 'vdzigakt9ne',
900
+ name: 'expression',
901
+ type: 'text',
902
+ interface: 'expression',
903
+ description: null,
904
+ collectionName: 'tt_amt_exp',
905
+ parentKey: null,
906
+ reverseKey: null,
907
+ uiSchema: {
908
+ type: 'string',
909
+ title: '{{t("Expression")}}',
910
+ 'x-component': 'DynamicExpression',
911
+ },
912
+ },
913
+ {
914
+ key: 'fx72pqt0fjv',
915
+ name: 'id',
916
+ type: 'bigInt',
917
+ interface: 'id',
918
+ description: null,
919
+ collectionName: 'tt_amt_exp',
920
+ parentKey: null,
921
+ reverseKey: null,
922
+ autoIncrement: true,
923
+ primaryKey: true,
924
+ allowNull: false,
925
+ uiSchema: {
926
+ type: 'number',
927
+ title: '{{t("ID")}}',
928
+ 'x-component': 'InputNumber',
929
+ 'x-read-pretty': true,
930
+ },
931
+ },
932
+ {
933
+ key: 'owiio66cw1u',
934
+ name: 'createdAt',
935
+ type: 'date',
936
+ interface: 'createdAt',
937
+ description: null,
938
+ collectionName: 'tt_amt_exp',
939
+ parentKey: null,
940
+ reverseKey: null,
941
+ field: 'createdAt',
942
+ uiSchema: {
943
+ type: 'datetime',
944
+ title: '{{t("Created at")}}',
945
+ 'x-component': 'DatePicker',
946
+ 'x-component-props': {},
947
+ 'x-read-pretty': true,
948
+ },
949
+ },
950
+ {
951
+ key: '9fu8kmc69dj',
952
+ name: 'createdBy',
953
+ type: 'belongsTo',
954
+ interface: 'createdBy',
955
+ description: null,
956
+ collectionName: 'tt_amt_exp',
957
+ parentKey: null,
958
+ reverseKey: null,
959
+ target: 'users',
960
+ foreignKey: 'createdById',
961
+ uiSchema: {
962
+ type: 'object',
963
+ title: '{{t("Created by")}}',
964
+ 'x-component': 'RecordPicker',
965
+ 'x-component-props': {
966
+ fieldNames: {
967
+ value: 'id',
968
+ label: 'nickname',
969
+ },
970
+ },
971
+ 'x-read-pretty': true,
972
+ },
973
+ targetKey: 'id',
974
+ },
975
+ {
976
+ key: 'uie8q16z2jj',
977
+ name: 'updatedAt',
978
+ type: 'date',
979
+ interface: 'updatedAt',
980
+ description: null,
981
+ collectionName: 'tt_amt_exp',
982
+ parentKey: null,
983
+ reverseKey: null,
984
+ field: 'updatedAt',
985
+ uiSchema: {
986
+ type: 'string',
987
+ title: '{{t("Last updated at")}}',
988
+ 'x-component': 'DatePicker',
989
+ 'x-component-props': {},
990
+ 'x-read-pretty': true,
991
+ },
992
+ },
993
+ {
994
+ key: '6jzyuc1jzro',
995
+ name: 'updatedBy',
996
+ type: 'belongsTo',
997
+ interface: 'updatedBy',
998
+ description: null,
999
+ collectionName: 'tt_amt_exp',
1000
+ parentKey: null,
1001
+ reverseKey: null,
1002
+ target: 'users',
1003
+ foreignKey: 'updatedById',
1004
+ uiSchema: {
1005
+ type: 'object',
1006
+ title: '{{t("Last updated by")}}',
1007
+ 'x-component': 'RecordPicker',
1008
+ 'x-component-props': {
1009
+ fieldNames: {
1010
+ value: 'id',
1011
+ label: 'nickname',
1012
+ },
1013
+ },
1014
+ 'x-read-pretty': true,
1015
+ },
1016
+ targetKey: 'id',
1017
+ },
1018
+ ],
1019
+ category: [],
1020
+ logging: true,
1021
+ template: 'expression',
1022
+ view: false,
1023
+ createdBy: true,
1024
+ updatedBy: true,
1025
+ createdAt: true,
1026
+ updatedAt: true,
1027
+ sortable: true,
1028
+ schema: 'public',
1029
+ },
1030
+ ],
1031
+ };
1032
+
1033
+ //普通表单表场景,无关系字段情况
1034
+ export const generalWithNoRelationalFields = {
1035
+ collections: [
1036
+ {
1037
+ key: '86lpobjxamt',
1038
+ name: 'tt_amt_org',
1039
+ title: '自动>组织[普通表]',
1040
+ inherit: false,
1041
+ hidden: false,
1042
+ fields: [
1043
+ {
1044
+ key: 'ohxa8xp9amt',
1045
+ name: 'id',
1046
+ type: 'bigInt',
1047
+ interface: 'id',
1048
+ collectionName: 'tt_amt_org',
1049
+ parentKey: null,
1050
+ reverseKey: null,
1051
+ autoIncrement: true,
1052
+ primaryKey: true,
1053
+ allowNull: false,
1054
+ uiSchema: {
1055
+ type: 'number',
1056
+ title: '{{t("ID")}}',
1057
+ 'x-component': 'InputNumber',
1058
+ 'x-read-pretty': true,
1059
+ },
1060
+ },
1061
+ {
1062
+ key: 'qjit9pcvamt',
1063
+ name: 'createdAt',
1064
+ type: 'date',
1065
+ interface: 'createdAt',
1066
+ collectionName: 'tt_amt_org',
1067
+ parentKey: null,
1068
+ reverseKey: null,
1069
+ field: 'createdAt',
1070
+ uiSchema: {
1071
+ type: 'datetime',
1072
+ title: '{{t("Created at")}}',
1073
+ 'x-component': 'DatePicker',
1074
+ 'x-component-props': {},
1075
+ 'x-read-pretty': true,
1076
+ },
1077
+ },
1078
+ {
1079
+ key: 'vijs3wcnamt',
1080
+ name: 'createdBy',
1081
+ type: 'belongsTo',
1082
+ interface: 'createdBy',
1083
+ collectionName: 'tt_amt_org',
1084
+ parentKey: null,
1085
+ reverseKey: null,
1086
+ target: 'users',
1087
+ foreignKey: 'createdById',
1088
+ uiSchema: {
1089
+ type: 'object',
1090
+ title: '{{t("Created by")}}',
1091
+ 'x-component': 'AssociationField',
1092
+ 'x-component-props': {
1093
+ fieldNames: {
1094
+ value: 'id',
1095
+ label: 'nickname',
1096
+ },
1097
+ },
1098
+ 'x-read-pretty': true,
1099
+ },
1100
+ targetKey: 'id',
1101
+ },
1102
+ {
1103
+ key: 'zsebjtwiamt',
1104
+ name: 'updatedAt',
1105
+ type: 'date',
1106
+ interface: 'updatedAt',
1107
+ collectionName: 'tt_amt_org',
1108
+ parentKey: null,
1109
+ reverseKey: null,
1110
+ field: 'updatedAt',
1111
+ uiSchema: {
1112
+ type: 'string',
1113
+ title: '{{t("Last updated at")}}',
1114
+ 'x-component': 'DatePicker',
1115
+ 'x-component-props': {},
1116
+ 'x-read-pretty': true,
1117
+ },
1118
+ },
1119
+ {
1120
+ key: 'fa4c74phamt',
1121
+ name: 'updatedBy',
1122
+ type: 'belongsTo',
1123
+ interface: 'updatedBy',
1124
+ collectionName: 'tt_amt_org',
1125
+ parentKey: null,
1126
+ reverseKey: null,
1127
+ target: 'users',
1128
+ foreignKey: 'updatedById',
1129
+ uiSchema: {
1130
+ type: 'object',
1131
+ title: '{{t("Last updated by")}}',
1132
+ 'x-component': 'AssociationField',
1133
+ 'x-component-props': {
1134
+ fieldNames: {
1135
+ value: 'id',
1136
+ label: 'nickname',
1137
+ },
1138
+ },
1139
+ 'x-read-pretty': true,
1140
+ },
1141
+ targetKey: 'id',
1142
+ },
1143
+ {
1144
+ key: 'mv6h7f8lamt',
1145
+ name: 'orgcode',
1146
+ type: 'sequence',
1147
+ interface: 'sequence',
1148
+ collectionName: 'tt_amt_org',
1149
+ parentKey: null,
1150
+ reverseKey: null,
1151
+ patterns: [
1152
+ {
1153
+ type: 'string',
1154
+ options: {
1155
+ value: '区域编码',
1156
+ },
1157
+ },
1158
+ {
1159
+ type: 'integer',
1160
+ options: {
1161
+ digits: 9,
1162
+ start: 1,
1163
+ key: 57450,
1164
+ },
1165
+ },
1166
+ ],
1167
+ uiSchema: {
1168
+ type: 'string',
1169
+ 'x-component': 'Input',
1170
+ 'x-component-props': {},
1171
+ title: '公司编号(自动编码)',
1172
+ },
1173
+ inputable: false,
1174
+ },
1175
+ {
1176
+ key: '44u5zoyyamt',
1177
+ name: 'orgname',
1178
+ type: 'string',
1179
+ interface: 'input',
1180
+ collectionName: 'tt_amt_org',
1181
+ parentKey: null,
1182
+ reverseKey: null,
1183
+ uiSchema: {
1184
+ type: 'string',
1185
+ 'x-component': 'Input',
1186
+ title: '公司名称(单行文本)',
1187
+ },
1188
+ },
1189
+ {
1190
+ key: 'tdq82bb0amt',
1191
+ name: 'address',
1192
+ type: 'text',
1193
+ interface: 'textarea',
1194
+ collectionName: 'tt_amt_org',
1195
+ parentKey: null,
1196
+ reverseKey: null,
1197
+ uiSchema: {
1198
+ type: 'string',
1199
+ 'x-component': 'Input.TextArea',
1200
+ title: '公司地址(多行文本)',
1201
+ },
1202
+ },
1203
+ {
1204
+ key: '10xi6i24amt',
1205
+ name: 'phone',
1206
+ type: 'string',
1207
+ interface: 'phone',
1208
+ collectionName: 'tt_amt_org',
1209
+ parentKey: null,
1210
+ reverseKey: null,
1211
+ uiSchema: {
1212
+ type: 'string',
1213
+ 'x-component': 'Input',
1214
+ 'x-component-props': {
1215
+ type: 'tel',
1216
+ },
1217
+ title: '负责人电话(手机号码)',
1218
+ },
1219
+ },
1220
+ {
1221
+ key: 'n3ykqhe4amt',
1222
+ name: 'email',
1223
+ type: 'string',
1224
+ interface: 'email',
1225
+ collectionName: 'tt_amt_org',
1226
+ parentKey: null,
1227
+ reverseKey: null,
1228
+ uiSchema: {
1229
+ type: 'string',
1230
+ 'x-component': 'Input',
1231
+ 'x-validator': 'email',
1232
+ title: '电子邮箱(电子邮箱)',
1233
+ },
1234
+ },
1235
+ {
1236
+ key: '5ddcgbpqamt',
1237
+ name: 'staffnum',
1238
+ type: 'bigInt',
1239
+ interface: 'integer',
1240
+ collectionName: 'tt_amt_org',
1241
+ parentKey: null,
1242
+ reverseKey: null,
1243
+ uiSchema: {
1244
+ type: 'number',
1245
+ 'x-component': 'InputNumber',
1246
+ 'x-component-props': {
1247
+ stringMode: true,
1248
+ step: '1',
1249
+ },
1250
+ 'x-validator': 'integer',
1251
+ title: '员工人数(整数)',
1252
+ },
1253
+ },
1254
+ {
1255
+ key: 'z59sf4ilamt',
1256
+ name: 'insurednum',
1257
+ type: 'bigInt',
1258
+ interface: 'integer',
1259
+ collectionName: 'tt_amt_org',
1260
+ parentKey: null,
1261
+ reverseKey: null,
1262
+ uiSchema: {
1263
+ type: 'number',
1264
+ 'x-component': 'InputNumber',
1265
+ 'x-component-props': {
1266
+ stringMode: true,
1267
+ step: '1',
1268
+ },
1269
+ 'x-validator': 'integer',
1270
+ title: '参保人数(整数)',
1271
+ },
1272
+ },
1273
+ {
1274
+ key: 'ecvb3a8xamt',
1275
+ name: 'regcapital',
1276
+ type: 'double',
1277
+ interface: 'number',
1278
+ collectionName: 'tt_amt_org',
1279
+ parentKey: null,
1280
+ reverseKey: null,
1281
+ uiSchema: {
1282
+ 'x-component-props': {
1283
+ step: '0.0001',
1284
+ stringMode: true,
1285
+ },
1286
+ type: 'number',
1287
+ 'x-component': 'InputNumber',
1288
+ title: '注册资本(数字)',
1289
+ },
1290
+ },
1291
+ {
1292
+ key: 'ierg1fbvamt',
1293
+ name: 'paidcapital',
1294
+ type: 'double',
1295
+ interface: 'number',
1296
+ collectionName: 'tt_amt_org',
1297
+ parentKey: null,
1298
+ reverseKey: null,
1299
+ uiSchema: {
1300
+ 'x-component-props': {
1301
+ step: '0.0001',
1302
+ stringMode: true,
1303
+ },
1304
+ type: 'number',
1305
+ 'x-component': 'InputNumber',
1306
+ title: '实缴资本(数字)',
1307
+ },
1308
+ },
1309
+ {
1310
+ key: '46kjnywaamt',
1311
+ name: 'insuranceratio',
1312
+ type: 'float',
1313
+ interface: 'percent',
1314
+ collectionName: 'tt_amt_org',
1315
+ parentKey: null,
1316
+ reverseKey: null,
1317
+ uiSchema: {
1318
+ 'x-component-props': {
1319
+ step: '0.01',
1320
+ stringMode: true,
1321
+ addonAfter: '%',
1322
+ },
1323
+ type: 'string',
1324
+ 'x-component': 'Percent',
1325
+ title: '参保占比(百分比)',
1326
+ },
1327
+ },
1328
+ {
1329
+ key: '8j2vkys9amt',
1330
+ name: 'isenable',
1331
+ type: 'boolean',
1332
+ interface: 'checkbox',
1333
+ collectionName: 'tt_amt_org',
1334
+ parentKey: null,
1335
+ reverseKey: null,
1336
+ uiSchema: {
1337
+ type: 'boolean',
1338
+ 'x-component': 'Checkbox',
1339
+ title: '是否启用(勾选)',
1340
+ },
1341
+ },
1342
+ {
1343
+ key: '6f480de5amt',
1344
+ name: 'status_singleselect',
1345
+ type: 'string',
1346
+ interface: 'select',
1347
+ collectionName: 'tt_amt_org',
1348
+ parentKey: null,
1349
+ reverseKey: null,
1350
+ uiSchema: {
1351
+ enum: [
1352
+ {
1353
+ value: '1',
1354
+ label: '存续',
1355
+ },
1356
+ {
1357
+ value: '2',
1358
+ label: '在业',
1359
+ },
1360
+ {
1361
+ value: '3',
1362
+ label: '吊销',
1363
+ },
1364
+ {
1365
+ value: '4',
1366
+ label: '注销',
1367
+ },
1368
+ {
1369
+ value: '5',
1370
+ label: '迁入',
1371
+ },
1372
+ {
1373
+ value: '6',
1374
+ label: '迁出',
1375
+ },
1376
+ {
1377
+ value: '7',
1378
+ label: '停业',
1379
+ },
1380
+ {
1381
+ value: '8',
1382
+ label: '清算',
1383
+ },
1384
+ ],
1385
+ type: 'string',
1386
+ 'x-component': 'Select',
1387
+ title: '公司状态(下拉单选)',
1388
+ },
1389
+ },
1390
+ {
1391
+ key: 'fcx8cw1ramt',
1392
+ name: 'range_multipleselect',
1393
+ type: 'array',
1394
+ interface: 'multipleSelect',
1395
+ collectionName: 'tt_amt_org',
1396
+ parentKey: null,
1397
+ reverseKey: null,
1398
+ uiSchema: {
1399
+ enum: [
1400
+ {
1401
+ value: 'F3134',
1402
+ label: '软件销售',
1403
+ },
1404
+ {
1405
+ value: 'I3006',
1406
+ label: '软件开发',
1407
+ },
1408
+ {
1409
+ value: 'I3007',
1410
+ label: '人工智能基础软件开发',
1411
+ },
1412
+ {
1413
+ value: 'I3008',
1414
+ label: '人工智能应用软件开发',
1415
+ },
1416
+ {
1417
+ value: 'I3010',
1418
+ label: '软件外包服务',
1419
+ },
1420
+ {
1421
+ value: 'I3011',
1422
+ label: '网络与信息安全软件开发',
1423
+ },
1424
+ {
1425
+ value: 'I3012',
1426
+ label: '人工智能理论与算法软件开发',
1427
+ },
1428
+ {
1429
+ value: 'I3014',
1430
+ label: '数字文化创意软件开发',
1431
+ },
1432
+ {
1433
+ value: 'I3027',
1434
+ label: '信息技术咨询服务',
1435
+ },
1436
+ {
1437
+ value: 'I3032',
1438
+ label: '数据处理服务',
1439
+ },
1440
+ {
1441
+ value: 'I3034',
1442
+ label: '计算机系统服务',
1443
+ },
1444
+ {
1445
+ value: 'L2032',
1446
+ label: '信息咨询服务(不含许可类信息咨询服务)',
1447
+ },
1448
+ {
1449
+ value: 'L2095',
1450
+ label: '企业管理咨询',
1451
+ },
1452
+ {
1453
+ value: 'M2070',
1454
+ label: '技术服务、技术开发、技术咨询、技术交流、技术转让、技术推广',
1455
+ },
1456
+ {
1457
+ value: 'O3010',
1458
+ label: '咨询策划服务',
1459
+ },
1460
+ {
1461
+ value: 'P1029',
1462
+ label: '业务培训(不含教育培训、职业技能培训等需取得许可的培训)',
1463
+ },
1464
+ ],
1465
+ type: 'array',
1466
+ 'x-component': 'Select',
1467
+ 'x-component-props': {
1468
+ mode: 'multiple',
1469
+ },
1470
+ title: '经营范围(下拉多选)',
1471
+ },
1472
+ defaultValue: [],
1473
+ },
1474
+ {
1475
+ key: 'z71al7aaamt',
1476
+ name: 'status_radio',
1477
+ type: 'string',
1478
+ interface: 'radioGroup',
1479
+ collectionName: 'tt_amt_org',
1480
+ parentKey: null,
1481
+ reverseKey: null,
1482
+ uiSchema: {
1483
+ enum: [
1484
+ {
1485
+ value: '1',
1486
+ label: '存续',
1487
+ },
1488
+ {
1489
+ value: '2',
1490
+ label: '在业',
1491
+ },
1492
+ {
1493
+ value: '3',
1494
+ label: '吊销',
1495
+ },
1496
+ {
1497
+ value: '4',
1498
+ label: '注销',
1499
+ },
1500
+ {
1501
+ value: '5',
1502
+ label: '迁入',
1503
+ },
1504
+ {
1505
+ value: '6',
1506
+ label: '迁出',
1507
+ },
1508
+ {
1509
+ value: '7',
1510
+ label: '停业',
1511
+ },
1512
+ {
1513
+ value: '8',
1514
+ label: '清算',
1515
+ },
1516
+ ],
1517
+ type: 'string',
1518
+ 'x-component': 'Radio.Group',
1519
+ title: '公司状态(单选)',
1520
+ },
1521
+ },
1522
+ {
1523
+ key: 'x8v9qf95amt',
1524
+ name: 'range_check',
1525
+ type: 'array',
1526
+ interface: 'checkboxGroup',
1527
+ collectionName: 'tt_amt_org',
1528
+ parentKey: null,
1529
+ reverseKey: null,
1530
+ uiSchema: {
1531
+ enum: [
1532
+ {
1533
+ value: 'F3134',
1534
+ label: '软件销售',
1535
+ },
1536
+ {
1537
+ value: 'I3006',
1538
+ label: '软件开发',
1539
+ },
1540
+ {
1541
+ value: 'I3007',
1542
+ label: '人工智能基础软件开发',
1543
+ },
1544
+ {
1545
+ value: 'I3008',
1546
+ label: '人工智能应用软件开发',
1547
+ },
1548
+ {
1549
+ value: 'I3010',
1550
+ label: '软件外包服务',
1551
+ },
1552
+ {
1553
+ value: 'I3011',
1554
+ label: '网络与信息安全软件开发',
1555
+ },
1556
+ {
1557
+ value: 'I3012',
1558
+ label: '人工智能理论与算法软件开发',
1559
+ },
1560
+ {
1561
+ value: 'I3014',
1562
+ label: '数字文化创意软件开发',
1563
+ },
1564
+ {
1565
+ value: 'I3027',
1566
+ label: '信息技术咨询服务',
1567
+ },
1568
+ {
1569
+ value: 'I3032',
1570
+ label: '数据处理服务',
1571
+ },
1572
+ {
1573
+ value: 'I3034',
1574
+ label: '计算机系统服务',
1575
+ },
1576
+ {
1577
+ value: 'L2032',
1578
+ label: '信息咨询服务(不含许可类信息咨询服务)',
1579
+ },
1580
+ {
1581
+ value: 'L2095',
1582
+ label: '企业管理咨询',
1583
+ },
1584
+ {
1585
+ value: 'M2070',
1586
+ label: '技术服务、技术开发、技术咨询、技术交流、技术转让、技术推广',
1587
+ },
1588
+ {
1589
+ value: 'O3010',
1590
+ label: '咨询策划服务',
1591
+ },
1592
+ {
1593
+ value: 'P1029',
1594
+ label: '业务培训(不含教育培训、职业技能培训等需取得许可的培训)',
1595
+ },
1596
+ ],
1597
+ type: 'string',
1598
+ 'x-component': 'Checkbox.Group',
1599
+ title: '经营范围(复选)',
1600
+ },
1601
+ defaultValue: [],
1602
+ },
1603
+ {
1604
+ key: 'c50l1zguamt',
1605
+ name: 'range_markdown',
1606
+ type: 'text',
1607
+ interface: 'markdown',
1608
+ collectionName: 'tt_amt_org',
1609
+ parentKey: null,
1610
+ reverseKey: null,
1611
+ uiSchema: {
1612
+ type: 'string',
1613
+ 'x-component': 'Markdown',
1614
+ title: '经营范围(Markdown)',
1615
+ },
1616
+ },
1617
+ {
1618
+ key: 'msj1qa4damt',
1619
+ name: 'range_richtext',
1620
+ type: 'text',
1621
+ interface: 'richText',
1622
+ collectionName: 'tt_amt_org',
1623
+ parentKey: null,
1624
+ reverseKey: null,
1625
+ uiSchema: {
1626
+ type: 'string',
1627
+ 'x-component': 'RichText',
1628
+ title: '经营范围(富文本)',
1629
+ },
1630
+ },
1631
+ {
1632
+ key: 'q755hkxmamt',
1633
+ name: 'establishdate',
1634
+ type: 'date',
1635
+ interface: 'datetime',
1636
+ collectionName: 'tt_amt_org',
1637
+ parentKey: null,
1638
+ reverseKey: null,
1639
+ uiSchema: {
1640
+ 'x-component-props': {
1641
+ dateFormat: 'YYYY-MM-DD',
1642
+ gmt: false,
1643
+ showTime: false,
1644
+ },
1645
+ type: 'string',
1646
+ 'x-component': 'DatePicker',
1647
+ title: '成立日期(日期)',
1648
+ },
1649
+ },
1650
+ {
1651
+ key: '9kn4ujeramt',
1652
+ name: 'range_json',
1653
+ type: 'json',
1654
+ interface: 'json',
1655
+ collectionName: 'tt_amt_org',
1656
+ parentKey: null,
1657
+ reverseKey: null,
1658
+ defaultValue: null,
1659
+ uiSchema: {
1660
+ type: 'object',
1661
+ 'x-component': 'Input.JSON',
1662
+ 'x-component-props': {
1663
+ autoSize: {
1664
+ minRows: 5,
1665
+ },
1666
+ },
1667
+ default: null,
1668
+ title: '经营范围(JSON)',
1669
+ },
1670
+ },
1671
+ {
1672
+ key: 'vqcsj7htamt',
1673
+ name: 'url',
1674
+ type: 'string',
1675
+ interface: 'url',
1676
+ collectionName: 'tt_amt_org',
1677
+ parentKey: null,
1678
+ reverseKey: null,
1679
+ uiSchema: {
1680
+ type: 'string',
1681
+ title: '官网地址(URL)',
1682
+ 'x-component': 'Input.URL',
1683
+ },
1684
+ },
1685
+ {
1686
+ key: '0naiw2nq4j0',
1687
+ name: 'insuranceratio_formula',
1688
+ type: 'formula',
1689
+ interface: 'formula',
1690
+ collectionName: 'tt_amt_org',
1691
+ parentKey: null,
1692
+ reverseKey: null,
1693
+ dataType: 'double',
1694
+ uiSchema: {
1695
+ 'x-component-props': {
1696
+ step: '0.01',
1697
+ stringMode: true,
1698
+ },
1699
+ type: 'number',
1700
+ 'x-component': 'Formula.Result',
1701
+ 'x-read-pretty': true,
1702
+ title: '参保占比(公式)',
1703
+ },
1704
+ engine: 'math.js',
1705
+ expression: '100*{{insurednum}}/{{staffnum}}',
1706
+ },
1707
+ {
1708
+ key: 'fd9sqp8usoj',
1709
+ name: 'sharesnum',
1710
+ type: 'bigInt',
1711
+ interface: 'integer',
1712
+ collectionName: 'tt_amt_org',
1713
+ parentKey: null,
1714
+ reverseKey: null,
1715
+ uiSchema: {
1716
+ type: 'number',
1717
+ 'x-component': 'InputNumber',
1718
+ 'x-component-props': {
1719
+ stringMode: true,
1720
+ step: '1',
1721
+ },
1722
+ 'x-validator': 'integer',
1723
+ title: '股票数量(整数)',
1724
+ },
1725
+ },
1726
+ {
1727
+ key: 'fd9sqp8uamt',
1728
+ name: 'testdataid',
1729
+ type: 'bigInt',
1730
+ interface: 'integer',
1731
+ collectionName: 'tt_amt_org',
1732
+ parentKey: null,
1733
+ reverseKey: null,
1734
+ uiSchema: {
1735
+ type: 'number',
1736
+ 'x-component': 'InputNumber',
1737
+ 'x-component-props': {
1738
+ stringMode: true,
1739
+ step: '1',
1740
+ },
1741
+ 'x-validator': 'integer',
1742
+ title: '测试数据id',
1743
+ },
1744
+ },
1745
+ ],
1746
+ category: [],
1747
+ logging: true,
1748
+ autoGenId: true,
1749
+ createdBy: true,
1750
+ updatedBy: true,
1751
+ createdAt: true,
1752
+ updatedAt: true,
1753
+ sortable: true,
1754
+ template: 'general',
1755
+ },
1756
+ ],
1757
+ };
1758
+
1759
+ export const generalWithNoRelationalFieldsData = [
1760
+ {
1761
+ createdAt: '2023-07-16T21:30:58.000Z',
1762
+ updatedAt: '2023-06-20T03:32:01.000Z',
1763
+ createdById: 0,
1764
+ updatedById: 3,
1765
+ testdataid: 86,
1766
+ orgcode: '350086',
1767
+ orgname: 'Black Logistic LLC',
1768
+ address: '闵行区宾川路314号',
1769
+ phone: '21-040-5877',
1770
+ email: 'cwlam@mail.com',
1771
+ url: 'http://www.osara.co.jp/Food',
1772
+ staffnum: 25,
1773
+ regcapital: 85.8799,
1774
+ paidcapital: 297.1762,
1775
+ insuranceratio: 29.93,
1776
+ isenable: true,
1777
+ status_singleselect: '1',
1778
+ range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027'],
1779
+ status_radio: '4',
1780
+ range_check: ['I3010', 'I3011', 'I3014', 'I3027', 'L2095', 'M2070', 'O3010'],
1781
+ establishdate: '2022-03-17T19:44:50.000Z',
1782
+ },
1783
+ {
1784
+ createdAt: '2023-07-13T13:20:10.000Z',
1785
+ updatedAt: '2023-07-10T02:25:11.737Z',
1786
+ createdById: 4,
1787
+ updatedById: null,
1788
+ testdataid: 41,
1789
+ orgcode: '230041',
1790
+ orgname: '孙記有限责任公司',
1791
+ address: '770 Shennan E Rd, Cai Wu Wei, Luohu District',
1792
+ phone: '755-4939-4147',
1793
+ email: 'kars16@icloud.com',
1794
+ url: 'http://www.lamhy.org/HouseholdKitchenAppliances',
1795
+ staffnum: 67,
1796
+ regcapital: 14.9121,
1797
+ paidcapital: 215.5018,
1798
+ insuranceratio: 42.26,
1799
+ isenable: true,
1800
+ status_singleselect: '7',
1801
+ range_multipleselect: [
1802
+ 'F3134',
1803
+ 'I3006',
1804
+ 'I3007',
1805
+ 'I3008',
1806
+ 'I3012',
1807
+ 'I3014',
1808
+ 'I3027',
1809
+ 'I3034',
1810
+ 'L2095',
1811
+ 'M2070',
1812
+ 'P1029',
1813
+ ],
1814
+ status_radio: '1',
1815
+ range_check: ['F3134', 'I3010', 'I3032', 'I3034', 'O3010', 'P1029'],
1816
+ establishdate: '2022-08-01T01:51:06.000Z',
1817
+ },
1818
+ {
1819
+ createdAt: '2023-03-14T23:05:00.000Z',
1820
+ updatedAt: '2023-07-10T02:25:11.729Z',
1821
+ createdById: null,
1822
+ updatedById: 4,
1823
+ testdataid: 27,
1824
+ orgcode: '340027',
1825
+ orgname: 'Lisa Telecommunication Inc.',
1826
+ address: '43 Zhongshan 5th Rd, Zimaling Shangquan',
1827
+ phone: '760-7344-2889',
1828
+ email: 'onnaku@gmail.com',
1829
+ url: 'https://video.ziyihe404.net/CenturionGardenOutdoor',
1830
+ staffnum: 104,
1831
+ regcapital: 237.9354,
1832
+ paidcapital: 131.6008,
1833
+ insuranceratio: 4.22,
1834
+ isenable: true,
1835
+ status_singleselect: '2',
1836
+ range_multipleselect: ['F3134', 'I3032', 'I3034', 'L2032', 'M2070', 'O3010'],
1837
+ status_radio: '6',
1838
+ range_check: ['F3134', 'I3006', 'I3008', 'I3012', 'M2070', 'O3010'],
1839
+ establishdate: '2021-02-19T00:02:48.000Z',
1840
+ },
1841
+ {
1842
+ createdAt: '2023-08-20T18:07:24.000Z',
1843
+ updatedAt: '2023-07-10T02:25:11.741Z',
1844
+ createdById: 5,
1845
+ updatedById: null,
1846
+ testdataid: 77,
1847
+ orgcode: '450077',
1848
+ orgname: '子异有限责任公司',
1849
+ address: '619 4th Section Renmin South Road, Jinjiang District',
1850
+ phone: '174-6088-1418',
1851
+ email: 'taoshihan1@hotmail.com',
1852
+ url: 'https://www.litc908.jp/ArtsHandicraftsSewing',
1853
+ staffnum: 37,
1854
+ regcapital: 237.5694,
1855
+ paidcapital: 94.707,
1856
+ insuranceratio: null,
1857
+ isenable: true,
1858
+ status_singleselect: '2',
1859
+ range_multipleselect: ['F3134', 'I3008', 'I3011', 'I3014'],
1860
+ status_radio: '5',
1861
+ range_check: ['I3006', 'I3007', 'I3008', 'I3010', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010'],
1862
+ establishdate: '2023-10-07T23:30:43.000Z',
1863
+ },
1864
+ {
1865
+ createdAt: '2023-07-11T07:34:49.000Z',
1866
+ updatedAt: '2023-07-10T02:25:11.736Z',
1867
+ createdById: 5,
1868
+ updatedById: null,
1869
+ testdataid: 25,
1870
+ orgcode: '550025',
1871
+ orgname: '赵記发展贸易有限责任公司',
1872
+ address: '607 Sanlitun Road, Chaoyang District',
1873
+ phone: '144-4751-3753',
1874
+ email: null,
1875
+ url: 'https://video.kakeungw.net/VideoGames',
1876
+ staffnum: 64,
1877
+ regcapital: 78.8595,
1878
+ paidcapital: 71.565,
1879
+ insuranceratio: 58.15,
1880
+ isenable: true,
1881
+ status_singleselect: '7',
1882
+ range_multipleselect: ['F3134', 'I3006', 'I3011', 'I3027', 'I3032', 'L2032', 'L2095'],
1883
+ status_radio: '6',
1884
+ range_check: ['I3008', 'I3027', 'I3034', 'L2032', 'O3010', 'P1029'],
1885
+ establishdate: null,
1886
+ },
1887
+ {
1888
+ createdAt: '2023-04-28T09:13:50.000Z',
1889
+ updatedAt: '2023-05-29T08:08:24.000Z',
1890
+ createdById: 6,
1891
+ updatedById: 5,
1892
+ testdataid: 66,
1893
+ orgcode: '440066',
1894
+ orgname: '吴技术有限责任公司',
1895
+ address: '793 Hongqiao Rd., Xu Hui District',
1896
+ phone: '21-0094-0906',
1897
+ email: 'yyut@icloud.com',
1898
+ url: 'https://video.yeowtszhin.us/Appliances',
1899
+ staffnum: 45,
1900
+ regcapital: null,
1901
+ paidcapital: 76.1281,
1902
+ insuranceratio: 76.17,
1903
+ isenable: true,
1904
+ status_singleselect: '2',
1905
+ range_multipleselect: ['F3134', 'I3008', 'I3011', 'I3014', 'I3027', 'I3034', 'L2032', 'O3010'],
1906
+ status_radio: '4',
1907
+ range_check: ['F3134', 'I3011', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'O3010', 'P1029'],
1908
+ establishdate: '2023-09-08T01:51:09.000Z',
1909
+ },
1910
+ {
1911
+ createdAt: '2023-03-20T17:13:24.000Z',
1912
+ updatedAt: '2023-05-16T04:16:34.000Z',
1913
+ createdById: 1,
1914
+ updatedById: 6,
1915
+ testdataid: 62,
1916
+ orgcode: '510062',
1917
+ orgname: 'Salazar Food LLC',
1918
+ address: '716 Huaxia St, Jinghua Shangquan',
1919
+ phone: '198-4847-7122',
1920
+ email: 'auwingfat1219@gmail.com',
1921
+ url: 'https://www.xielu.us/CellPhonesAccessories',
1922
+ staffnum: 131,
1923
+ regcapital: 273.1562,
1924
+ paidcapital: 287.3437,
1925
+ insuranceratio: 76.86,
1926
+ isenable: true,
1927
+ status_singleselect: '7',
1928
+ range_multipleselect: [
1929
+ 'I3006',
1930
+ 'I3007',
1931
+ 'I3008',
1932
+ 'I3010',
1933
+ 'I3011',
1934
+ 'I3012',
1935
+ 'I3032',
1936
+ 'L2032',
1937
+ 'L2095',
1938
+ 'O3010',
1939
+ 'P1029',
1940
+ ],
1941
+ status_radio: '5',
1942
+ range_check: [
1943
+ 'F3134',
1944
+ 'I3006',
1945
+ 'I3007',
1946
+ 'I3011',
1947
+ 'I3014',
1948
+ 'I3027',
1949
+ 'I3034',
1950
+ 'L2032',
1951
+ 'L2095',
1952
+ 'M2070',
1953
+ 'O3010',
1954
+ 'P1029',
1955
+ ],
1956
+ establishdate: '2021-12-14T18:38:12.000Z',
1957
+ },
1958
+ {
1959
+ createdAt: '2023-05-10T18:09:11.000Z',
1960
+ updatedAt: '2023-08-13T01:37:53.000Z',
1961
+ createdById: 9,
1962
+ updatedById: 1,
1963
+ testdataid: 20,
1964
+ orgcode: '620020',
1965
+ orgname: '岚有限责任公司',
1966
+ address: '8 Tremont Road',
1967
+ phone: '614-635-9277',
1968
+ email: 'salazar1985@gmail.com',
1969
+ url: 'https://www.gordemily.com/FilmSupplies',
1970
+ staffnum: null,
1971
+ regcapital: 219.7301,
1972
+ paidcapital: 63.6256,
1973
+ insuranceratio: 45.43,
1974
+ isenable: null,
1975
+ status_singleselect: '8',
1976
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'P1029'],
1977
+ status_radio: '8',
1978
+ range_check: ['F3134', 'I3006', 'I3011', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070'],
1979
+ establishdate: '2022-07-05T10:21:51.000Z',
1980
+ },
1981
+ {
1982
+ createdAt: '2023-05-05T06:12:02.000Z',
1983
+ updatedAt: '2023-05-04T19:41:58.000Z',
1984
+ createdById: 3,
1985
+ updatedById: 6,
1986
+ testdataid: 31,
1987
+ orgcode: '430031',
1988
+ orgname: 'Hughes LLC',
1989
+ address: '980 4th Section Renmin South Road, Jinjiang District',
1990
+ phone: '147-7853-0142',
1991
+ email: 'scao@mail.com',
1992
+ url: 'http://image.ikedayu1224.com/Baby',
1993
+ staffnum: 135,
1994
+ regcapital: 139.2834,
1995
+ paidcapital: 173.014,
1996
+ insuranceratio: 62.83,
1997
+ isenable: true,
1998
+ status_singleselect: '2',
1999
+ range_multipleselect: ['F3134', 'I3006', 'I3014', 'I3032', 'I3034', 'P1029'],
2000
+ status_radio: '2',
2001
+ range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3034', 'M2070', 'O3010', 'P1029'],
2002
+ establishdate: '2023-11-10T02:30:06.000Z',
2003
+ },
2004
+ {
2005
+ createdAt: '2023-05-03T05:56:11.000Z',
2006
+ updatedAt: '2023-07-29T02:33:20.000Z',
2007
+ createdById: 8,
2008
+ updatedById: 4,
2009
+ testdataid: 55,
2010
+ orgcode: '310055',
2011
+ orgname: '睿有限责任公司',
2012
+ address: '75 Huaxia St, Jinghua Shangquan',
2013
+ phone: '760-789-1994',
2014
+ email: 'skudo73@outlook.com',
2015
+ url: 'http://image.kenta1.com/ToolsHomeDecoration',
2016
+ staffnum: 101,
2017
+ regcapital: 168.9348,
2018
+ paidcapital: 242.9576,
2019
+ insuranceratio: 28.11,
2020
+ isenable: true,
2021
+ status_singleselect: '8',
2022
+ range_multipleselect: ['I3006', 'I3008', 'I3014', 'L2095', 'M2070'],
2023
+ status_radio: '8',
2024
+ range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3034', 'L2095', 'M2070', 'O3010'],
2025
+ establishdate: '2021-12-29T21:52:28.000Z',
2026
+ },
2027
+ {
2028
+ createdAt: '2023-08-14T14:48:46.000Z',
2029
+ updatedAt: '2023-08-08T22:23:16.000Z',
2030
+ createdById: 5,
2031
+ updatedById: 9,
2032
+ testdataid: 84,
2033
+ orgcode: '530084',
2034
+ orgname: '璐有限责任公司',
2035
+ address: '32 Jiangnan West Road, Haizhu District',
2036
+ phone: '20-611-5899',
2037
+ email: 'kffan@gmail.com',
2038
+ url: 'http://auth.nakayama40.jp/Others',
2039
+ staffnum: 27,
2040
+ regcapital: 211.2634,
2041
+ paidcapital: 251.2448,
2042
+ insuranceratio: 8.95,
2043
+ isenable: true,
2044
+ status_singleselect: '3',
2045
+ range_multipleselect: ['F3134', 'I3006', 'I3008', 'I3027', 'I3032', 'P1029'],
2046
+ status_radio: '5',
2047
+ range_check: ['I3006', 'I3008', 'I3012', 'L2095', 'M2070'],
2048
+ establishdate: '2022-12-20T04:42:54.000Z',
2049
+ },
2050
+ {
2051
+ createdAt: '2023-06-30T09:53:02.000Z',
2052
+ updatedAt: '2023-07-18T22:24:59.000Z',
2053
+ createdById: 3,
2054
+ updatedById: 4,
2055
+ testdataid: 56,
2056
+ orgcode: '210056',
2057
+ orgname: 'Lopez Brothers Technology LLC',
2058
+ address: '延庆区028县道953号',
2059
+ phone: '10-641-1187',
2060
+ email: 'naks@hotmail.com',
2061
+ url: 'https://image.guzh.info/CenturionGardenOutdoor',
2062
+ staffnum: 185,
2063
+ regcapital: 63.5178,
2064
+ paidcapital: 153.6774,
2065
+ insuranceratio: 91.75,
2066
+ isenable: true,
2067
+ status_singleselect: '3',
2068
+ range_multipleselect: ['I3008', 'I3010', 'I3012', 'I3014', 'I3034', 'M2070', 'P1029'],
2069
+ status_radio: '4',
2070
+ range_check: ['I3008', 'I3011', 'L2032', 'M2070', 'P1029'],
2071
+ establishdate: '2021-05-21T11:02:59.000Z',
2072
+ },
2073
+ {
2074
+ createdAt: '2023-06-24T08:12:11.000Z',
2075
+ updatedAt: '2023-07-10T02:25:11.743Z',
2076
+ createdById: 8,
2077
+ updatedById: null,
2078
+ testdataid: 89,
2079
+ orgcode: '640089',
2080
+ orgname: 'Curtis Pharmaceutical Inc.',
2081
+ address: null,
2082
+ phone: '179-9231-4455',
2083
+ email: 'aoi110@icloud.com',
2084
+ url: 'https://www.yuziyi.co.jp/ToolsHomeDecoration',
2085
+ staffnum: 119,
2086
+ regcapital: 196.5298,
2087
+ paidcapital: 195.5359,
2088
+ insuranceratio: null,
2089
+ isenable: null,
2090
+ status_singleselect: '4',
2091
+ range_multipleselect: ['F3134', 'I3012', 'I3014', 'I3027', 'L2095', 'O3010', 'P1029'],
2092
+ status_radio: '4',
2093
+ range_check: ['I3006', 'I3008', 'I3010', 'I3011', 'I3014', 'I3027', 'L2032', 'M2070'],
2094
+ establishdate: '2023-10-08T21:08:37.000Z',
2095
+ },
2096
+ {
2097
+ createdAt: '2023-08-20T12:48:08.000Z',
2098
+ updatedAt: '2023-06-13T11:27:58.000Z',
2099
+ createdById: 7,
2100
+ updatedById: 5,
2101
+ testdataid: 44,
2102
+ orgcode: '410044',
2103
+ orgname: 'Lee Brothers Inc.',
2104
+ address: '成华区双庆路300号',
2105
+ phone: null,
2106
+ email: 'tajiehong602@outlook.com',
2107
+ url: 'http://image.tonkay9.info/Baby',
2108
+ staffnum: 176,
2109
+ regcapital: 297.447,
2110
+ paidcapital: 16.0008,
2111
+ insuranceratio: 69.5,
2112
+ isenable: true,
2113
+ status_singleselect: '4',
2114
+ range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3014', 'I3034', 'M2070'],
2115
+ status_radio: '3',
2116
+ range_check: ['F3134', 'I3006', 'I3010', 'I3027', 'I3034', 'L2032', 'O3010'],
2117
+ establishdate: '2023-01-04T12:48:43.000Z',
2118
+ },
2119
+ {
2120
+ createdAt: '2023-03-10T11:17:24.000Z',
2121
+ updatedAt: '2023-07-25T07:52:00.000Z',
2122
+ createdById: 3,
2123
+ updatedById: 4,
2124
+ testdataid: 35,
2125
+ orgcode: '150035',
2126
+ orgname: '邵記系统有限责任公司',
2127
+ address: '209 1st Ave',
2128
+ phone: '718-246-6197',
2129
+ email: 'akat@hotmail.com',
2130
+ url: 'http://video.fuchungyin1009.co.jp/ArtsHandicraftsSewing',
2131
+ staffnum: 185,
2132
+ regcapital: 262.7247,
2133
+ paidcapital: 299.6833,
2134
+ insuranceratio: 45.48,
2135
+ isenable: null,
2136
+ status_singleselect: '1',
2137
+ range_multipleselect: ['F3134', 'I3007', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'M2070', 'O3010'],
2138
+ status_radio: '2',
2139
+ range_check: ['I3006', 'I3007', 'I3010', 'I3032', 'I3034', 'M2070', 'P1029'],
2140
+ establishdate: '2022-06-04T09:44:46.000Z',
2141
+ },
2142
+ {
2143
+ createdAt: '2023-05-22T02:10:55.000Z',
2144
+ updatedAt: '2023-07-19T22:44:41.000Z',
2145
+ createdById: 9,
2146
+ updatedById: 3,
2147
+ testdataid: 4,
2148
+ orgcode: '430004',
2149
+ orgname: '宇宁制药有限责任公司',
2150
+ address: '328 Jingtian East 1st St, Futian District',
2151
+ phone: '755-3659-2323',
2152
+ email: 'cmsi92@icloud.com',
2153
+ url: 'http://www.czhennan4.biz/ToolsHomeDecoration',
2154
+ staffnum: 132,
2155
+ regcapital: 175.7828,
2156
+ paidcapital: 290.7203,
2157
+ insuranceratio: 45.74,
2158
+ isenable: true,
2159
+ status_singleselect: '8',
2160
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'M2070'],
2161
+ status_radio: '7',
2162
+ range_check: ['F3134', 'I3006', 'I3007', 'I3012', 'I3014', 'I3032', 'L2095', 'P1029'],
2163
+ establishdate: '2021-01-08T16:46:38.000Z',
2164
+ },
2165
+ {
2166
+ createdAt: '2023-03-08T16:04:01.000Z',
2167
+ updatedAt: '2023-05-05T22:57:27.000Z',
2168
+ createdById: 4,
2169
+ updatedById: 3,
2170
+ testdataid: 81,
2171
+ orgcode: '110081',
2172
+ orgname: '子异有限责任公司',
2173
+ address: '229 Rush Street',
2174
+ phone: '312-600-3390',
2175
+ email: 'lokwy@icloud.com',
2176
+ url: 'https://image.anakagawa.us/MusicalInstrument',
2177
+ staffnum: 26,
2178
+ regcapital: null,
2179
+ paidcapital: 186.0802,
2180
+ insuranceratio: 18.24,
2181
+ isenable: true,
2182
+ status_singleselect: '2',
2183
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3032', 'L2032', 'L2095', 'M2070', 'O3010'],
2184
+ status_radio: '5',
2185
+ range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3012', 'I3027', 'L2032', 'O3010'],
2186
+ establishdate: '2021-04-08T05:24:21.000Z',
2187
+ },
2188
+ {
2189
+ createdAt: '2023-06-15T13:47:48.000Z',
2190
+ updatedAt: '2023-05-20T12:37:39.000Z',
2191
+ createdById: 0,
2192
+ updatedById: 4,
2193
+ testdataid: 34,
2194
+ orgcode: '210034',
2195
+ orgname: '董記电子有限责任公司',
2196
+ address: '265 Huaxia St, Jinghua Shangquan',
2197
+ phone: null,
2198
+ email: 'rivashle1114@gmail.com',
2199
+ url: 'http://auth.takeda1.cn/Handcrafts',
2200
+ staffnum: 176,
2201
+ regcapital: 281.1833,
2202
+ paidcapital: 67.1949,
2203
+ insuranceratio: 29.93,
2204
+ isenable: true,
2205
+ status_singleselect: '4',
2206
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3012', 'I3027', 'I3034', 'L2032', 'M2070', 'O3010', 'P1029'],
2207
+ status_radio: '2',
2208
+ range_check: ['F3134', 'I3006', 'I3007', 'I3011', 'I3012', 'I3014', 'L2095', 'O3010'],
2209
+ establishdate: '2023-02-08T16:44:29.000Z',
2210
+ },
2211
+ {
2212
+ createdAt: '2023-08-04T08:58:50.000Z',
2213
+ updatedAt: '2023-08-04T04:34:11.000Z',
2214
+ createdById: 9,
2215
+ updatedById: 8,
2216
+ testdataid: 87,
2217
+ orgcode: '420087',
2218
+ orgname: '史記物业代理有限责任公司',
2219
+ address: '549 Ridgewood Road',
2220
+ phone: '330-982-5220',
2221
+ email: 'maruyamashi@hotmail.com',
2222
+ url: 'https://image.kondohik1.co.jp/ToysGames',
2223
+ staffnum: 126,
2224
+ regcapital: 227.7387,
2225
+ paidcapital: 139.9423,
2226
+ insuranceratio: 80.19,
2227
+ isenable: true,
2228
+ status_singleselect: '5',
2229
+ range_multipleselect: ['I3008', 'I3010', 'I3011', 'I3027', 'I3034', 'P1029'],
2230
+ status_radio: '3',
2231
+ range_check: ['I3006', 'I3010', 'I3014', 'I3032', 'I3034', 'M2070', 'O3010'],
2232
+ establishdate: '2023-04-08T00:21:42.000Z',
2233
+ },
2234
+ {
2235
+ createdAt: '2023-06-17T22:39:01.000Z',
2236
+ updatedAt: '2023-05-12T07:34:03.000Z',
2237
+ createdById: 0,
2238
+ updatedById: 7,
2239
+ testdataid: 65,
2240
+ orgcode: '250065',
2241
+ orgname: '林有限责任公司',
2242
+ address: '595 3rd Section Hongxing Road, Jinjiang District',
2243
+ phone: '147-2716-7825',
2244
+ email: 'kathy09@gmail.com',
2245
+ url: 'http://auth.shenj.net/AppsGames',
2246
+ staffnum: 146,
2247
+ regcapital: 63.0539,
2248
+ paidcapital: 18.8649,
2249
+ insuranceratio: 0.22,
2250
+ isenable: true,
2251
+ status_singleselect: '2',
2252
+ range_multipleselect: ['I3008', 'I3011', 'I3012', 'I3027', 'L2032', 'L2095', 'M2070', 'P1029'],
2253
+ status_radio: '1',
2254
+ range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3011', 'I3027', 'I3032', 'L2032', 'L2095'],
2255
+ establishdate: '2023-08-06T08:03:27.000Z',
2256
+ },
2257
+ {
2258
+ createdAt: '2023-04-26T07:55:22.000Z',
2259
+ updatedAt: '2023-06-15T15:44:16.000Z',
2260
+ createdById: 8,
2261
+ updatedById: 4,
2262
+ testdataid: 74,
2263
+ orgcode: '240074',
2264
+ orgname: "Schmidt's Food Inc.",
2265
+ address: '罗湖区蔡屋围深南东路630号',
2266
+ phone: '755-938-8862',
2267
+ email: 'jialun9@outlook.com',
2268
+ url: 'https://www.kwokwing614.org/ToysGames',
2269
+ staffnum: 34,
2270
+ regcapital: 291.2407,
2271
+ paidcapital: 235.8852,
2272
+ insuranceratio: 5.3,
2273
+ isenable: true,
2274
+ status_singleselect: '5',
2275
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3012', 'L2032', 'L2095', 'M2070'],
2276
+ status_radio: '5',
2277
+ range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3014', 'I3032', 'M2070', 'O3010', 'P1029'],
2278
+ establishdate: '2021-06-15T18:47:52.000Z',
2279
+ },
2280
+ {
2281
+ createdAt: '2023-06-13T04:08:45.000Z',
2282
+ updatedAt: '2023-05-19T22:14:25.000Z',
2283
+ createdById: 9,
2284
+ updatedById: 4,
2285
+ testdataid: 19,
2286
+ orgcode: '650019',
2287
+ orgname: 'Myers Brothers Telecommunication Inc.',
2288
+ address: '294 Dong Zhi Men, Dongcheng District',
2289
+ phone: '155-7317-7341',
2290
+ email: 'daisukeotsu@mail.com',
2291
+ url: 'https://drive.floresla8.org/BeautyPersonalCare',
2292
+ staffnum: 128,
2293
+ regcapital: 197.9632,
2294
+ paidcapital: 90.5853,
2295
+ insuranceratio: 64.9,
2296
+ isenable: true,
2297
+ status_singleselect: '5',
2298
+ range_multipleselect: ['I3007', 'I3008', 'I3014', 'L2095', 'P1029'],
2299
+ status_radio: '2',
2300
+ range_check: ['I3006', 'I3008', 'I3010', 'I3032', 'L2095', 'M2070'],
2301
+ establishdate: '2023-04-30T14:56:20.000Z',
2302
+ },
2303
+ {
2304
+ createdAt: '2023-03-22T19:09:18.000Z',
2305
+ updatedAt: '2023-08-25T18:37:39.000Z',
2306
+ createdById: 7,
2307
+ updatedById: 5,
2308
+ testdataid: 21,
2309
+ orgcode: '620021',
2310
+ orgname: 'Williams Consultants Inc.',
2311
+ address: '786 Tremont Road',
2312
+ phone: '614-644-3993',
2313
+ email: 'aota96@yahoo.com',
2314
+ url: 'https://image.hilldo.biz/BeautyPersonalCare',
2315
+ staffnum: 195,
2316
+ regcapital: 94.6208,
2317
+ paidcapital: 113.2067,
2318
+ insuranceratio: 0.42,
2319
+ isenable: true,
2320
+ status_singleselect: '7',
2321
+ range_multipleselect: ['F3134', 'I3006', 'I3010', 'I3011', 'I3027', 'I3032', 'I3034'],
2322
+ status_radio: '6',
2323
+ range_check: ['F3134', 'I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'M2070'],
2324
+ establishdate: '2021-06-14T09:07:34.000Z',
2325
+ },
2326
+ {
2327
+ createdAt: '2023-08-28T21:13:03.000Z',
2328
+ updatedAt: '2023-07-17T22:47:34.000Z',
2329
+ createdById: 8,
2330
+ updatedById: 6,
2331
+ testdataid: 43,
2332
+ orgcode: '220043',
2333
+ orgname: 'Mendez Logistic LLC',
2334
+ address: '浦东新区健祥路790号',
2335
+ phone: '172-1090-3775',
2336
+ email: 'suzukidaisuke@mail.com',
2337
+ url: 'https://www.zhengr.info/Books',
2338
+ staffnum: 173,
2339
+ regcapital: 173.8671,
2340
+ paidcapital: null,
2341
+ insuranceratio: 72.41,
2342
+ isenable: true,
2343
+ status_singleselect: '3',
2344
+ range_multipleselect: ['I3011', 'I3032', 'I3034', 'L2032', 'L2095', 'P1029'],
2345
+ status_radio: '8',
2346
+ range_check: [
2347
+ 'F3134',
2348
+ 'I3006',
2349
+ 'I3007',
2350
+ 'I3008',
2351
+ 'I3010',
2352
+ 'I3011',
2353
+ 'I3012',
2354
+ 'I3014',
2355
+ 'I3032',
2356
+ 'L2095',
2357
+ 'M2070',
2358
+ 'P1029',
2359
+ ],
2360
+ establishdate: '2021-12-27T04:23:26.000Z',
2361
+ },
2362
+ {
2363
+ createdAt: '2023-08-25T08:01:03.000Z',
2364
+ updatedAt: '2023-07-10T02:25:11.739Z',
2365
+ createdById: 4,
2366
+ updatedById: null,
2367
+ testdataid: 33,
2368
+ orgcode: '230033',
2369
+ orgname: '詩涵电脑有限责任公司',
2370
+ address: '825 2nd Zhongshan Road, Yuexiu District',
2371
+ phone: '166-7145-2872',
2372
+ email: null,
2373
+ url: 'http://video.scy.info/BeautyPersonalCare',
2374
+ staffnum: 184,
2375
+ regcapital: 237.116,
2376
+ paidcapital: 7.2748,
2377
+ insuranceratio: 66.74,
2378
+ isenable: null,
2379
+ status_singleselect: '1',
2380
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3011', 'I3012', 'I3027', 'I3032', 'L2032', 'O3010'],
2381
+ status_radio: '5',
2382
+ range_check: null,
2383
+ establishdate: '2021-10-10T20:57:37.000Z',
2384
+ },
2385
+ {
2386
+ createdAt: '2023-07-09T05:39:52.000Z',
2387
+ updatedAt: '2023-06-26T04:30:41.000Z',
2388
+ createdById: 6,
2389
+ updatedById: 3,
2390
+ testdataid: 10,
2391
+ orgcode: '230010',
2392
+ orgname: 'Medina Brothers Software LLC',
2393
+ address: '472 West Market Street',
2394
+ phone: '330-026-0212',
2395
+ email: 'murphygrace@yahoo.com',
2396
+ url: 'https://www.ngws.com/Books',
2397
+ staffnum: 17,
2398
+ regcapital: 74.6449,
2399
+ paidcapital: 281.953,
2400
+ insuranceratio: 26.67,
2401
+ isenable: true,
2402
+ status_singleselect: '2',
2403
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3008', 'I3011', 'I3014', 'I3034', 'L2032', 'M2070', 'P1029'],
2404
+ status_radio: '8',
2405
+ range_check: ['F3134', 'I3007', 'I3008', 'I3011', 'I3012', 'I3014', 'I3027', 'L2095', 'P1029'],
2406
+ establishdate: '2023-01-25T11:54:37.000Z',
2407
+ },
2408
+ {
2409
+ createdAt: '2023-08-15T23:23:20.000Z',
2410
+ updatedAt: '2023-05-09T00:00:10.000Z',
2411
+ createdById: 1,
2412
+ updatedById: 3,
2413
+ testdataid: 36,
2414
+ orgcode: '440036',
2415
+ orgname: '李記电子有限责任公司',
2416
+ address: '750 Lark Street',
2417
+ phone: '838-441-5793',
2418
+ email: 'ryonishimura530@gmail.com',
2419
+ url: 'https://image.cwk.biz/Baby',
2420
+ staffnum: 88,
2421
+ regcapital: 292.6699,
2422
+ paidcapital: 223.948,
2423
+ insuranceratio: 36.35,
2424
+ isenable: true,
2425
+ status_singleselect: '5',
2426
+ range_multipleselect: ['I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3032', 'I3034', 'L2032', 'L2095', 'P1029'],
2427
+ status_radio: '4',
2428
+ range_check: ['I3007', 'I3008', 'I3012', 'I3014', 'L2032', 'O3010'],
2429
+ establishdate: null,
2430
+ },
2431
+ {
2432
+ createdAt: '2023-03-24T11:13:11.000Z',
2433
+ updatedAt: '2023-06-02T14:17:58.000Z',
2434
+ createdById: 10,
2435
+ updatedById: 4,
2436
+ testdataid: 51,
2437
+ orgcode: '550051',
2438
+ orgname: '胡有限责任公司',
2439
+ address: '西城区复兴门内大街438号',
2440
+ phone: '137-8041-7460',
2441
+ email: 'saumankwo@mail.com',
2442
+ url: 'https://auth.csoto.net/Others',
2443
+ staffnum: null,
2444
+ regcapital: 51.757,
2445
+ paidcapital: 67.2645,
2446
+ insuranceratio: 29.38,
2447
+ isenable: true,
2448
+ status_singleselect: '4',
2449
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034'],
2450
+ status_radio: '7',
2451
+ range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3011', 'I3014', 'I3032', 'L2032', 'O3010', 'P1029'],
2452
+ establishdate: '2021-01-02T11:44:41.000Z',
2453
+ },
2454
+ {
2455
+ createdAt: '2023-04-02T04:03:53.000Z',
2456
+ updatedAt: '2023-06-14T12:56:19.000Z',
2457
+ createdById: 6,
2458
+ updatedById: 1,
2459
+ testdataid: 59,
2460
+ orgcode: '210059',
2461
+ orgname: '陶記制药有限责任公司',
2462
+ address: null,
2463
+ phone: '179-0776-0684',
2464
+ email: 'yuto426@gmail.com',
2465
+ url: 'http://drive.pati.co.jp/ArtsHandicraftsSewing',
2466
+ staffnum: 154,
2467
+ regcapital: null,
2468
+ paidcapital: 78.4742,
2469
+ insuranceratio: 51.93,
2470
+ isenable: true,
2471
+ status_singleselect: '1',
2472
+ range_multipleselect: ['F3134', 'I3010', 'I3011', 'I3012', 'I3014', 'M2070', 'O3010', 'P1029'],
2473
+ status_radio: '7',
2474
+ range_check: ['F3134', 'I3006', 'I3007', 'I3010', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070'],
2475
+ establishdate: '2023-01-31T01:55:31.000Z',
2476
+ },
2477
+ {
2478
+ createdAt: '2023-03-02T08:06:09.000Z',
2479
+ updatedAt: '2023-07-10T02:25:11.741Z',
2480
+ createdById: 7,
2481
+ updatedById: null,
2482
+ testdataid: 73,
2483
+ orgcode: '410073',
2484
+ orgname: '晓明有限责任公司',
2485
+ address: '696 North Michigan Ave',
2486
+ phone: '312-545-7935',
2487
+ email: 'jocox1229@outlook.com',
2488
+ url: null,
2489
+ staffnum: 181,
2490
+ regcapital: 208.5642,
2491
+ paidcapital: 124.9526,
2492
+ insuranceratio: 88.64,
2493
+ isenable: true,
2494
+ status_singleselect: '6',
2495
+ range_multipleselect: ['F3134', 'I3006', 'I3008', 'I3010', 'I3014', 'I3034', 'L2095', 'P1029'],
2496
+ status_radio: '2',
2497
+ range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3011', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070', 'O3010'],
2498
+ establishdate: null,
2499
+ },
2500
+ {
2501
+ createdAt: '2023-03-25T22:18:26.000Z',
2502
+ updatedAt: '2023-06-27T06:57:51.000Z',
2503
+ createdById: 5,
2504
+ updatedById: 3,
2505
+ testdataid: 5,
2506
+ orgcode: '630005',
2507
+ orgname: "Grant's Network Systems LLC",
2508
+ address: '成华区双庆路397号',
2509
+ phone: '149-8059-2712',
2510
+ email: 'turneal@gmail.com',
2511
+ url: 'http://auth.fujr.jp/Food',
2512
+ staffnum: 193,
2513
+ regcapital: 116.4198,
2514
+ paidcapital: 267.387,
2515
+ insuranceratio: 62.02,
2516
+ isenable: true,
2517
+ status_singleselect: '3',
2518
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3008', 'I3010', 'I3012', 'I3014', 'I3032', 'I3034', 'L2032'],
2519
+ status_radio: '6',
2520
+ range_check: ['I3006', 'I3027', 'L2095', 'P1029'],
2521
+ establishdate: '2023-09-09T15:50:04.000Z',
2522
+ },
2523
+ {
2524
+ createdAt: '2023-07-13T05:22:20.000Z',
2525
+ updatedAt: '2023-08-11T12:32:14.000Z',
2526
+ createdById: 3,
2527
+ updatedById: 6,
2528
+ testdataid: 29,
2529
+ orgcode: '440029',
2530
+ orgname: 'Thomas Brothers Pharmaceutical Inc.',
2531
+ address: '472 West Market Street',
2532
+ phone: '330-960-6930',
2533
+ email: 'shirleypay@yahoo.com',
2534
+ url: 'http://auth.jiang1103.jp/CollectiblesFineArt',
2535
+ staffnum: 68,
2536
+ regcapital: 4.9611,
2537
+ paidcapital: 142.3588,
2538
+ insuranceratio: 40.34,
2539
+ isenable: true,
2540
+ status_singleselect: '7',
2541
+ range_multipleselect: ['F3134', 'I3008', 'I3010', 'I3034', 'L2032', 'M2070', 'O3010'],
2542
+ status_radio: '3',
2543
+ range_check: ['F3134', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'O3010', 'P1029'],
2544
+ establishdate: '2021-09-05T07:53:50.000Z',
2545
+ },
2546
+ {
2547
+ createdAt: '2023-08-04T12:20:48.000Z',
2548
+ updatedAt: '2023-05-02T21:09:34.000Z',
2549
+ createdById: 3,
2550
+ updatedById: 4,
2551
+ testdataid: 95,
2552
+ orgcode: '350095',
2553
+ orgname: '陈記有限责任公司',
2554
+ address: '268 Bergen St',
2555
+ phone: '718-862-1720',
2556
+ email: 'yara1953@gmail.com',
2557
+ url: 'https://auth.riverae.jp/PetSupplies',
2558
+ staffnum: 66,
2559
+ regcapital: 282.8759,
2560
+ paidcapital: 67.7269,
2561
+ insuranceratio: 46.59,
2562
+ isenable: null,
2563
+ status_singleselect: '6',
2564
+ range_multipleselect: ['I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'L2032', 'M2070'],
2565
+ status_radio: '3',
2566
+ range_check: ['I3006', 'I3010', 'I3011', 'I3014', 'I3027', 'I3034', 'P1029'],
2567
+ establishdate: '2021-11-25T14:56:54.000Z',
2568
+ },
2569
+ {
2570
+ createdAt: '2023-05-01T17:43:16.000Z',
2571
+ updatedAt: '2023-08-20T08:30:36.000Z',
2572
+ createdById: 1,
2573
+ updatedById: 4,
2574
+ testdataid: 8,
2575
+ orgcode: '540008',
2576
+ orgname: 'Christine Communications Inc.',
2577
+ address: '630 Canal Street',
2578
+ phone: '212-162-6691',
2579
+ email: 'hazelcraw@yahoo.com',
2580
+ url: 'http://auth.jialunhu.xyz/Others',
2581
+ staffnum: 47,
2582
+ regcapital: 140.3844,
2583
+ paidcapital: 236.435,
2584
+ insuranceratio: 51.21,
2585
+ isenable: true,
2586
+ status_singleselect: '7',
2587
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3014', 'I3032', 'L2095', 'O3010'],
2588
+ status_radio: '7',
2589
+ range_check: ['I3008', 'I3010', 'I3032', 'L2032', 'M2070', 'O3010'],
2590
+ establishdate: '2021-11-09T15:13:33.000Z',
2591
+ },
2592
+ {
2593
+ createdAt: '2023-06-20T03:38:25.000Z',
2594
+ updatedAt: '2023-06-28T02:29:27.000Z',
2595
+ createdById: 10,
2596
+ updatedById: 5,
2597
+ testdataid: 57,
2598
+ orgcode: '130057',
2599
+ orgname: 'Bobby Inc.',
2600
+ address: '631 Huaxia St, Jinghua Shangquan',
2601
+ phone: '167-3235-8699',
2602
+ email: 'zhend@gmail.com',
2603
+ url: 'http://drive.yunxi2015.biz/ClothingShoesandJewelry',
2604
+ staffnum: 161,
2605
+ regcapital: 20.9988,
2606
+ paidcapital: 188.2148,
2607
+ insuranceratio: 74.21,
2608
+ isenable: true,
2609
+ status_singleselect: '8',
2610
+ range_multipleselect: ['F3134', 'I3006', 'I3010', 'I3011', 'I3012', 'I3014', 'I3034', 'L2032', 'O3010', 'P1029'],
2611
+ status_radio: '3',
2612
+ range_check: null,
2613
+ establishdate: '2023-04-27T11:30:53.000Z',
2614
+ },
2615
+ {
2616
+ createdAt: '2023-04-21T22:18:05.000Z',
2617
+ updatedAt: '2023-05-02T02:52:18.000Z',
2618
+ createdById: 4,
2619
+ updatedById: 8,
2620
+ testdataid: 60,
2621
+ orgcode: '440060',
2622
+ orgname: 'Wilson Engineering LLC',
2623
+ address: '894 Jianxiang Rd, Pudong',
2624
+ phone: '147-8272-9832',
2625
+ email: 'hmwong@icloud.com',
2626
+ url: 'https://drive.ayano303.jp/Beauty',
2627
+ staffnum: null,
2628
+ regcapital: 129.6063,
2629
+ paidcapital: 211.5024,
2630
+ insuranceratio: 50.02,
2631
+ isenable: true,
2632
+ status_singleselect: '4',
2633
+ range_multipleselect: ['I3010', 'I3012', 'I3027', 'I3034', 'L2032', 'M2070'],
2634
+ status_radio: '2',
2635
+ range_check: ['I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3034', 'L2032', 'L2095', 'M2070', 'P1029'],
2636
+ establishdate: '2023-02-02T04:12:05.000Z',
2637
+ },
2638
+ {
2639
+ createdAt: '2023-03-07T17:22:42.000Z',
2640
+ updatedAt: '2023-05-17T00:30:59.000Z',
2641
+ createdById: 9,
2642
+ updatedById: 7,
2643
+ testdataid: 28,
2644
+ orgcode: '140028',
2645
+ orgname: '嘉伦有限责任公司',
2646
+ address: '189 West Market Street',
2647
+ phone: '330-159-6349',
2648
+ email: 'hotheod@gmail.com',
2649
+ url: 'https://drive.warren98.biz/CellPhonesAccessories',
2650
+ staffnum: 95,
2651
+ regcapital: 35.1485,
2652
+ paidcapital: 60.3831,
2653
+ insuranceratio: 21.62,
2654
+ isenable: null,
2655
+ status_singleselect: '6',
2656
+ range_multipleselect: [
2657
+ 'F3134',
2658
+ 'I3006',
2659
+ 'I3008',
2660
+ 'I3010',
2661
+ 'I3011',
2662
+ 'I3012',
2663
+ 'I3032',
2664
+ 'L2032',
2665
+ 'L2095',
2666
+ 'M2070',
2667
+ 'O3010',
2668
+ 'P1029',
2669
+ ],
2670
+ status_radio: '5',
2671
+ range_check: ['F3134', 'I3008', 'I3010', 'I3011', 'I3034', 'P1029'],
2672
+ establishdate: '2022-01-13T23:52:05.000Z',
2673
+ },
2674
+ {
2675
+ createdAt: '2023-04-26T13:15:06.000Z',
2676
+ updatedAt: '2023-07-13T07:01:14.000Z',
2677
+ createdById: 1,
2678
+ updatedById: 1,
2679
+ testdataid: 49,
2680
+ orgcode: '150049',
2681
+ orgname: 'Owens Brothers Software LLC',
2682
+ address: '422 W Ring Rd, Buji Town, Longgang',
2683
+ phone: '755-057-2623',
2684
+ email: 'zhanglan@gmail.com',
2685
+ url: 'http://www.sotogregory502.org/ArtsHandicraftsSewing',
2686
+ staffnum: 130,
2687
+ regcapital: 46.1374,
2688
+ paidcapital: 3.4208,
2689
+ insuranceratio: 80.43,
2690
+ isenable: null,
2691
+ status_singleselect: '7',
2692
+ range_multipleselect: ['I3007', 'I3012', 'I3027', 'I3032', 'L2095', 'O3010', 'P1029'],
2693
+ status_radio: '4',
2694
+ range_check: ['F3134', 'I3007', 'I3010', 'I3011', 'I3027', 'I3032', 'I3034', 'L2032'],
2695
+ establishdate: '2022-11-07T06:43:42.000Z',
2696
+ },
2697
+ {
2698
+ createdAt: '2023-08-25T07:59:57.000Z',
2699
+ updatedAt: '2023-08-30T00:27:44.000Z',
2700
+ createdById: 0,
2701
+ updatedById: 8,
2702
+ testdataid: 12,
2703
+ orgcode: '150012',
2704
+ orgname: '张記有限责任公司',
2705
+ address: '531 4th Section Renmin South Road, Jinjiang District',
2706
+ phone: '28-987-2142',
2707
+ email: 'tsubasayamaz5@outlook.com',
2708
+ url: null,
2709
+ staffnum: 188,
2710
+ regcapital: 282.0915,
2711
+ paidcapital: 230.6067,
2712
+ insuranceratio: 24.06,
2713
+ isenable: true,
2714
+ status_singleselect: '1',
2715
+ range_multipleselect: ['I3011', 'I3012', 'L2032', 'L2095', 'M2070', 'O3010', 'P1029'],
2716
+ status_radio: '7',
2717
+ range_check: ['F3134', 'I3007', 'I3008', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'P1029'],
2718
+ establishdate: '2021-01-18T20:54:21.000Z',
2719
+ },
2720
+ {
2721
+ createdAt: '2023-08-06T11:00:11.000Z',
2722
+ updatedAt: '2023-07-10T02:25:11.737Z',
2723
+ createdById: null,
2724
+ updatedById: null,
2725
+ testdataid: 47,
2726
+ orgcode: '620047',
2727
+ orgname: 'Williams Brothers LLC',
2728
+ address: '东泰五街621号',
2729
+ phone: null,
2730
+ email: 'martin2002@icloud.com',
2731
+ url: 'https://auth.kwokwaiman.us/HouseholdKitchenAppliances',
2732
+ staffnum: 78,
2733
+ regcapital: 279.4844,
2734
+ paidcapital: 266.3442,
2735
+ insuranceratio: 32.12,
2736
+ isenable: true,
2737
+ status_singleselect: '1',
2738
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3010', 'I3011', 'I3027', 'L2032'],
2739
+ status_radio: '8',
2740
+ range_check: ['F3134', 'I3006', 'I3007', 'I3010', 'I3011', 'I3012', 'I3027', 'I3034', 'L2032', 'L2095', 'O3010'],
2741
+ establishdate: '2022-08-14T17:55:17.000Z',
2742
+ },
2743
+ {
2744
+ createdAt: '2023-08-03T18:16:07.000Z',
2745
+ updatedAt: '2023-05-11T02:43:43.000Z',
2746
+ createdById: 0,
2747
+ updatedById: 9,
2748
+ testdataid: 69,
2749
+ orgcode: '610069',
2750
+ orgname: '致远有限责任公司',
2751
+ address: '龙岗区学园一巷968号',
2752
+ phone: '755-7571-7551',
2753
+ email: 'ynakagawa925@icloud.com',
2754
+ url: 'http://video.tzhiyuan.net/SportsOutdoor',
2755
+ staffnum: 90,
2756
+ regcapital: 2.7332,
2757
+ paidcapital: 108.5354,
2758
+ insuranceratio: 64.76,
2759
+ isenable: null,
2760
+ status_singleselect: '2',
2761
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3011', 'I3012', 'I3034', 'O3010'],
2762
+ status_radio: '2',
2763
+ range_check: ['I3007', 'I3008', 'I3010', 'I3012', 'I3014', 'I3032'],
2764
+ establishdate: '2021-06-18T12:50:21.000Z',
2765
+ },
2766
+ {
2767
+ createdAt: '2023-05-16T16:27:22.000Z',
2768
+ updatedAt: '2023-05-13T11:17:34.000Z',
2769
+ createdById: 5,
2770
+ updatedById: 6,
2771
+ testdataid: 80,
2772
+ orgcode: '140080',
2773
+ orgname: '睿贸易有限责任公司',
2774
+ address: '白云区小坪东路90号',
2775
+ phone: '197-2431-7197',
2776
+ email: 'wuwm@icloud.com',
2777
+ url: 'http://drive.hz4.com/HealthBabyCare',
2778
+ staffnum: 36,
2779
+ regcapital: 132.0943,
2780
+ paidcapital: 278.8981,
2781
+ insuranceratio: 40.03,
2782
+ isenable: true,
2783
+ status_singleselect: '8',
2784
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3011', 'I3032', 'L2032', 'L2095', 'M2070'],
2785
+ status_radio: '8',
2786
+ range_check: ['I3006', 'I3007', 'I3011', 'I3014', 'I3034', 'L2095'],
2787
+ establishdate: '2021-07-12T22:04:31.000Z',
2788
+ },
2789
+ {
2790
+ createdAt: '2023-03-16T02:59:56.000Z',
2791
+ updatedAt: '2023-07-03T00:12:24.000Z',
2792
+ createdById: 4,
2793
+ updatedById: 6,
2794
+ testdataid: 45,
2795
+ orgcode: '120045',
2796
+ orgname: 'Adams Brothers Inc.',
2797
+ address: '847 West Houston Street',
2798
+ phone: '212-675-9018',
2799
+ email: null,
2800
+ url: 'https://image.ks4.info/Handcrafts',
2801
+ staffnum: null,
2802
+ regcapital: 179.2233,
2803
+ paidcapital: 203.447,
2804
+ insuranceratio: 70.8,
2805
+ isenable: true,
2806
+ status_singleselect: '8',
2807
+ range_multipleselect: ['I3008', 'I3010', 'I3012', 'I3014', 'I3027', 'L2095', 'M2070', 'O3010'],
2808
+ status_radio: '8',
2809
+ range_check: ['F3134', 'I3008', 'I3012', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070', 'P1029'],
2810
+ establishdate: '2021-03-27T22:05:05.000Z',
2811
+ },
2812
+ {
2813
+ createdAt: '2023-07-17T15:00:25.000Z',
2814
+ updatedAt: '2023-05-22T19:30:52.000Z',
2815
+ createdById: 8,
2816
+ updatedById: 9,
2817
+ testdataid: 85,
2818
+ orgcode: '310085',
2819
+ orgname: '秀英系统有限责任公司',
2820
+ address: '492 Pedway',
2821
+ phone: null,
2822
+ email: 'huyu1@outlook.com',
2823
+ url: 'http://image.shilan.net/ArtsHandicraftsSewing',
2824
+ staffnum: null,
2825
+ regcapital: 224.7069,
2826
+ paidcapital: null,
2827
+ insuranceratio: 27.21,
2828
+ isenable: true,
2829
+ status_singleselect: '8',
2830
+ range_multipleselect: ['I3008', 'I3012', 'I3014', 'I3034', 'L2095', 'M2070', 'P1029'],
2831
+ status_radio: '1',
2832
+ range_check: [
2833
+ 'F3134',
2834
+ 'I3006',
2835
+ 'I3007',
2836
+ 'I3008',
2837
+ 'I3010',
2838
+ 'I3011',
2839
+ 'I3032',
2840
+ 'I3034',
2841
+ 'L2032',
2842
+ 'L2095',
2843
+ 'M2070',
2844
+ 'O3010',
2845
+ ],
2846
+ establishdate: '2021-03-30T21:18:22.000Z',
2847
+ },
2848
+ {
2849
+ createdAt: '2023-04-02T16:10:12.000Z',
2850
+ updatedAt: '2023-07-10T02:25:11.740Z',
2851
+ createdById: 7,
2852
+ updatedById: null,
2853
+ testdataid: 72,
2854
+ orgcode: '350072',
2855
+ orgname: '邱記电讯有限责任公司',
2856
+ address: '白云区机场路棠苑街五巷951号',
2857
+ phone: '175-9040-0888',
2858
+ email: 'chiuwaiwong@gmail.com',
2859
+ url: null,
2860
+ staffnum: 162,
2861
+ regcapital: 59.8279,
2862
+ paidcapital: 141.9588,
2863
+ insuranceratio: 86.98,
2864
+ isenable: true,
2865
+ status_singleselect: '5',
2866
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3010', 'I3011', 'I3027', 'I3034', 'O3010'],
2867
+ status_radio: '6',
2868
+ range_check: null,
2869
+ establishdate: '2022-01-31T21:23:17.000Z',
2870
+ },
2871
+ {
2872
+ createdAt: '2023-05-07T01:59:43.000Z',
2873
+ updatedAt: '2023-08-13T07:41:11.000Z',
2874
+ createdById: 4,
2875
+ updatedById: 10,
2876
+ testdataid: 100,
2877
+ orgcode: '310100',
2878
+ orgname: '陈記发展贸易有限责任公司',
2879
+ address: '环区南街二巷453号',
2880
+ phone: '769-5777-9743',
2881
+ email: 'siu817@icloud.com',
2882
+ url: 'https://auth.donfreem506.org/SportsOutdoor',
2883
+ staffnum: 193,
2884
+ regcapital: 264.7365,
2885
+ paidcapital: 32.0125,
2886
+ insuranceratio: 46.66,
2887
+ isenable: null,
2888
+ status_singleselect: '7',
2889
+ range_multipleselect: null,
2890
+ status_radio: '7',
2891
+ range_check: ['F3134', 'I3006', 'I3011', 'I3027', 'I3034', 'O3010', 'P1029'],
2892
+ establishdate: '2023-05-23T04:27:32.000Z',
2893
+ },
2894
+ {
2895
+ createdAt: '2023-08-01T08:19:39.000Z',
2896
+ updatedAt: '2023-07-17T02:48:36.000Z',
2897
+ createdById: 3,
2898
+ updatedById: 5,
2899
+ testdataid: 30,
2900
+ orgcode: '550030',
2901
+ orgname: '子异技术有限责任公司',
2902
+ address: '成华区二仙桥东三路698号',
2903
+ phone: null,
2904
+ email: null,
2905
+ url: 'https://drive.patterson44.net/ArtsHandicraftsSewing',
2906
+ staffnum: null,
2907
+ regcapital: 88.4317,
2908
+ paidcapital: 232.3953,
2909
+ insuranceratio: 88.86,
2910
+ isenable: true,
2911
+ status_singleselect: '6',
2912
+ range_multipleselect: ['I3007', 'L2032', 'L2095', 'M2070', 'P1029'],
2913
+ status_radio: '7',
2914
+ range_check: ['F3134', 'I3011', 'I3032'],
2915
+ establishdate: '2022-01-26T08:14:41.000Z',
2916
+ },
2917
+ {
2918
+ createdAt: '2023-07-20T08:54:02.000Z',
2919
+ updatedAt: '2023-06-15T20:12:54.000Z',
2920
+ createdById: 6,
2921
+ updatedById: 8,
2922
+ testdataid: 75,
2923
+ orgcode: '310075',
2924
+ orgname: '武記有限责任公司',
2925
+ address: '545 Rush Street',
2926
+ phone: '312-022-1358',
2927
+ email: 'xiuying1125@hotmail.com',
2928
+ url: 'https://video.zhezi.jp/Books',
2929
+ staffnum: 197,
2930
+ regcapital: 136.3425,
2931
+ paidcapital: 96.297,
2932
+ insuranceratio: 28.79,
2933
+ isenable: true,
2934
+ status_singleselect: '6',
2935
+ range_multipleselect: ['I3008', 'I3012', 'I3034', 'O3010', 'P1029'],
2936
+ status_radio: '7',
2937
+ range_check: ['F3134', 'I3006', 'I3007', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070'],
2938
+ establishdate: '2021-01-26T06:55:36.000Z',
2939
+ },
2940
+ {
2941
+ createdAt: '2023-07-12T18:10:51.000Z',
2942
+ updatedAt: '2023-08-19T13:15:44.000Z',
2943
+ createdById: 3,
2944
+ updatedById: 1,
2945
+ testdataid: 23,
2946
+ orgcode: '420023',
2947
+ orgname: '秀英有限责任公司',
2948
+ address: null,
2949
+ phone: '330-890-8118',
2950
+ email: 'grahadiana1127@icloud.com',
2951
+ url: 'https://auth.kkin.org/CellPhonesAccessories',
2952
+ staffnum: 152,
2953
+ regcapital: 190.0139,
2954
+ paidcapital: 274.6092,
2955
+ insuranceratio: 6.39,
2956
+ isenable: true,
2957
+ status_singleselect: '5',
2958
+ range_multipleselect: ['I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'L2032', 'O3010', 'P1029'],
2959
+ status_radio: '2',
2960
+ range_check: ['I3006', 'I3007', 'I3010', 'I3012', 'I3014', 'I3032', 'I3034', 'L2095', 'M2070'],
2961
+ establishdate: '2023-06-21T21:47:05.000Z',
2962
+ },
2963
+ {
2964
+ createdAt: '2023-06-30T09:34:24.000Z',
2965
+ updatedAt: '2023-07-10T02:25:11.728Z',
2966
+ createdById: null,
2967
+ updatedById: 3,
2968
+ testdataid: 26,
2969
+ orgcode: '520026',
2970
+ orgname: '钱記有限责任公司',
2971
+ address: '106 S Broadway',
2972
+ phone: null,
2973
+ email: 'hla53@gmail.com',
2974
+ url: 'http://drive.songzhiyuan.jp/SportsOutdoor',
2975
+ staffnum: 128,
2976
+ regcapital: 45.8576,
2977
+ paidcapital: 49.0852,
2978
+ insuranceratio: 69.17,
2979
+ isenable: true,
2980
+ status_singleselect: '5',
2981
+ range_multipleselect: ['F3134', 'I3010', 'L2095', 'P1029'],
2982
+ status_radio: '5',
2983
+ range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3027', 'I3032', 'L2095', 'O3010'],
2984
+ establishdate: '2022-03-22T20:41:25.000Z',
2985
+ },
2986
+ {
2987
+ createdAt: '2023-05-24T19:59:54.000Z',
2988
+ updatedAt: '2023-08-20T10:07:16.000Z',
2989
+ createdById: 8,
2990
+ updatedById: 3,
2991
+ testdataid: 37,
2992
+ orgcode: '620037',
2993
+ orgname: 'Cindy Logistic Inc.',
2994
+ address: '791 Columbia St',
2995
+ phone: '718-173-2935',
2996
+ email: 'satoyuna2@yahoo.com',
2997
+ url: 'https://www.yunxi8.cn/MusicalInstrument',
2998
+ staffnum: 6,
2999
+ regcapital: 39.6587,
3000
+ paidcapital: 118.6882,
3001
+ insuranceratio: 25.94,
3002
+ isenable: true,
3003
+ status_singleselect: '2',
3004
+ range_multipleselect: ['F3134', 'I3007', 'I3008', 'I3012', 'L2032', 'L2095', 'O3010'],
3005
+ status_radio: '5',
3006
+ range_check: null,
3007
+ establishdate: null,
3008
+ },
3009
+ {
3010
+ createdAt: '2023-07-10T12:04:12.000Z',
3011
+ updatedAt: '2023-07-10T02:25:11.742Z',
3012
+ createdById: 6,
3013
+ updatedById: null,
3014
+ testdataid: 78,
3015
+ orgcode: '140078',
3016
+ orgname: '陆記有限责任公司',
3017
+ address: '578 Xiaoping E Rd, Baiyun ',
3018
+ phone: '155-0484-9694',
3019
+ email: 'fukudahikari@gmail.com',
3020
+ url: 'https://auth.gibsondon.us/CollectiblesFineArt',
3021
+ staffnum: 79,
3022
+ regcapital: 21.868,
3023
+ paidcapital: 252.1746,
3024
+ insuranceratio: 58.72,
3025
+ isenable: true,
3026
+ status_singleselect: '8',
3027
+ range_multipleselect: ['I3010', 'I3032', 'L2032', 'L2095', 'O3010', 'P1029'],
3028
+ status_radio: '5',
3029
+ range_check: ['F3134', 'I3008', 'I3010', 'I3012', 'I3027', 'I3034', 'L2032', 'M2070', 'P1029'],
3030
+ establishdate: '2021-04-16T16:14:38.000Z',
3031
+ },
3032
+ {
3033
+ createdAt: '2023-07-05T20:02:07.000Z',
3034
+ updatedAt: '2023-05-27T21:16:46.000Z',
3035
+ createdById: 10,
3036
+ updatedById: 5,
3037
+ testdataid: 71,
3038
+ orgcode: '630071',
3039
+ orgname: '晓明有限责任公司',
3040
+ address: "19 West Chang'an Avenue, Xicheng District",
3041
+ phone: '156-1137-8442',
3042
+ email: 'sakurai46@icloud.com',
3043
+ url: 'https://auth.xiaoming1223.cn/Beauty',
3044
+ staffnum: 82,
3045
+ regcapital: 250.4023,
3046
+ paidcapital: 186.6815,
3047
+ insuranceratio: 95.41,
3048
+ isenable: true,
3049
+ status_singleselect: '3',
3050
+ range_multipleselect: ['F3134', 'I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'I3034', 'L2032', 'P1029'],
3051
+ status_radio: '7',
3052
+ range_check: ['I3006', 'I3007', 'I3010', 'I3011', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'O3010'],
3053
+ establishdate: '2022-11-27T14:02:00.000Z',
3054
+ },
3055
+ {
3056
+ createdAt: '2023-04-03T11:41:58.000Z',
3057
+ updatedAt: '2023-07-25T07:08:25.000Z',
3058
+ createdById: 4,
3059
+ updatedById: 5,
3060
+ testdataid: 53,
3061
+ orgcode: '420053',
3062
+ orgname: '睿工业有限责任公司',
3063
+ address: '914 Xiaoping E Rd, Baiyun ',
3064
+ phone: '20-439-3781',
3065
+ email: 'lucimoreno@outlook.com',
3066
+ url: 'https://www.lanwang1968.biz/BaggageTravelEquipment',
3067
+ staffnum: 138,
3068
+ regcapital: 176.73,
3069
+ paidcapital: 238.5599,
3070
+ insuranceratio: 0.32,
3071
+ isenable: true,
3072
+ status_singleselect: '8',
3073
+ range_multipleselect: ['I3008', 'I3014', 'I3027', 'I3032', 'L2032', 'O3010'],
3074
+ status_radio: '1',
3075
+ range_check: ['I3007', 'I3008', 'I3010', 'I3011', 'I3027', 'M2070', 'O3010', 'P1029'],
3076
+ establishdate: '2021-04-22T09:11:54.000Z',
3077
+ },
3078
+ {
3079
+ createdAt: '2023-04-12T12:17:12.000Z',
3080
+ updatedAt: '2023-08-28T05:02:11.000Z',
3081
+ createdById: 3,
3082
+ updatedById: 5,
3083
+ testdataid: 70,
3084
+ orgcode: '620070',
3085
+ orgname: '唐有限责任公司',
3086
+ address: '449 East Alley',
3087
+ phone: '614-258-2477',
3088
+ email: 'swtong17@gmail.com',
3089
+ url: 'https://www.colesherr5.us/FilmSupplies',
3090
+ staffnum: 42,
3091
+ regcapital: 232.1782,
3092
+ paidcapital: 280.8157,
3093
+ insuranceratio: 20.07,
3094
+ isenable: true,
3095
+ status_singleselect: '7',
3096
+ range_multipleselect: ['F3134', 'I3007', 'I3008', 'I3012', 'I3034', 'L2095', 'P1029'],
3097
+ status_radio: '6',
3098
+ range_check: ['I3010', 'I3027', 'I3032', 'O3010'],
3099
+ establishdate: '2023-10-29T00:43:12.000Z',
3100
+ },
3101
+ {
3102
+ createdAt: '2023-04-13T23:19:56.000Z',
3103
+ updatedAt: '2023-08-08T03:08:04.000Z',
3104
+ createdById: 3,
3105
+ updatedById: 6,
3106
+ testdataid: 9,
3107
+ orgcode: '630009',
3108
+ orgname: '刘有限责任公司',
3109
+ address: '917 Alameda Street',
3110
+ phone: '213-743-6878',
3111
+ email: 'huimeiwong1127@icloud.com',
3112
+ url: 'https://image.rinkond1.co.jp/IndustrialScientificSupplies',
3113
+ staffnum: 190,
3114
+ regcapital: 264.891,
3115
+ paidcapital: 249.9184,
3116
+ insuranceratio: 54.71,
3117
+ isenable: true,
3118
+ status_singleselect: '8',
3119
+ range_multipleselect: null,
3120
+ status_radio: '3',
3121
+ range_check: ['F3134', 'I3007', 'I3010', 'I3012', 'I3014', 'I3032', 'I3034', 'L2095', 'P1029'],
3122
+ establishdate: '2023-08-22T00:30:45.000Z',
3123
+ },
3124
+ {
3125
+ createdAt: '2023-06-21T00:53:37.000Z',
3126
+ updatedAt: '2023-05-24T10:30:53.000Z',
3127
+ createdById: 1,
3128
+ updatedById: 10,
3129
+ testdataid: 24,
3130
+ orgcode: '140024',
3131
+ orgname: '秀英有限责任公司',
3132
+ address: '208 North Michigan Ave',
3133
+ phone: '312-222-4942',
3134
+ email: 'sitls@outlook.com',
3135
+ url: 'https://auth.ededward.co.jp/ClothingShoesandJewelry',
3136
+ staffnum: null,
3137
+ regcapital: 11.602,
3138
+ paidcapital: 289.2036,
3139
+ insuranceratio: 19.3,
3140
+ isenable: true,
3141
+ status_singleselect: '4',
3142
+ range_multipleselect: ['I3007', 'I3010', 'I3011', 'I3012', 'I3032', 'I3034', 'L2095', 'O3010'],
3143
+ status_radio: '2',
3144
+ range_check: ['F3134', 'I3007', 'I3012', 'I3014', 'I3027', 'L2032', 'O3010', 'P1029'],
3145
+ establishdate: '2023-04-14T10:31:47.000Z',
3146
+ },
3147
+ {
3148
+ createdAt: '2023-08-20T18:44:46.000Z',
3149
+ updatedAt: '2023-07-09T19:37:01.000Z',
3150
+ createdById: 7,
3151
+ updatedById: 4,
3152
+ testdataid: 15,
3153
+ orgcode: '150015',
3154
+ orgname: 'Doris LLC',
3155
+ address: '海珠区江南西路205号',
3156
+ phone: '152-0553-7772',
3157
+ email: 'onkay5@icloud.com',
3158
+ url: 'http://auth.yuningshi.cn/Baby',
3159
+ staffnum: 51,
3160
+ regcapital: 62.3067,
3161
+ paidcapital: 243.9179,
3162
+ insuranceratio: 65.83,
3163
+ isenable: true,
3164
+ status_singleselect: '1',
3165
+ range_multipleselect: ['I3007', 'I3014', 'I3032', 'L2095', 'M2070', 'P1029'],
3166
+ status_radio: '8',
3167
+ range_check: ['I3007', 'I3010', 'I3011', 'I3014', 'I3032', 'M2070', 'O3010'],
3168
+ establishdate: '2021-12-17T06:08:17.000Z',
3169
+ },
3170
+ {
3171
+ createdAt: '2023-07-08T09:41:18.000Z',
3172
+ updatedAt: '2023-08-04T03:25:41.000Z',
3173
+ createdById: 9,
3174
+ updatedById: 8,
3175
+ testdataid: 11,
3176
+ orgcode: '230011',
3177
+ orgname: 'Alexander Trading Inc.',
3178
+ address: '21 4th Section Renmin South Road, Jinjiang District',
3179
+ phone: '28-964-2526',
3180
+ email: 'stewart324@gmail.com',
3181
+ url: null,
3182
+ staffnum: 74,
3183
+ regcapital: 205.9118,
3184
+ paidcapital: 252.7905,
3185
+ insuranceratio: 32.57,
3186
+ isenable: true,
3187
+ status_singleselect: '4',
3188
+ range_multipleselect: ['F3134', 'I3006', 'I3010', 'I3011', 'I3014', 'I3027', 'I3032', 'L2095', 'M2070'],
3189
+ status_radio: '4',
3190
+ range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010', 'P1029'],
3191
+ establishdate: '2022-10-25T03:57:53.000Z',
3192
+ },
3193
+ {
3194
+ createdAt: '2023-06-10T01:08:46.000Z',
3195
+ updatedAt: '2023-08-18T23:07:28.000Z',
3196
+ createdById: 6,
3197
+ updatedById: 8,
3198
+ testdataid: 58,
3199
+ orgcode: '340058',
3200
+ orgname: 'Frank Software LLC',
3201
+ address: '天河区天河路330号',
3202
+ phone: '165-2214-3345',
3203
+ email: 'crystortiz8@icloud.com',
3204
+ url: 'https://auth.richardlee7.co.jp/ClothingShoesandJewelry',
3205
+ staffnum: 180,
3206
+ regcapital: 17.056,
3207
+ paidcapital: 156.8234,
3208
+ insuranceratio: 67.28,
3209
+ isenable: null,
3210
+ status_singleselect: '1',
3211
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3011', 'I3032', 'L2032', 'L2095', 'O3010'],
3212
+ status_radio: '6',
3213
+ range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'L2095'],
3214
+ establishdate: '2021-02-13T02:03:49.000Z',
3215
+ },
3216
+ {
3217
+ createdAt: '2023-07-01T15:28:34.000Z',
3218
+ updatedAt: '2023-07-10T02:25:11.726Z',
3219
+ createdById: null,
3220
+ updatedById: 5,
3221
+ testdataid: 39,
3222
+ orgcode: '510039',
3223
+ orgname: '龚电讯有限责任公司',
3224
+ address: '365 Central Avenue',
3225
+ phone: '838-434-4757',
3226
+ email: 'barnicholas@gmail.com',
3227
+ url: 'http://www.lokht1970.info/CDsVinyl',
3228
+ staffnum: 83,
3229
+ regcapital: 21.7374,
3230
+ paidcapital: 120.7973,
3231
+ insuranceratio: 47.33,
3232
+ isenable: true,
3233
+ status_singleselect: '1',
3234
+ range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3034', 'L2095'],
3235
+ status_radio: '7',
3236
+ range_check: ['I3006', 'I3032', 'L2095', 'P1029'],
3237
+ establishdate: '2022-01-02T12:32:43.000Z',
3238
+ },
3239
+ {
3240
+ createdAt: '2023-04-03T15:27:23.000Z',
3241
+ updatedAt: '2023-05-29T18:51:28.000Z',
3242
+ createdById: 1,
3243
+ updatedById: 10,
3244
+ testdataid: 18,
3245
+ orgcode: '120018',
3246
+ orgname: '胡工程有限责任公司',
3247
+ address: '279 Zhongshan 5th Rd, Zimaling Shangquan',
3248
+ phone: '190-4080-9140',
3249
+ email: 'guanqi@icloud.com',
3250
+ url: 'http://www.nancyha5.us/CDsVinyl',
3251
+ staffnum: 112,
3252
+ regcapital: 144.4962,
3253
+ paidcapital: 145.2596,
3254
+ insuranceratio: 14.18,
3255
+ isenable: null,
3256
+ status_singleselect: '1',
3257
+ range_multipleselect: null,
3258
+ status_radio: '5',
3259
+ range_check: ['F3134', 'I3008', 'I3014', 'M2070', 'O3010'],
3260
+ establishdate: '2023-04-21T15:43:03.000Z',
3261
+ },
3262
+ {
3263
+ createdAt: '2023-06-18T11:53:30.000Z',
3264
+ updatedAt: '2023-08-03T11:12:45.000Z',
3265
+ createdById: 0,
3266
+ updatedById: 7,
3267
+ testdataid: 79,
3268
+ orgcode: '130079',
3269
+ orgname: '卢記工业有限责任公司',
3270
+ address: '坑美十五巷202号',
3271
+ phone: '769-6447-1441',
3272
+ email: null,
3273
+ url: 'https://www.simmons96.org/Appliances',
3274
+ staffnum: 144,
3275
+ regcapital: 207.3241,
3276
+ paidcapital: 128.2934,
3277
+ insuranceratio: 13.18,
3278
+ isenable: true,
3279
+ status_singleselect: '6',
3280
+ range_multipleselect: ['I3007', 'I3008', 'I3011', 'I3014', 'I3027', 'I3034', 'L2032', 'L2095'],
3281
+ status_radio: '7',
3282
+ range_check: ['I3006', 'I3008', 'I3010', 'I3014', 'M2070', 'O3010'],
3283
+ establishdate: '2021-05-10T10:57:24.000Z',
3284
+ },
3285
+ {
3286
+ createdAt: '2023-08-16T10:27:52.000Z',
3287
+ updatedAt: '2023-07-10T02:25:11.725Z',
3288
+ createdById: null,
3289
+ updatedById: 4,
3290
+ testdataid: 63,
3291
+ orgcode: '320063',
3292
+ orgname: 'Perry Pharmaceutical LLC',
3293
+ address: '房山区岳琉路956号',
3294
+ phone: null,
3295
+ email: 'kwyin302@hotmail.com',
3296
+ url: 'http://video.wingfatcha7.us/ComputersElectronics',
3297
+ staffnum: 169,
3298
+ regcapital: 143.6456,
3299
+ paidcapital: 17.5641,
3300
+ insuranceratio: 49.78,
3301
+ isenable: true,
3302
+ status_singleselect: '5',
3303
+ range_multipleselect: ['I3007', 'I3008', 'I3027', 'I3034', 'L2095', 'M2070'],
3304
+ status_radio: '2',
3305
+ range_check: ['F3134', 'I3006', 'I3014', 'I3027', 'I3032', 'I3034', 'L2032', 'L2095'],
3306
+ establishdate: '2021-04-22T09:53:07.000Z',
3307
+ },
3308
+ {
3309
+ createdAt: '2023-07-10T19:32:09.000Z',
3310
+ updatedAt: '2023-07-10T02:25:11.732Z',
3311
+ createdById: null,
3312
+ updatedById: 7,
3313
+ testdataid: 94,
3314
+ orgcode: '430094',
3315
+ orgname: 'Aguilar LLC',
3316
+ address: '710 1st Ave',
3317
+ phone: '718-677-4225',
3318
+ email: 'mchic@outlook.com',
3319
+ url: 'http://www.wtimothy.info/AppsGames',
3320
+ staffnum: 158,
3321
+ regcapital: 229.4348,
3322
+ paidcapital: 248.8399,
3323
+ insuranceratio: 82.42,
3324
+ isenable: true,
3325
+ status_singleselect: '3',
3326
+ range_multipleselect: ['I3006', 'I3008', 'I3010', 'I3011', 'I3012', 'I3014', 'L2032', 'P1029'],
3327
+ status_radio: '1',
3328
+ range_check: [
3329
+ 'I3006',
3330
+ 'I3007',
3331
+ 'I3008',
3332
+ 'I3012',
3333
+ 'I3014',
3334
+ 'I3027',
3335
+ 'I3032',
3336
+ 'L2032',
3337
+ 'L2095',
3338
+ 'M2070',
3339
+ 'O3010',
3340
+ 'P1029',
3341
+ ],
3342
+ establishdate: '2021-04-20T23:37:47.000Z',
3343
+ },
3344
+ {
3345
+ createdAt: '2023-07-01T04:31:41.000Z',
3346
+ updatedAt: '2023-05-06T19:48:18.000Z',
3347
+ createdById: 6,
3348
+ updatedById: 4,
3349
+ testdataid: 90,
3350
+ orgcode: '640090',
3351
+ orgname: 'Maria Communications LLC',
3352
+ address: '東城区東直門內大街160号',
3353
+ phone: '10-4155-4174',
3354
+ email: 'keithug@gmail.com',
3355
+ url: 'https://auth.ayahasegawa9.net/Others',
3356
+ staffnum: 195,
3357
+ regcapital: 24.8107,
3358
+ paidcapital: 92.6292,
3359
+ insuranceratio: 67.85,
3360
+ isenable: true,
3361
+ status_singleselect: '8',
3362
+ range_multipleselect: ['I3007', 'I3008', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070', 'P1029'],
3363
+ status_radio: '2',
3364
+ range_check: ['I3006', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027', 'L2032', 'M2070', 'P1029'],
3365
+ establishdate: '2023-06-19T18:33:58.000Z',
3366
+ },
3367
+ {
3368
+ createdAt: '2023-04-30T13:55:12.000Z',
3369
+ updatedAt: '2023-07-10T02:25:11.739Z',
3370
+ createdById: 10,
3371
+ updatedById: null,
3372
+ testdataid: 61,
3373
+ orgcode: '640061',
3374
+ orgname: '秀英工程有限责任公司',
3375
+ address: '锦江区人民南路四段972号',
3376
+ phone: '28-8229-5494',
3377
+ email: 'kkakeung@hotmail.com',
3378
+ url: 'https://image.daisauman.co.jp/BaggageTravelEquipment',
3379
+ staffnum: 169,
3380
+ regcapital: 8.3627,
3381
+ paidcapital: 267.237,
3382
+ insuranceratio: 41.35,
3383
+ isenable: true,
3384
+ status_singleselect: '7',
3385
+ range_multipleselect: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'L2032', 'L2095', 'P1029'],
3386
+ status_radio: '1',
3387
+ range_check: ['F3134', 'I3006', 'I3008', 'I3010', 'I3014', 'I3027', 'I3034', 'L2032', 'P1029'],
3388
+ establishdate: '2021-09-20T16:20:50.000Z',
3389
+ },
3390
+ {
3391
+ createdAt: '2023-04-04T06:33:16.000Z',
3392
+ updatedAt: '2023-06-11T22:08:56.000Z',
3393
+ createdById: 3,
3394
+ updatedById: 4,
3395
+ testdataid: 1,
3396
+ orgcode: '320001',
3397
+ orgname: '子异有限责任公司',
3398
+ address: '锦江区人民南路四段831号',
3399
+ phone: '188-8510-5193',
3400
+ email: 'yamadaayato907@yahoo.com',
3401
+ url: 'http://video.merichardson5.biz/SportsOutdoor',
3402
+ staffnum: 87,
3403
+ regcapital: 224.0227,
3404
+ paidcapital: 288.8069,
3405
+ insuranceratio: 0.75,
3406
+ isenable: true,
3407
+ status_singleselect: '1',
3408
+ range_multipleselect: [
3409
+ 'I3006',
3410
+ 'I3007',
3411
+ 'I3010',
3412
+ 'I3011',
3413
+ 'I3012',
3414
+ 'I3027',
3415
+ 'I3034',
3416
+ 'L2032',
3417
+ 'L2095',
3418
+ 'M2070',
3419
+ 'O3010',
3420
+ ],
3421
+ status_radio: '1',
3422
+ range_check: ['F3134', 'I3007', 'I3010', 'I3012', 'I3032', 'L2032', 'M2070'],
3423
+ establishdate: '2022-12-03T17:27:35.000Z',
3424
+ },
3425
+ {
3426
+ createdAt: '2023-04-02T06:15:56.000Z',
3427
+ updatedAt: '2023-06-20T05:21:38.000Z',
3428
+ createdById: 3,
3429
+ updatedById: 4,
3430
+ testdataid: 38,
3431
+ orgcode: '450038',
3432
+ orgname: "Mills's Toy Inc.",
3433
+ address: '成华区二仙桥东三路904号',
3434
+ phone: '28-3185-9051',
3435
+ email: 'moria@icloud.com',
3436
+ url: 'https://video.sekat.net/ComputersElectronics',
3437
+ staffnum: 39,
3438
+ regcapital: 173.4007,
3439
+ paidcapital: 38.577,
3440
+ insuranceratio: 84.44,
3441
+ isenable: true,
3442
+ status_singleselect: '5',
3443
+ range_multipleselect: ['I3011', 'I3032', 'L2095', 'M2070', 'P1029'],
3444
+ status_radio: '7',
3445
+ range_check: null,
3446
+ establishdate: '2022-05-21T01:29:54.000Z',
3447
+ },
3448
+ {
3449
+ createdAt: '2023-03-13T10:50:26.000Z',
3450
+ updatedAt: '2023-06-01T14:40:47.000Z',
3451
+ createdById: 6,
3452
+ updatedById: 6,
3453
+ testdataid: 14,
3454
+ orgcode: '420014',
3455
+ orgname: '安琪制药有限责任公司',
3456
+ address: '986 1st Ave',
3457
+ phone: '718-947-3048',
3458
+ email: 'powm@yahoo.com',
3459
+ url: 'http://drive.chengsw.co.jp/AutomotivePartsAccessories',
3460
+ staffnum: 174,
3461
+ regcapital: 142.9716,
3462
+ paidcapital: 80.9565,
3463
+ insuranceratio: 23.87,
3464
+ isenable: null,
3465
+ status_singleselect: '4',
3466
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3010', 'I3011', 'I3012', 'I3027', 'I3032', 'L2032', 'L2095'],
3467
+ status_radio: '1',
3468
+ range_check: ['F3134', 'I3006', 'I3010', 'I3014', 'I3027', 'I3032', 'L2032'],
3469
+ establishdate: '2022-04-02T23:44:50.000Z',
3470
+ },
3471
+ {
3472
+ createdAt: '2023-05-01T17:47:37.000Z',
3473
+ updatedAt: '2023-07-11T11:57:11.000Z',
3474
+ createdById: 1,
3475
+ updatedById: 6,
3476
+ testdataid: 7,
3477
+ orgcode: '120007',
3478
+ orgname: 'Dawn Consultants Inc.',
3479
+ address: '西城区西長安街924号',
3480
+ phone: '10-368-3528',
3481
+ email: 'onkayya@yahoo.com',
3482
+ url: 'http://auth.che7.us/PetSupplies',
3483
+ staffnum: 18,
3484
+ regcapital: 118.5422,
3485
+ paidcapital: 26.4247,
3486
+ insuranceratio: 3.54,
3487
+ isenable: true,
3488
+ status_singleselect: '2',
3489
+ range_multipleselect: ['I3006', 'I3007', 'I3014', 'I3027', 'I3032', 'L2095', 'O3010', 'P1029'],
3490
+ status_radio: '2',
3491
+ range_check: ['F3134', 'I3010', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'P1029'],
3492
+ establishdate: '2023-08-06T11:29:00.000Z',
3493
+ },
3494
+ {
3495
+ createdAt: '2023-06-27T04:27:55.000Z',
3496
+ updatedAt: '2023-07-22T04:49:39.000Z',
3497
+ createdById: 5,
3498
+ updatedById: 3,
3499
+ testdataid: 96,
3500
+ orgcode: '210096',
3501
+ orgname: 'Samuel Electronic Inc.',
3502
+ address: '53 Dong Zhi Men, Dongcheng District',
3503
+ phone: '169-1441-5592',
3504
+ email: 'xuyuning@mail.com',
3505
+ url: 'https://auth.wu76.cn/Baby',
3506
+ staffnum: 195,
3507
+ regcapital: 39.701,
3508
+ paidcapital: 207.4876,
3509
+ insuranceratio: 94.68,
3510
+ isenable: true,
3511
+ status_singleselect: '7',
3512
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3027', 'I3032', 'L2095', 'M2070', 'P1029'],
3513
+ status_radio: '8',
3514
+ range_check: ['I3006', 'I3034', 'L2032', 'L2095'],
3515
+ establishdate: '2021-05-01T13:11:18.000Z',
3516
+ },
3517
+ {
3518
+ createdAt: '2023-06-12T05:43:49.000Z',
3519
+ updatedAt: '2023-07-17T08:15:07.000Z',
3520
+ createdById: 6,
3521
+ updatedById: 5,
3522
+ testdataid: 40,
3523
+ orgcode: '230040',
3524
+ orgname: 'Johnny LLC',
3525
+ address: '788 Shennan Ave, Futian District',
3526
+ phone: '755-593-2881',
3527
+ email: 'hjo@mail.com',
3528
+ url: null,
3529
+ staffnum: 137,
3530
+ regcapital: 24.5385,
3531
+ paidcapital: 250.5823,
3532
+ insuranceratio: 52.25,
3533
+ isenable: true,
3534
+ status_singleselect: '2',
3535
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3011', 'I3014', 'I3032', 'L2032', 'L2095', 'M2070'],
3536
+ status_radio: '4',
3537
+ range_check: ['I3007', 'I3010', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070', 'O3010', 'P1029'],
3538
+ establishdate: '2023-11-17T21:46:14.000Z',
3539
+ },
3540
+ {
3541
+ createdAt: '2023-06-15T06:41:01.000Z',
3542
+ updatedAt: '2023-06-17T00:51:49.000Z',
3543
+ createdById: 8,
3544
+ updatedById: 5,
3545
+ testdataid: 42,
3546
+ orgcode: '630042',
3547
+ orgname: 'Griffin Brothers Logistic Inc.',
3548
+ address: '197 Grape Street',
3549
+ phone: '213-126-7992',
3550
+ email: 'zitaowan1971@outlook.com',
3551
+ url: 'https://image.parkerdiane.net/Others',
3552
+ staffnum: 26,
3553
+ regcapital: 251.177,
3554
+ paidcapital: 292.6008,
3555
+ insuranceratio: 79.99,
3556
+ isenable: true,
3557
+ status_singleselect: '6',
3558
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3011', 'I3034', 'L2032', 'L2095', 'O3010', 'P1029'],
3559
+ status_radio: '1',
3560
+ range_check: ['F3134', 'I3011', 'I3012', 'I3027', 'I3032', 'P1029'],
3561
+ establishdate: '2022-10-06T20:13:52.000Z',
3562
+ },
3563
+ {
3564
+ createdAt: '2023-03-04T18:03:54.000Z',
3565
+ updatedAt: '2023-08-07T00:59:00.000Z',
3566
+ createdById: 5,
3567
+ updatedById: 1,
3568
+ testdataid: 52,
3569
+ orgcode: '650052',
3570
+ orgname: '杜工程有限责任公司',
3571
+ address: '924 Wooster Street',
3572
+ phone: '212-656-1851',
3573
+ email: 'sakamoto303@icloud.com',
3574
+ url: 'http://drive.waiman1946.biz/ClothingShoesandJewelry',
3575
+ staffnum: 149,
3576
+ regcapital: 85.2739,
3577
+ paidcapital: 47.86,
3578
+ insuranceratio: 5.24,
3579
+ isenable: true,
3580
+ status_singleselect: '1',
3581
+ range_multipleselect: ['I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'L2095', 'M2070', 'P1029'],
3582
+ status_radio: '8',
3583
+ range_check: ['I3007', 'I3010', 'I3012', 'I3027', 'I3032', 'I3034', 'L2032', 'L2095', 'M2070'],
3584
+ establishdate: '2021-04-22T06:26:45.000Z',
3585
+ },
3586
+ {
3587
+ createdAt: '2023-04-01T16:13:17.000Z',
3588
+ updatedAt: '2023-05-22T09:24:17.000Z',
3589
+ createdById: 8,
3590
+ updatedById: 10,
3591
+ testdataid: 6,
3592
+ orgcode: '630006',
3593
+ orgname: 'Jacob Telecommunication LLC',
3594
+ address: '东泰五街968号',
3595
+ phone: '769-163-0302',
3596
+ email: 'ikiw@gmail.com',
3597
+ url: 'http://www.wmsiu.cn/ClothingShoesandJewelry',
3598
+ staffnum: 129,
3599
+ regcapital: 28.8318,
3600
+ paidcapital: 17.9883,
3601
+ insuranceratio: 87.39,
3602
+ isenable: true,
3603
+ status_singleselect: '1',
3604
+ range_multipleselect: ['I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3032', 'L2032', 'O3010', 'P1029'],
3605
+ status_radio: '3',
3606
+ range_check: ['F3134', 'I3006', 'I3010', 'I3011', 'I3027', 'I3032', 'L2095', 'M2070'],
3607
+ establishdate: '2023-04-11T23:07:14.000Z',
3608
+ },
3609
+ {
3610
+ createdAt: '2023-03-15T15:19:15.000Z',
3611
+ updatedAt: '2023-07-10T02:25:11.742Z',
3612
+ createdById: 8,
3613
+ updatedById: null,
3614
+ testdataid: 83,
3615
+ orgcode: '440083',
3616
+ orgname: 'Linda Software LLC',
3617
+ address: '福田区景田东一街36号',
3618
+ phone: '193-8669-1290',
3619
+ email: 'mio10@outlook.com',
3620
+ url: 'https://video.joe306.org/Handcrafts',
3621
+ staffnum: 123,
3622
+ regcapital: 127.33,
3623
+ paidcapital: 209.9907,
3624
+ insuranceratio: 96.56,
3625
+ isenable: true,
3626
+ status_singleselect: '2',
3627
+ range_multipleselect: ['I3006', 'I3012', 'I3027', 'L2095', 'M2070', 'O3010', 'P1029'],
3628
+ status_radio: '3',
3629
+ range_check: [
3630
+ 'F3134',
3631
+ 'I3006',
3632
+ 'I3007',
3633
+ 'I3008',
3634
+ 'I3011',
3635
+ 'I3012',
3636
+ 'I3027',
3637
+ 'I3032',
3638
+ 'I3034',
3639
+ 'L2095',
3640
+ 'M2070',
3641
+ 'O3010',
3642
+ ],
3643
+ establishdate: '2021-10-24T08:00:26.000Z',
3644
+ },
3645
+ {
3646
+ createdAt: '2023-08-08T08:50:58.000Z',
3647
+ updatedAt: '2023-07-30T08:37:12.000Z',
3648
+ createdById: 1,
3649
+ updatedById: 4,
3650
+ testdataid: 64,
3651
+ orgcode: '650064',
3652
+ orgname: '范物业代理有限责任公司',
3653
+ address: '459 Xue Yuan Yi Xiang, Longgang',
3654
+ phone: '755-2232-1934',
3655
+ email: 'leswhite229@outlook.com',
3656
+ url: 'http://auth.nakanaoshi1954.biz/BeautyPersonalCare',
3657
+ staffnum: 167,
3658
+ regcapital: 50.6322,
3659
+ paidcapital: 253.2695,
3660
+ insuranceratio: 74.53,
3661
+ isenable: null,
3662
+ status_singleselect: '4',
3663
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3008', 'I3010', 'I3012', 'I3027', 'I3034', 'O3010'],
3664
+ status_radio: '5',
3665
+ range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3032', 'I3034', 'L2032', 'L2095', 'M2070', 'P1029'],
3666
+ establishdate: '2021-09-28T05:02:42.000Z',
3667
+ },
3668
+ {
3669
+ createdAt: '2023-03-13T20:21:27.000Z',
3670
+ updatedAt: '2023-07-10T02:25:11.738Z',
3671
+ createdById: 7,
3672
+ updatedById: null,
3673
+ testdataid: 50,
3674
+ orgcode: '420050',
3675
+ orgname: 'Helen Electronic Inc.',
3676
+ address: '891 028 County Rd, Yanqing District',
3677
+ phone: '10-8030-8564',
3678
+ email: 'linr1955@icloud.com',
3679
+ url: 'http://www.rossanna908.xyz/SportsOutdoor',
3680
+ staffnum: 149,
3681
+ regcapital: 143.496,
3682
+ paidcapital: null,
3683
+ insuranceratio: 40.72,
3684
+ isenable: true,
3685
+ status_singleselect: '5',
3686
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3011', 'I3027', 'I3032', 'I3034', 'L2032', 'O3010'],
3687
+ status_radio: '5',
3688
+ range_check: ['I3006', 'I3008', 'I3010', 'I3011', 'I3012', 'I3032', 'M2070', 'O3010'],
3689
+ establishdate: '2023-11-27T06:02:42.000Z',
3690
+ },
3691
+ {
3692
+ createdAt: '2023-08-22T10:45:00.000Z',
3693
+ updatedAt: '2023-07-06T22:27:32.000Z',
3694
+ createdById: 5,
3695
+ updatedById: 9,
3696
+ testdataid: 2,
3697
+ orgcode: '120002',
3698
+ orgname: 'Black Technology LLC',
3699
+ address: '71 Pedway',
3700
+ phone: '312-418-7933',
3701
+ email: 'aarimura9@outlook.com',
3702
+ url: 'http://auth.patel03.biz/HealthBabyCare',
3703
+ staffnum: 95,
3704
+ regcapital: 70.7385,
3705
+ paidcapital: 96.6588,
3706
+ insuranceratio: 74.47,
3707
+ isenable: true,
3708
+ status_singleselect: '7',
3709
+ range_multipleselect: [
3710
+ 'F3134',
3711
+ 'I3006',
3712
+ 'I3007',
3713
+ 'I3008',
3714
+ 'I3010',
3715
+ 'I3011',
3716
+ 'I3012',
3717
+ 'I3014',
3718
+ 'I3027',
3719
+ 'I3032',
3720
+ 'M2070',
3721
+ 'O3010',
3722
+ 'P1029',
3723
+ ],
3724
+ status_radio: '7',
3725
+ range_check: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3032', 'I3034', 'L2095', 'P1029'],
3726
+ establishdate: '2021-02-18T13:44:21.000Z',
3727
+ },
3728
+ {
3729
+ createdAt: '2023-07-24T13:03:58.000Z',
3730
+ updatedAt: '2023-08-15T23:59:06.000Z',
3731
+ createdById: 0,
3732
+ updatedById: 10,
3733
+ testdataid: 76,
3734
+ orgcode: '340076',
3735
+ orgname: 'Jeff Inc.',
3736
+ address: '珊瑚路357号',
3737
+ phone: '769-5438-3615',
3738
+ email: 'ikk53@gmail.com',
3739
+ url: 'http://www.chimingyeung.info/CellPhonesAccessories',
3740
+ staffnum: 127,
3741
+ regcapital: 12.9611,
3742
+ paidcapital: 177.9844,
3743
+ insuranceratio: 98.28,
3744
+ isenable: true,
3745
+ status_singleselect: '2',
3746
+ range_multipleselect: ['F3134', 'I3007', 'I3010', 'I3027', 'L2032', 'L2095', 'O3010', 'P1029'],
3747
+ status_radio: '4',
3748
+ range_check: [
3749
+ 'I3006',
3750
+ 'I3007',
3751
+ 'I3008',
3752
+ 'I3011',
3753
+ 'I3012',
3754
+ 'I3027',
3755
+ 'I3032',
3756
+ 'I3034',
3757
+ 'L2032',
3758
+ 'L2095',
3759
+ 'O3010',
3760
+ 'P1029',
3761
+ ],
3762
+ establishdate: '2021-02-20T10:36:54.000Z',
3763
+ },
3764
+ {
3765
+ createdAt: '2023-06-01T02:52:18.000Z',
3766
+ updatedAt: '2023-07-05T07:00:07.000Z',
3767
+ createdById: 0,
3768
+ updatedById: 10,
3769
+ testdataid: 16,
3770
+ orgcode: '410016',
3771
+ orgname: '卢系统有限责任公司',
3772
+ address: '670 Figueroa Street',
3773
+ phone: '213-571-5321',
3774
+ email: 'shiry@gmail.com',
3775
+ url: 'https://video.yishihan64.xyz/Food',
3776
+ staffnum: 63,
3777
+ regcapital: 127.0708,
3778
+ paidcapital: 25.9392,
3779
+ insuranceratio: 89.87,
3780
+ isenable: null,
3781
+ status_singleselect: '5',
3782
+ range_multipleselect: ['I3006', 'I3008', 'I3010', 'I3011', 'I3027', 'I3032', 'L2095'],
3783
+ status_radio: '3',
3784
+ range_check: ['I3008', 'I3014', 'I3032', 'L2095', 'P1029'],
3785
+ establishdate: '2022-03-30T15:28:56.000Z',
3786
+ },
3787
+ {
3788
+ createdAt: '2023-08-09T02:19:55.000Z',
3789
+ updatedAt: '2023-07-10T02:25:11.730Z',
3790
+ createdById: null,
3791
+ updatedById: 3,
3792
+ testdataid: 98,
3793
+ orgcode: '350098',
3794
+ orgname: 'King Brothers Telecommunication Inc.',
3795
+ address: '582 Diplomacy Drive',
3796
+ phone: '614-785-5349',
3797
+ email: 'lindadams922@gmail.com',
3798
+ url: 'https://www.luwu.biz/ToolsHomeDecoration',
3799
+ staffnum: 146,
3800
+ regcapital: 237.6197,
3801
+ paidcapital: 295.3728,
3802
+ insuranceratio: 92,
3803
+ isenable: true,
3804
+ status_singleselect: '7',
3805
+ range_multipleselect: ['I3007', 'I3014', 'I3027', 'L2095', 'O3010'],
3806
+ status_radio: '7',
3807
+ range_check: ['I3006', 'I3008', 'I3010', 'I3012', 'I3027', 'L2095', 'O3010', 'P1029'],
3808
+ establishdate: '2022-09-04T04:56:52.000Z',
3809
+ },
3810
+ {
3811
+ createdAt: '2023-03-03T14:11:21.000Z',
3812
+ updatedAt: '2023-06-10T07:54:44.000Z',
3813
+ createdById: 10,
3814
+ updatedById: 8,
3815
+ testdataid: 82,
3816
+ orgcode: '650082',
3817
+ orgname: '子韬食品有限责任公司',
3818
+ address: '889 Alameda Street',
3819
+ phone: '213-000-0993',
3820
+ email: 'goto1004@icloud.com',
3821
+ url: 'https://drive.kucy84.org/FilmSupplies',
3822
+ staffnum: 164,
3823
+ regcapital: null,
3824
+ paidcapital: 75.458,
3825
+ insuranceratio: 56.84,
3826
+ isenable: true,
3827
+ status_singleselect: '5',
3828
+ range_multipleselect: ['I3006', 'I3007', 'I3012', 'I3014', 'I3027', 'I3034', 'L2095', 'M2070', 'P1029'],
3829
+ status_radio: '1',
3830
+ range_check: ['F3134', 'I3010', 'I3012', 'I3014', 'I3027', 'I3032', 'L2032', 'L2095'],
3831
+ establishdate: null,
3832
+ },
3833
+ {
3834
+ createdAt: '2023-05-04T12:45:29.000Z',
3835
+ updatedAt: '2023-05-29T15:14:39.000Z',
3836
+ createdById: 4,
3837
+ updatedById: 4,
3838
+ testdataid: 32,
3839
+ orgcode: '210032',
3840
+ orgname: '杰宏贸易有限责任公司',
3841
+ address: '695 Fifth Avenue',
3842
+ phone: '212-301-3048',
3843
+ email: 'tianrui6@mail.com',
3844
+ url: 'https://video.fat12.us/AppsGames',
3845
+ staffnum: 196,
3846
+ regcapital: 253.0279,
3847
+ paidcapital: 201.5416,
3848
+ insuranceratio: 26.71,
3849
+ isenable: true,
3850
+ status_singleselect: '7',
3851
+ range_multipleselect: ['F3134', 'I3006', 'I3007', 'I3014', 'I3032', 'I3034', 'M2070'],
3852
+ status_radio: '7',
3853
+ range_check: [
3854
+ 'I3006',
3855
+ 'I3007',
3856
+ 'I3008',
3857
+ 'I3010',
3858
+ 'I3011',
3859
+ 'I3012',
3860
+ 'I3032',
3861
+ 'I3034',
3862
+ 'L2032',
3863
+ 'L2095',
3864
+ 'O3010',
3865
+ 'P1029',
3866
+ ],
3867
+ establishdate: '2022-11-10T12:49:21.000Z',
3868
+ },
3869
+ {
3870
+ createdAt: '2023-06-20T22:11:44.000Z',
3871
+ updatedAt: '2023-07-01T22:29:47.000Z',
3872
+ createdById: 0,
3873
+ updatedById: 6,
3874
+ testdataid: 88,
3875
+ orgcode: '550088',
3876
+ orgname: 'Thomas Engineering LLC',
3877
+ address: 'No.24, Dongsan Road, Erxianqiao, Chenghua District',
3878
+ phone: '178-8435-2008',
3879
+ email: 'rachelj5@icloud.com',
3880
+ url: 'http://www.dulan.us/VideoGames',
3881
+ staffnum: 49,
3882
+ regcapital: 57.0454,
3883
+ paidcapital: 79.007,
3884
+ insuranceratio: 84.03,
3885
+ isenable: null,
3886
+ status_singleselect: '7',
3887
+ range_multipleselect: ['I3007', 'I3010', 'I3011', 'I3032', 'I3034', 'L2095', 'M2070', 'O3010'],
3888
+ status_radio: '1',
3889
+ range_check: ['I3007', 'I3012', 'I3027', 'I3034', 'L2095'],
3890
+ establishdate: '2022-02-23T22:58:42.000Z',
3891
+ },
3892
+ {
3893
+ createdAt: '2023-03-28T22:03:18.000Z',
3894
+ updatedAt: '2023-06-03T12:48:50.000Z',
3895
+ createdById: 4,
3896
+ updatedById: 8,
3897
+ testdataid: 3,
3898
+ orgcode: '430003',
3899
+ orgname: '彭記电子有限责任公司',
3900
+ address: '白云区小坪东路412号',
3901
+ phone: '155-6842-3057',
3902
+ email: 'ctingfung@mail.com',
3903
+ url: 'http://image.yan2007.org/FilmSupplies',
3904
+ staffnum: 158,
3905
+ regcapital: 15.9472,
3906
+ paidcapital: 73.3624,
3907
+ insuranceratio: 67.76,
3908
+ isenable: true,
3909
+ status_singleselect: '6',
3910
+ range_multipleselect: ['F3134', 'I3010', 'I3011', 'I3012', 'I3027'],
3911
+ status_radio: '5',
3912
+ range_check: ['I3006', 'I3007', 'I3008', 'I3012', 'I3027', 'M2070', 'O3010', 'P1029'],
3913
+ establishdate: '2023-02-18T04:02:21.000Z',
3914
+ },
3915
+ {
3916
+ createdAt: '2023-06-15T07:46:48.000Z',
3917
+ updatedAt: '2023-05-01T19:53:39.000Z',
3918
+ createdById: 6,
3919
+ updatedById: 3,
3920
+ testdataid: 92,
3921
+ orgcode: '510092',
3922
+ orgname: '邱記贸易有限责任公司',
3923
+ address: '930 Rush Street',
3924
+ phone: '312-781-8750',
3925
+ email: 'xiujia1961@mail.com',
3926
+ url: 'http://image.lamwingfat.us/ComputersElectronics',
3927
+ staffnum: 76,
3928
+ regcapital: null,
3929
+ paidcapital: 282.6866,
3930
+ insuranceratio: 76.86,
3931
+ isenable: true,
3932
+ status_singleselect: '7',
3933
+ range_multipleselect: ['I3006', 'I3007', 'I3011', 'I3027', 'L2032', 'P1029'],
3934
+ status_radio: '7',
3935
+ range_check: ['F3134', 'I3010', 'I3014', 'I3032', 'L2095', 'P1029'],
3936
+ establishdate: '2023-11-18T06:44:55.000Z',
3937
+ },
3938
+ {
3939
+ createdAt: '2023-06-09T17:49:18.000Z',
3940
+ updatedAt: '2023-07-10T02:25:11.735Z',
3941
+ createdById: null,
3942
+ updatedById: null,
3943
+ testdataid: 68,
3944
+ orgcode: '450068',
3945
+ orgname: '汪記有限责任公司',
3946
+ address: '坑美十五巷585号',
3947
+ phone: '769-680-4019',
3948
+ email: null,
3949
+ url: 'https://video.lok2000.org/IndustrialScientificSupplies',
3950
+ staffnum: 139,
3951
+ regcapital: 90.9114,
3952
+ paidcapital: 284.0137,
3953
+ insuranceratio: 21.71,
3954
+ isenable: true,
3955
+ status_singleselect: '7',
3956
+ range_multipleselect: ['I3006', 'I3010', 'I3012', 'I3027', 'I3032', 'L2095', 'O3010'],
3957
+ status_radio: '7',
3958
+ range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'L2095'],
3959
+ establishdate: '2021-11-03T10:14:09.000Z',
3960
+ },
3961
+ {
3962
+ createdAt: '2023-06-16T05:04:59.000Z',
3963
+ updatedAt: '2023-06-16T07:08:56.000Z',
3964
+ createdById: 6,
3965
+ updatedById: 9,
3966
+ testdataid: 54,
3967
+ orgcode: '310054',
3968
+ orgname: "Martinez's Logistic LLC",
3969
+ address: '476 Yueliu Rd, Fangshan District',
3970
+ phone: '10-971-0570',
3971
+ email: 'yogoto@hotmail.com',
3972
+ url: 'https://www.kimuram2.co.jp/CDsVinyl',
3973
+ staffnum: 132,
3974
+ regcapital: 80.6528,
3975
+ paidcapital: 87.4258,
3976
+ insuranceratio: 87.58,
3977
+ isenable: true,
3978
+ status_singleselect: '7',
3979
+ range_multipleselect: ['I3006', 'I3010', 'I3011', 'I3032', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010', 'P1029'],
3980
+ status_radio: '3',
3981
+ range_check: ['I3006', 'I3007', 'I3008', 'I3012', 'I3032', 'L2095', 'M2070', 'O3010', 'P1029'],
3982
+ establishdate: '2021-08-11T08:08:33.000Z',
3983
+ },
3984
+ {
3985
+ createdAt: '2023-07-17T20:41:03.000Z',
3986
+ updatedAt: '2023-06-24T05:16:44.000Z',
3987
+ createdById: 5,
3988
+ updatedById: 9,
3989
+ testdataid: 93,
3990
+ orgcode: '350093',
3991
+ orgname: '安琪有限责任公司',
3992
+ address: '712 Huaxia St, Jinghua Shangquan',
3993
+ phone: '138-0406-7670',
3994
+ email: 'zhennanm@yahoo.com',
3995
+ url: 'http://drive.akinamori803.cn/Food',
3996
+ staffnum: 186,
3997
+ regcapital: 37.836,
3998
+ paidcapital: 53.0391,
3999
+ insuranceratio: 74.62,
4000
+ isenable: true,
4001
+ status_singleselect: '2',
4002
+ range_multipleselect: ['I3006', 'I3012', 'I3014', 'I3027', 'O3010'],
4003
+ status_radio: '2',
4004
+ range_check: ['I3007', 'I3010', 'I3011', 'I3012', 'I3034', 'M2070', 'O3010'],
4005
+ establishdate: '2023-06-28T09:10:55.000Z',
4006
+ },
4007
+ {
4008
+ createdAt: '2023-05-11T11:07:26.000Z',
4009
+ updatedAt: '2023-06-20T19:16:26.000Z',
4010
+ createdById: 9,
4011
+ updatedById: 9,
4012
+ testdataid: 13,
4013
+ orgcode: '310013',
4014
+ orgname: 'Evans Brothers LLC',
4015
+ address: '黄浦区淮海中路683号',
4016
+ phone: '164-7632-7777',
4017
+ email: 'aokon@gmail.com',
4018
+ url: 'http://image.shawm9.us/CellPhonesAccessories',
4019
+ staffnum: 97,
4020
+ regcapital: 182.859,
4021
+ paidcapital: 105.8903,
4022
+ insuranceratio: 63.85,
4023
+ isenable: true,
4024
+ status_singleselect: '3',
4025
+ range_multipleselect: ['F3134', 'I3006', 'I3008', 'I3012', 'I3014', 'L2032', 'O3010'],
4026
+ status_radio: '5',
4027
+ range_check: ['I3008', 'I3010', 'I3012', 'L2095'],
4028
+ establishdate: '2021-09-05T13:35:37.000Z',
4029
+ },
4030
+ {
4031
+ createdAt: '2023-03-10T11:27:35.000Z',
4032
+ updatedAt: '2023-06-28T11:16:47.000Z',
4033
+ createdById: 6,
4034
+ updatedById: 4,
4035
+ testdataid: 91,
4036
+ orgcode: '240091',
4037
+ orgname: '郑顾问有限责任公司',
4038
+ address: '872 Canal Street',
4039
+ phone: '212-005-7205',
4040
+ email: 'rink4@mail.com',
4041
+ url: 'https://image.jimenezt7.jp/Others',
4042
+ staffnum: 167,
4043
+ regcapital: 288.5176,
4044
+ paidcapital: 33.3404,
4045
+ insuranceratio: 55.87,
4046
+ isenable: true,
4047
+ status_singleselect: '3',
4048
+ range_multipleselect: ['I3011', 'I3027', 'I3034', 'L2032'],
4049
+ status_radio: '8',
4050
+ range_check: ['I3008', 'I3011', 'I3034', 'L2032', 'L2095', 'M2070', 'O3010'],
4051
+ establishdate: null,
4052
+ },
4053
+ {
4054
+ createdAt: '2023-08-11T17:06:24.000Z',
4055
+ updatedAt: '2023-06-24T22:14:32.000Z',
4056
+ createdById: 3,
4057
+ updatedById: 7,
4058
+ testdataid: 17,
4059
+ orgcode: '620017',
4060
+ orgname: 'Patrick Technology LLC',
4061
+ address: '505 Ridgewood Road',
4062
+ phone: '330-035-6552',
4063
+ email: 'nommis58@icloud.com',
4064
+ url: 'http://auth.suitsuki304.net/Handcrafts',
4065
+ staffnum: 196,
4066
+ regcapital: 163.7404,
4067
+ paidcapital: 14.0622,
4068
+ insuranceratio: 25.51,
4069
+ isenable: null,
4070
+ status_singleselect: '3',
4071
+ range_multipleselect: null,
4072
+ status_radio: '2',
4073
+ range_check: ['F3134', 'I3006', 'I3011', 'I3012', 'I3014', 'I3027', 'I3034', 'L2032', 'M2070', 'O3010', 'P1029'],
4074
+ establishdate: '2022-08-06T12:16:45.000Z',
4075
+ },
4076
+ {
4077
+ createdAt: '2023-03-09T02:32:46.000Z',
4078
+ updatedAt: '2023-07-02T05:29:43.000Z',
4079
+ createdById: 3,
4080
+ updatedById: 6,
4081
+ testdataid: 46,
4082
+ orgcode: '220046',
4083
+ orgname: "Schmidt's Inc.",
4084
+ address: '503 2nd Zhongshan Road, Yuexiu District',
4085
+ phone: '20-272-7867',
4086
+ email: 'ylla@outlook.com',
4087
+ url: 'https://www.seikokudo.cn/Books',
4088
+ staffnum: 131,
4089
+ regcapital: 259.642,
4090
+ paidcapital: 172.6541,
4091
+ insuranceratio: 38.83,
4092
+ isenable: true,
4093
+ status_singleselect: '3',
4094
+ range_multipleselect: ['I3006', 'I3007', 'I3010', 'I3012', 'I3027', 'I3034', 'L2095', 'M2070', 'P1029'],
4095
+ status_radio: '7',
4096
+ range_check: ['I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'I3034', 'M2070'],
4097
+ establishdate: '2023-06-16T08:57:56.000Z',
4098
+ },
4099
+ {
4100
+ createdAt: '2023-04-02T02:35:24.000Z',
4101
+ updatedAt: '2023-07-22T21:27:03.000Z',
4102
+ createdById: 7,
4103
+ updatedById: 5,
4104
+ testdataid: 48,
4105
+ orgcode: '530048',
4106
+ orgname: "Long's LLC",
4107
+ address: '成华区双庆路872号',
4108
+ phone: '28-2897-5944',
4109
+ email: 'koonwy@outlook.com',
4110
+ url: 'https://auth.zj2017.org/Beauty',
4111
+ staffnum: 22,
4112
+ regcapital: 81.2412,
4113
+ paidcapital: 89.2826,
4114
+ insuranceratio: 22.58,
4115
+ isenable: true,
4116
+ status_singleselect: '8',
4117
+ range_multipleselect: ['I3008', 'I3011', 'I3012', 'I3034', 'L2032'],
4118
+ status_radio: '1',
4119
+ range_check: ['F3134', 'I3006', 'I3008', 'I3011', 'I3012', 'I3034', 'L2032', 'M2070', 'O3010'],
4120
+ establishdate: '2023-08-06T15:31:45.000Z',
4121
+ },
4122
+ {
4123
+ createdAt: '2023-08-06T02:38:26.000Z',
4124
+ updatedAt: '2023-07-01T01:03:02.000Z',
4125
+ createdById: 4,
4126
+ updatedById: 6,
4127
+ testdataid: 99,
4128
+ orgcode: '310099',
4129
+ orgname: 'Jamie Consultants LLC',
4130
+ address: '罗湖区清水河一路156号',
4131
+ phone: '755-7525-5040',
4132
+ email: 'ikki922@icloud.com',
4133
+ url: 'http://video.haki.info/ArtsHandicraftsSewing',
4134
+ staffnum: 140,
4135
+ regcapital: null,
4136
+ paidcapital: 234.484,
4137
+ insuranceratio: 55.76,
4138
+ isenable: null,
4139
+ status_singleselect: '1',
4140
+ range_multipleselect: ['F3134', 'I3010', 'I3011', 'I3012', 'I3014', 'I3027', 'I3032', 'M2070', 'O3010'],
4141
+ status_radio: '1',
4142
+ range_check: [
4143
+ 'I3007',
4144
+ 'I3010',
4145
+ 'I3011',
4146
+ 'I3014',
4147
+ 'I3027',
4148
+ 'I3032',
4149
+ 'I3034',
4150
+ 'L2032',
4151
+ 'L2095',
4152
+ 'M2070',
4153
+ 'O3010',
4154
+ 'P1029',
4155
+ ],
4156
+ establishdate: '2022-10-17T10:43:37.000Z',
4157
+ },
4158
+ {
4159
+ createdAt: '2023-06-12T16:34:38.000Z',
4160
+ updatedAt: '2023-08-03T11:31:10.000Z',
4161
+ createdById: 8,
4162
+ updatedById: 4,
4163
+ testdataid: 22,
4164
+ orgcode: '120022',
4165
+ orgname: '子韬有限责任公司',
4166
+ address: '442 Tangyuan Street 5th Alley, Airport Road, Baiyun',
4167
+ phone: '168-8185-4258',
4168
+ email: 'anqihu5@gmail.com',
4169
+ url: 'http://auth.ontang10.xyz/CDsVinyl',
4170
+ staffnum: 150,
4171
+ regcapital: 191.8842,
4172
+ paidcapital: 282.3322,
4173
+ insuranceratio: 37.26,
4174
+ isenable: true,
4175
+ status_singleselect: '5',
4176
+ range_multipleselect: ['F3134', 'I3007', 'I3014', 'I3034', 'M2070', 'P1029'],
4177
+ status_radio: '8',
4178
+ range_check: [
4179
+ 'I3006',
4180
+ 'I3007',
4181
+ 'I3008',
4182
+ 'I3010',
4183
+ 'I3011',
4184
+ 'I3012',
4185
+ 'I3014',
4186
+ 'I3027',
4187
+ 'I3032',
4188
+ 'L2032',
4189
+ 'L2095',
4190
+ 'M2070',
4191
+ 'O3010',
4192
+ 'P1029',
4193
+ ],
4194
+ establishdate: '2022-05-31T12:34:11.000Z',
4195
+ },
4196
+ {
4197
+ createdAt: '2023-04-26T08:00:47.000Z',
4198
+ updatedAt: '2023-06-26T22:25:14.000Z',
4199
+ createdById: 7,
4200
+ updatedById: 7,
4201
+ testdataid: 97,
4202
+ orgcode: '120097',
4203
+ orgname: '嘉伦有限责任公司',
4204
+ address: '天河区大信商圈大信南路342号',
4205
+ phone: '165-5165-2865',
4206
+ email: 'gonzalez1221@gmail.com',
4207
+ url: 'https://auth.kwansw901.biz/HouseholdKitchenAppliances',
4208
+ staffnum: 34,
4209
+ regcapital: 38.0234,
4210
+ paidcapital: 180.0297,
4211
+ insuranceratio: 10.93,
4212
+ isenable: true,
4213
+ status_singleselect: '5',
4214
+ range_multipleselect: ['I3008', 'I3010', 'I3011', 'I3014', 'I3034', 'L2095', 'M2070', 'O3010', 'P1029'],
4215
+ status_radio: '6',
4216
+ range_check: ['F3134', 'I3007', 'I3011', 'I3012', 'I3014', 'I3027', 'L2032', 'M2070', 'O3010', 'P1029'],
4217
+ establishdate: null,
4218
+ },
4219
+ {
4220
+ createdAt: '2023-04-20T07:20:03.000Z',
4221
+ updatedAt: '2023-05-22T03:28:57.000Z',
4222
+ createdById: 7,
4223
+ updatedById: 3,
4224
+ testdataid: 67,
4225
+ orgcode: '240067',
4226
+ orgname: 'Betty Telecommunication Inc.',
4227
+ address: '351 Figueroa Street',
4228
+ phone: '213-187-2091',
4229
+ email: 'marthaferguson6@gmail.com',
4230
+ url: 'https://www.taniguchihina1110.us/SportsOutdoor',
4231
+ staffnum: 58,
4232
+ regcapital: 188.0791,
4233
+ paidcapital: 127.5241,
4234
+ insuranceratio: 36.21,
4235
+ isenable: null,
4236
+ status_singleselect: '5',
4237
+ range_multipleselect: ['I3006', 'I3010', 'I3014', 'I3027', 'L2032', 'O3010'],
4238
+ status_radio: '1',
4239
+ range_check: ['F3134', 'I3006', 'I3007', 'I3008', 'I3011', 'L2032', 'L2095', 'O3010'],
4240
+ establishdate: '2023-01-11T04:04:18.000Z',
4241
+ },
4242
+ ];
4243
+ export default module.exports = {
4244
+ appendJsonCollectionName,
4245
+ builtinGeneral,
4246
+ builtinFile,
4247
+ builtinExpression,
4248
+ generalWithNoRelationalFields,
4249
+ generalWithNoRelationalFieldsData,
4250
+ };