@byteluck-fe/model-driven-controls 7.0.0-props.37 → 7.0.0-props.39

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,1025 @@
1
+ {
2
+ "name": "rok_tag",
3
+ "description": "标签组件,参考 ant-design-vue 标签能力。支持标签/文本两种展示形式、样式主题、尺寸、字体风格和对齐方式配置,适合状态展示与轻量信息标记场景。",
4
+ "parameters": {
5
+ "type": "object",
6
+ "properties": {
7
+ "isHide": {
8
+ "type": "boolean",
9
+ "description": "是否隐藏",
10
+ "default": false
11
+ },
12
+ "caption": {
13
+ "type": "string",
14
+ "description": "标题",
15
+ "default": ""
16
+ },
17
+ "defaultState": {
18
+ "type": "string",
19
+ "enum": [
20
+ "default",
21
+ "readonly"
22
+ ],
23
+ "description": "默认状态",
24
+ "default": "default",
25
+ "enumDescription": [
26
+ "default",
27
+ "readonly"
28
+ ]
29
+ },
30
+ "captionSize": {
31
+ "type": "string",
32
+ "description": "标题大小",
33
+ "default": ""
34
+ },
35
+ "captionColor": {
36
+ "type": "string",
37
+ "description": "标题颜色",
38
+ "default": ""
39
+ },
40
+ "isCaptionItalic": {
41
+ "type": "boolean",
42
+ "description": "标题斜体",
43
+ "default": false
44
+ },
45
+ "isHideCaption": {
46
+ "type": "boolean",
47
+ "description": "隐藏标题",
48
+ "default": false
49
+ },
50
+ "isShowCaptionTip": {
51
+ "type": "boolean",
52
+ "description": "显示气泡提示",
53
+ "default": false
54
+ },
55
+ "captionTip": {
56
+ "type": "string",
57
+ "description": "气泡提示语",
58
+ "default": ""
59
+ },
60
+ "labelPosition": {
61
+ "type": "string",
62
+ "enum": [
63
+ "top",
64
+ "left"
65
+ ],
66
+ "description": "标题布局",
67
+ "default": "",
68
+ "enumDescription": [
69
+ "top",
70
+ "left"
71
+ ]
72
+ },
73
+ "dataBind": {
74
+ "anyOf": [
75
+ {
76
+ "type": "object",
77
+ "properties": {
78
+ "dataCode": {
79
+ "type": "string",
80
+ "description": "数据模型编码",
81
+ "default": ""
82
+ },
83
+ "fieldCode": {
84
+ "type": "string",
85
+ "description": "字段编码",
86
+ "default": ""
87
+ },
88
+ "fieldType": {
89
+ "type": "string",
90
+ "description": "字段类型",
91
+ "default": ""
92
+ },
93
+ "aliasCode": {
94
+ "type": "string",
95
+ "description": "表别名"
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "type": "object",
101
+ "additionalProperties": {
102
+ "type": "object",
103
+ "properties": {
104
+ "dataCode": {
105
+ "type": "string",
106
+ "description": "数据模型编码",
107
+ "default": ""
108
+ },
109
+ "fieldCode": {
110
+ "type": "string",
111
+ "description": "字段编码",
112
+ "default": ""
113
+ },
114
+ "fieldType": {
115
+ "type": "string",
116
+ "description": "字段类型",
117
+ "default": ""
118
+ },
119
+ "aliasCode": {
120
+ "type": "string",
121
+ "description": "表别名"
122
+ }
123
+ }
124
+ }
125
+ }
126
+ ],
127
+ "description": "绑定数据项"
128
+ },
129
+ "defaultValue": {
130
+ "type": "array",
131
+ "items": {
132
+ "type": "string"
133
+ },
134
+ "description": "默认值",
135
+ "default": []
136
+ },
137
+ "placeholder": {
138
+ "type": "string",
139
+ "description": "提示文字",
140
+ "default": ""
141
+ },
142
+ "required": {
143
+ "type": "boolean",
144
+ "description": "必填",
145
+ "default": false
146
+ },
147
+ "requiredMessage": {
148
+ "type": "string",
149
+ "description": "必填提示文案",
150
+ "default": ""
151
+ },
152
+ "displayType": {
153
+ "type": "string",
154
+ "enum": [
155
+ "tag",
156
+ "text"
157
+ ],
158
+ "description": "展示形式;",
159
+ "default": "tag",
160
+ "enumDescription": [
161
+ "标签",
162
+ "文本"
163
+ ]
164
+ },
165
+ "tagStyle": {
166
+ "type": "string",
167
+ "enum": [
168
+ "default",
169
+ "success",
170
+ "processing",
171
+ "error",
172
+ "warning"
173
+ ],
174
+ "description": "标签样式;",
175
+ "default": "default",
176
+ "enumDescription": [
177
+ "默认",
178
+ "成功",
179
+ "处理中",
180
+ "错误",
181
+ "警告"
182
+ ]
183
+ },
184
+ "size": {
185
+ "type": "string",
186
+ "enum": [
187
+ "large",
188
+ "middle",
189
+ "small"
190
+ ],
191
+ "description": "标签尺寸;",
192
+ "default": "middle",
193
+ "enumDescription": [
194
+ "大",
195
+ "中",
196
+ "小"
197
+ ]
198
+ },
199
+ "align": {
200
+ "type": "string",
201
+ "enum": [
202
+ "left",
203
+ "center",
204
+ "right"
205
+ ],
206
+ "description": "位置;",
207
+ "default": "left",
208
+ "enumDescription": [
209
+ "居左",
210
+ "居中",
211
+ "居右"
212
+ ]
213
+ },
214
+ "options": {
215
+ "type": "array",
216
+ "items": {
217
+ "type": "object",
218
+ "properties": {
219
+ "label": {
220
+ "type": "string",
221
+ "description": "显示值",
222
+ "default": ""
223
+ },
224
+ "value": {
225
+ "type": "string",
226
+ "description": "选项ID",
227
+ "default": "this.label"
228
+ },
229
+ "color": {
230
+ "type": "string",
231
+ "description": "颜色"
232
+ }
233
+ }
234
+ },
235
+ "description": "选项设置",
236
+ "default": "[{ label: '选项一', value: '选项一' }, ...]"
237
+ },
238
+ "optionConfig": {
239
+ "type": "string",
240
+ "enum": [
241
+ "custom",
242
+ "datasource"
243
+ ],
244
+ "description": "选项配置方式;",
245
+ "default": "custom",
246
+ "enumDescription": [
247
+ "自定义",
248
+ "数据源"
249
+ ]
250
+ },
251
+ "datasourceBind": {
252
+ "type": "object",
253
+ "properties": {
254
+ "dataCode": {
255
+ "type": "string",
256
+ "description": "绑定数据源id",
257
+ "default": ""
258
+ },
259
+ "valueFieldCode": {
260
+ "type": "string",
261
+ "description": "存储值",
262
+ "default": ""
263
+ },
264
+ "displayBoList": {
265
+ "type": "array",
266
+ "items": {
267
+ "type": "object",
268
+ "properties": {
269
+ "type": {
270
+ "type": "string",
271
+ "enum": [
272
+ "FIELD",
273
+ "MOSAICS"
274
+ ],
275
+ "description": "显示项类型:字段 | 符号",
276
+ "default": "FIELD",
277
+ "enumDescription": [
278
+ "FIELD",
279
+ "MOSAICS"
280
+ ]
281
+ },
282
+ "value": {
283
+ "type": "string",
284
+ "description": "值"
285
+ },
286
+ "fieldType": {
287
+ "type": "string",
288
+ "description": "字段数据类型"
289
+ }
290
+ }
291
+ },
292
+ "description": "显示值",
293
+ "default": []
294
+ },
295
+ "keywordMapping": {
296
+ "type": "string",
297
+ "description": "查询关键字参数映射",
298
+ "default": ""
299
+ },
300
+ "svcCode": {
301
+ "type": "string",
302
+ "description": "绑定服务",
303
+ "default": ""
304
+ },
305
+ "appId": {
306
+ "type": "string",
307
+ "description": "应用Id",
308
+ "default": ""
309
+ },
310
+ "filters": {
311
+ "type": "array",
312
+ "items": {
313
+ "anyOf": [
314
+ {
315
+ "type": "object",
316
+ "properties": {
317
+ "id": {
318
+ "type": "string",
319
+ "description": "唯一编号",
320
+ "default": ""
321
+ },
322
+ "ruleId": {
323
+ "type": "integer",
324
+ "description": "规则编号",
325
+ "default": "Timestamp"
326
+ },
327
+ "type": {
328
+ "type": "string",
329
+ "description": "类型",
330
+ "default": "condition"
331
+ },
332
+ "symbol": {
333
+ "type": "string",
334
+ "description": "符号"
335
+ },
336
+ "checked": {
337
+ "type": "boolean"
338
+ },
339
+ "describe": {
340
+ "type": "string"
341
+ },
342
+ "leftVariableBo": {
343
+ "type": "object",
344
+ "properties": {
345
+ "type": {
346
+ "type": "string",
347
+ "enum": [
348
+ "varchar",
349
+ "text",
350
+ "array",
351
+ "location",
352
+ "decimal",
353
+ "decimal_range",
354
+ "timestamp",
355
+ "people",
356
+ "department",
357
+ "money",
358
+ "timescope",
359
+ "file",
360
+ "image",
361
+ "auto_number",
362
+ "calc",
363
+ "list",
364
+ "json",
365
+ "ANY"
366
+ ],
367
+ "description": "",
368
+ "enumDescription": [
369
+ "varchar",
370
+ "text",
371
+ "array",
372
+ "location",
373
+ "decimal",
374
+ "decimal_range",
375
+ "timestamp",
376
+ "people",
377
+ "department",
378
+ "money",
379
+ "timescope",
380
+ "file",
381
+ "image",
382
+ "auto_number",
383
+ "calc",
384
+ "list",
385
+ "json",
386
+ "ANY"
387
+ ]
388
+ },
389
+ "value": {
390
+ "type": "string"
391
+ },
392
+ "dataCode": {
393
+ "type": "string"
394
+ }
395
+ },
396
+ "description": "左值"
397
+ },
398
+ "rightVariableBo": {
399
+ "type": "object",
400
+ "properties": {
401
+ "type": {
402
+ "type": "string",
403
+ "enum": [
404
+ "custom",
405
+ "form",
406
+ "system",
407
+ "gv"
408
+ ],
409
+ "description": "",
410
+ "enumDescription": [
411
+ "custom",
412
+ "form",
413
+ "system",
414
+ "gv"
415
+ ]
416
+ },
417
+ "value": {
418
+ "type": "array",
419
+ "items": {
420
+ "type": "string"
421
+ }
422
+ },
423
+ "displayBos": {
424
+ "type": "array",
425
+ "items": {
426
+ "type": "object",
427
+ "additionalProperties": {}
428
+ }
429
+ }
430
+ },
431
+ "description": "右值"
432
+ }
433
+ }
434
+ },
435
+ {
436
+ "type": "object",
437
+ "properties": {
438
+ "id": {
439
+ "type": "string",
440
+ "description": "编号",
441
+ "default": ""
442
+ },
443
+ "ruleId": {
444
+ "type": "integer",
445
+ "description": "规则编号",
446
+ "default": "Timestamp"
447
+ },
448
+ "type": {
449
+ "type": "string",
450
+ "description": "类型:连接符条件",
451
+ "default": "conditions"
452
+ },
453
+ "level": {
454
+ "type": "integer",
455
+ "description": "深度",
456
+ "default": 0
457
+ },
458
+ "value": {
459
+ "type": "string",
460
+ "enum": [
461
+ "and",
462
+ "or"
463
+ ],
464
+ "description": "连接符值",
465
+ "default": "and",
466
+ "enumDescription": [
467
+ "and",
468
+ "or"
469
+ ]
470
+ },
471
+ "children": {
472
+ "type": "array",
473
+ "items": {
474
+ "anyOf": [
475
+ {
476
+ "type": "object",
477
+ "properties": {
478
+ "id": {
479
+ "type": "string",
480
+ "description": "唯一编号",
481
+ "default": ""
482
+ },
483
+ "ruleId": {
484
+ "type": "integer",
485
+ "description": "规则编号",
486
+ "default": "Timestamp"
487
+ },
488
+ "type": {
489
+ "type": "string",
490
+ "description": "类型",
491
+ "default": "condition"
492
+ },
493
+ "symbol": {
494
+ "type": "string",
495
+ "description": "符号"
496
+ },
497
+ "checked": {
498
+ "type": "boolean"
499
+ },
500
+ "describe": {
501
+ "type": "string"
502
+ },
503
+ "leftVariableBo": {
504
+ "type": "object",
505
+ "properties": {
506
+ "type": {
507
+ "type": "string",
508
+ "enum": [
509
+ "varchar",
510
+ "text",
511
+ "array",
512
+ "location",
513
+ "decimal",
514
+ "decimal_range",
515
+ "timestamp",
516
+ "people",
517
+ "department",
518
+ "money",
519
+ "timescope",
520
+ "file",
521
+ "image",
522
+ "auto_number",
523
+ "calc",
524
+ "list",
525
+ "json",
526
+ "ANY"
527
+ ],
528
+ "description": "",
529
+ "enumDescription": [
530
+ "varchar",
531
+ "text",
532
+ "array",
533
+ "location",
534
+ "decimal",
535
+ "decimal_range",
536
+ "timestamp",
537
+ "people",
538
+ "department",
539
+ "money",
540
+ "timescope",
541
+ "file",
542
+ "image",
543
+ "auto_number",
544
+ "calc",
545
+ "list",
546
+ "json",
547
+ "ANY"
548
+ ]
549
+ },
550
+ "value": {
551
+ "type": "string"
552
+ },
553
+ "dataCode": {
554
+ "type": "string"
555
+ }
556
+ },
557
+ "description": "左值"
558
+ },
559
+ "rightVariableBo": {
560
+ "type": "object",
561
+ "properties": {
562
+ "type": {
563
+ "type": "string",
564
+ "enum": [
565
+ "custom",
566
+ "form",
567
+ "system",
568
+ "gv"
569
+ ],
570
+ "description": "",
571
+ "enumDescription": [
572
+ "custom",
573
+ "form",
574
+ "system",
575
+ "gv"
576
+ ]
577
+ },
578
+ "value": {
579
+ "type": "array",
580
+ "items": {
581
+ "type": "string"
582
+ }
583
+ },
584
+ "displayBos": {
585
+ "type": "array",
586
+ "items": {
587
+ "type": "object",
588
+ "additionalProperties": {}
589
+ }
590
+ }
591
+ },
592
+ "description": "右值"
593
+ }
594
+ }
595
+ },
596
+ {
597
+ "type": "object"
598
+ }
599
+ ]
600
+ },
601
+ "description": "包含子项",
602
+ "default": []
603
+ }
604
+ }
605
+ }
606
+ ]
607
+ },
608
+ "description": "过滤条件",
609
+ "default": []
610
+ },
611
+ "viewFilters": {
612
+ "type": "array",
613
+ "items": {
614
+ "anyOf": [
615
+ {
616
+ "type": "object",
617
+ "properties": {
618
+ "id": {
619
+ "type": "string",
620
+ "description": "唯一编号",
621
+ "default": ""
622
+ },
623
+ "ruleId": {
624
+ "type": "integer",
625
+ "description": "规则编号",
626
+ "default": "Timestamp"
627
+ },
628
+ "type": {
629
+ "type": "string",
630
+ "description": "类型",
631
+ "default": "condition"
632
+ },
633
+ "symbol": {
634
+ "type": "string",
635
+ "description": "符号"
636
+ },
637
+ "checked": {
638
+ "type": "boolean"
639
+ },
640
+ "describe": {
641
+ "type": "string"
642
+ },
643
+ "leftVariableBo": {
644
+ "type": "object",
645
+ "properties": {
646
+ "type": {
647
+ "type": "string",
648
+ "enum": [
649
+ "varchar",
650
+ "text",
651
+ "array",
652
+ "location",
653
+ "decimal",
654
+ "decimal_range",
655
+ "timestamp",
656
+ "people",
657
+ "department",
658
+ "money",
659
+ "timescope",
660
+ "file",
661
+ "image",
662
+ "auto_number",
663
+ "calc",
664
+ "list",
665
+ "json",
666
+ "ANY"
667
+ ],
668
+ "description": "",
669
+ "enumDescription": [
670
+ "varchar",
671
+ "text",
672
+ "array",
673
+ "location",
674
+ "decimal",
675
+ "decimal_range",
676
+ "timestamp",
677
+ "people",
678
+ "department",
679
+ "money",
680
+ "timescope",
681
+ "file",
682
+ "image",
683
+ "auto_number",
684
+ "calc",
685
+ "list",
686
+ "json",
687
+ "ANY"
688
+ ]
689
+ },
690
+ "value": {
691
+ "type": "string"
692
+ },
693
+ "dataCode": {
694
+ "type": "string"
695
+ }
696
+ },
697
+ "description": "左值"
698
+ },
699
+ "rightVariableBo": {
700
+ "type": "object",
701
+ "properties": {
702
+ "type": {
703
+ "type": "string",
704
+ "enum": [
705
+ "custom",
706
+ "form",
707
+ "system",
708
+ "gv"
709
+ ],
710
+ "description": "",
711
+ "enumDescription": [
712
+ "custom",
713
+ "form",
714
+ "system",
715
+ "gv"
716
+ ]
717
+ },
718
+ "value": {
719
+ "type": "array",
720
+ "items": {
721
+ "type": "string"
722
+ }
723
+ },
724
+ "displayBos": {
725
+ "type": "array",
726
+ "items": {
727
+ "type": "object",
728
+ "additionalProperties": {}
729
+ }
730
+ }
731
+ },
732
+ "description": "右值"
733
+ }
734
+ }
735
+ },
736
+ {
737
+ "type": "object",
738
+ "properties": {
739
+ "id": {
740
+ "type": "string",
741
+ "description": "编号",
742
+ "default": ""
743
+ },
744
+ "ruleId": {
745
+ "type": "integer",
746
+ "description": "规则编号",
747
+ "default": "Timestamp"
748
+ },
749
+ "type": {
750
+ "type": "string",
751
+ "description": "类型:连接符条件",
752
+ "default": "conditions"
753
+ },
754
+ "level": {
755
+ "type": "integer",
756
+ "description": "深度",
757
+ "default": 0
758
+ },
759
+ "value": {
760
+ "type": "string",
761
+ "enum": [
762
+ "and",
763
+ "or"
764
+ ],
765
+ "description": "连接符值",
766
+ "default": "and",
767
+ "enumDescription": [
768
+ "and",
769
+ "or"
770
+ ]
771
+ },
772
+ "children": {
773
+ "type": "array",
774
+ "items": {
775
+ "anyOf": [
776
+ {
777
+ "type": "object",
778
+ "properties": {
779
+ "id": {
780
+ "type": "string",
781
+ "description": "唯一编号",
782
+ "default": ""
783
+ },
784
+ "ruleId": {
785
+ "type": "integer",
786
+ "description": "规则编号",
787
+ "default": "Timestamp"
788
+ },
789
+ "type": {
790
+ "type": "string",
791
+ "description": "类型",
792
+ "default": "condition"
793
+ },
794
+ "symbol": {
795
+ "type": "string",
796
+ "description": "符号"
797
+ },
798
+ "checked": {
799
+ "type": "boolean"
800
+ },
801
+ "describe": {
802
+ "type": "string"
803
+ },
804
+ "leftVariableBo": {
805
+ "type": "object",
806
+ "properties": {
807
+ "type": {
808
+ "type": "string",
809
+ "enum": [
810
+ "varchar",
811
+ "text",
812
+ "array",
813
+ "location",
814
+ "decimal",
815
+ "decimal_range",
816
+ "timestamp",
817
+ "people",
818
+ "department",
819
+ "money",
820
+ "timescope",
821
+ "file",
822
+ "image",
823
+ "auto_number",
824
+ "calc",
825
+ "list",
826
+ "json",
827
+ "ANY"
828
+ ],
829
+ "description": "",
830
+ "enumDescription": [
831
+ "varchar",
832
+ "text",
833
+ "array",
834
+ "location",
835
+ "decimal",
836
+ "decimal_range",
837
+ "timestamp",
838
+ "people",
839
+ "department",
840
+ "money",
841
+ "timescope",
842
+ "file",
843
+ "image",
844
+ "auto_number",
845
+ "calc",
846
+ "list",
847
+ "json",
848
+ "ANY"
849
+ ]
850
+ },
851
+ "value": {
852
+ "type": "string"
853
+ },
854
+ "dataCode": {
855
+ "type": "string"
856
+ }
857
+ },
858
+ "description": "左值"
859
+ },
860
+ "rightVariableBo": {
861
+ "type": "object",
862
+ "properties": {
863
+ "type": {
864
+ "type": "string",
865
+ "enum": [
866
+ "custom",
867
+ "form",
868
+ "system",
869
+ "gv"
870
+ ],
871
+ "description": "",
872
+ "enumDescription": [
873
+ "custom",
874
+ "form",
875
+ "system",
876
+ "gv"
877
+ ]
878
+ },
879
+ "value": {
880
+ "type": "array",
881
+ "items": {
882
+ "type": "string"
883
+ }
884
+ },
885
+ "displayBos": {
886
+ "type": "array",
887
+ "items": {
888
+ "type": "object",
889
+ "additionalProperties": {}
890
+ }
891
+ }
892
+ },
893
+ "description": "右值"
894
+ }
895
+ }
896
+ },
897
+ {
898
+ "type": "object"
899
+ }
900
+ ]
901
+ },
902
+ "description": "包含子项",
903
+ "default": []
904
+ }
905
+ }
906
+ }
907
+ ]
908
+ },
909
+ "description": "过滤条件-查看过滤",
910
+ "default": []
911
+ },
912
+ "isOpenViewFilters": {
913
+ "type": "integer",
914
+ "description": "是否开启查看过滤",
915
+ "default": "0:未开启;1:开启"
916
+ },
917
+ "orders": {
918
+ "type": "array",
919
+ "items": {
920
+ "type": "object",
921
+ "properties": {
922
+ "columnName": {
923
+ "type": "string",
924
+ "description": "列名",
925
+ "default": ""
926
+ },
927
+ "desc": {
928
+ "type": "boolean",
929
+ "description": "倒序",
930
+ "default": false
931
+ }
932
+ }
933
+ },
934
+ "description": "排序",
935
+ "default": []
936
+ },
937
+ "showOrder": {
938
+ "type": "boolean",
939
+ "description": "显示排序",
940
+ "default": true
941
+ },
942
+ "assignDepartment": {
943
+ "type": "object",
944
+ "properties": {
945
+ "type": {
946
+ "type": "string",
947
+ "enum": [
948
+ "custom",
949
+ "form",
950
+ "system",
951
+ "gv"
952
+ ],
953
+ "description": "",
954
+ "enumDescription": [
955
+ "custom",
956
+ "form",
957
+ "system",
958
+ "gv"
959
+ ]
960
+ },
961
+ "value": {
962
+ "type": "array",
963
+ "items": {
964
+ "type": "string"
965
+ }
966
+ },
967
+ "displayBos": {
968
+ "type": "array",
969
+ "items": {
970
+ "type": "object",
971
+ "additionalProperties": {}
972
+ }
973
+ }
974
+ },
975
+ "description": "部门或者人员指定部门配置",
976
+ "default": {}
977
+ },
978
+ "openAssignDepartment": {
979
+ "type": "boolean",
980
+ "description": "部门或者人员指定部门配置是否开启",
981
+ "default": {}
982
+ }
983
+ },
984
+ "description": "数据源绑定",
985
+ "default": "new DataSourceBind()"
986
+ },
987
+ "multistageFilling": {
988
+ "type": "array",
989
+ "items": {
990
+ "type": "object",
991
+ "properties": {
992
+ "controlId": {
993
+ "type": "string",
994
+ "description": "控件ID",
995
+ "default": ""
996
+ },
997
+ "fieldCode": {
998
+ "type": "string",
999
+ "description": "字段",
1000
+ "default": ""
1001
+ },
1002
+ "fieldType": {
1003
+ "type": "string",
1004
+ "description": "字段类型。事件在填充时,需要根据数据类型进行判断处理动作。",
1005
+ "default": ""
1006
+ },
1007
+ "propName": {
1008
+ "type": "string",
1009
+ "description": "属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。",
1010
+ "default": ""
1011
+ }
1012
+ }
1013
+ },
1014
+ "description": "多级填充",
1015
+ "default": []
1016
+ },
1017
+ "openMultistageFilling": {
1018
+ "type": "boolean",
1019
+ "description": "是否开启填充",
1020
+ "default": false
1021
+ }
1022
+ },
1023
+ "required": []
1024
+ }
1025
+ }