fx-spec-hub 0.0.33 → 0.0.34
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.
- package/dist/data/admin-backend-api.json +337 -12
- package/package.json +1 -1
|
@@ -25959,12 +25959,39 @@
|
|
|
25959
25959
|
},
|
|
25960
25960
|
"components": {
|
|
25961
25961
|
"schemas": {
|
|
25962
|
+
"models.ApprovalRound": {
|
|
25963
|
+
"type": "object",
|
|
25964
|
+
"properties": {
|
|
25965
|
+
"items": {
|
|
25966
|
+
"description": "本轮进度项",
|
|
25967
|
+
"type": "array",
|
|
25968
|
+
"items": {
|
|
25969
|
+
"$ref": "#/components/schemas/models.ApprovalProgressItem"
|
|
25970
|
+
}
|
|
25971
|
+
},
|
|
25972
|
+
"round": {
|
|
25973
|
+
"description": "轮次编号(从1开始)",
|
|
25974
|
+
"type": "integer"
|
|
25975
|
+
},
|
|
25976
|
+
"status": {
|
|
25977
|
+
"description": "本轮状态: COMPLETED(已完结) / ACTIVE(进行中)",
|
|
25978
|
+
"type": "string"
|
|
25979
|
+
}
|
|
25980
|
+
}
|
|
25981
|
+
},
|
|
25962
25982
|
"models.ResetTicketReq": {
|
|
25963
25983
|
"type": "object",
|
|
25964
25984
|
"required": [
|
|
25965
25985
|
"ticketNo"
|
|
25966
25986
|
],
|
|
25967
25987
|
"properties": {
|
|
25988
|
+
"attachments": {
|
|
25989
|
+
"description": "附件 [{fileId,name,type}]",
|
|
25990
|
+
"type": "array",
|
|
25991
|
+
"items": {
|
|
25992
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
25993
|
+
}
|
|
25994
|
+
},
|
|
25968
25995
|
"remark": {
|
|
25969
25996
|
"description": "重置原因",
|
|
25970
25997
|
"type": "string"
|
|
@@ -26641,11 +26668,12 @@
|
|
|
26641
26668
|
],
|
|
26642
26669
|
"properties": {
|
|
26643
26670
|
"action": {
|
|
26644
|
-
"description": "动作:REJECTED(拒绝) / RETURNED(退回)",
|
|
26671
|
+
"description": "动作:REJECTED(拒绝) / RETURNED(退回) / ROLLBACK(回退到Maker)",
|
|
26645
26672
|
"type": "string",
|
|
26646
26673
|
"enum": [
|
|
26647
26674
|
"REJECTED",
|
|
26648
|
-
"RETURNED"
|
|
26675
|
+
"RETURNED",
|
|
26676
|
+
"ROLLBACK"
|
|
26649
26677
|
]
|
|
26650
26678
|
},
|
|
26651
26679
|
"attachments": {
|
|
@@ -26657,11 +26685,13 @@
|
|
|
26657
26685
|
},
|
|
26658
26686
|
"reason": {
|
|
26659
26687
|
"description": "最终原因",
|
|
26660
|
-
"type": "string"
|
|
26688
|
+
"type": "string",
|
|
26689
|
+
"maxLength": 250
|
|
26661
26690
|
},
|
|
26662
26691
|
"remark": {
|
|
26663
26692
|
"description": "备注",
|
|
26664
|
-
"type": "string"
|
|
26693
|
+
"type": "string",
|
|
26694
|
+
"maxLength": 250
|
|
26665
26695
|
},
|
|
26666
26696
|
"ticketNo": {
|
|
26667
26697
|
"description": "工单编号",
|
|
@@ -26704,11 +26734,13 @@
|
|
|
26704
26734
|
},
|
|
26705
26735
|
"reason": {
|
|
26706
26736
|
"description": "最终原因",
|
|
26707
|
-
"type": "string"
|
|
26737
|
+
"type": "string",
|
|
26738
|
+
"maxLength": 250
|
|
26708
26739
|
},
|
|
26709
26740
|
"remark": {
|
|
26710
26741
|
"description": "审批意见",
|
|
26711
|
-
"type": "string"
|
|
26742
|
+
"type": "string",
|
|
26743
|
+
"maxLength": 250
|
|
26712
26744
|
},
|
|
26713
26745
|
"ticketNo": {
|
|
26714
26746
|
"description": "工单编号",
|
|
@@ -26767,7 +26799,7 @@
|
|
|
26767
26799
|
"type": "object",
|
|
26768
26800
|
"properties": {
|
|
26769
26801
|
"action": {
|
|
26770
|
-
"description": "APPROVE / REJECT / \"\"",
|
|
26802
|
+
"description": "APPROVE / REJECT / ROLLBACK / \"\"",
|
|
26771
26803
|
"type": "string"
|
|
26772
26804
|
},
|
|
26773
26805
|
"approverId": {
|
|
@@ -26811,6 +26843,14 @@
|
|
|
26811
26843
|
"status": {
|
|
26812
26844
|
"description": "COMPLETED / PENDING / WAITING",
|
|
26813
26845
|
"type": "string"
|
|
26846
|
+
},
|
|
26847
|
+
"variables": {
|
|
26848
|
+
"description": "审批阶段变量(如 targetStatus)",
|
|
26849
|
+
"allOf": [
|
|
26850
|
+
{
|
|
26851
|
+
"$ref": "#/components/schemas/types.JSONMap"
|
|
26852
|
+
}
|
|
26853
|
+
]
|
|
26814
26854
|
}
|
|
26815
26855
|
}
|
|
26816
26856
|
},
|
|
@@ -27095,11 +27135,19 @@
|
|
|
27095
27135
|
}
|
|
27096
27136
|
},
|
|
27097
27137
|
"progress": {
|
|
27138
|
+
"description": "当前轮审核进度(向后兼容)",
|
|
27098
27139
|
"type": "array",
|
|
27099
27140
|
"items": {
|
|
27100
27141
|
"$ref": "#/components/schemas/models.ApprovalProgressItem"
|
|
27101
27142
|
}
|
|
27102
27143
|
},
|
|
27144
|
+
"progressRounds": {
|
|
27145
|
+
"description": "按轮次分组的审核进度",
|
|
27146
|
+
"type": "array",
|
|
27147
|
+
"items": {
|
|
27148
|
+
"$ref": "#/components/schemas/models.ApprovalRound"
|
|
27149
|
+
}
|
|
27150
|
+
},
|
|
27103
27151
|
"ticket": {
|
|
27104
27152
|
"$ref": "#/components/schemas/models.TicketResponse"
|
|
27105
27153
|
},
|
|
@@ -27284,10 +27332,22 @@
|
|
|
27284
27332
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
27285
27333
|
}
|
|
27286
27334
|
},
|
|
27335
|
+
"before": {
|
|
27336
|
+
"description": "变更前快照",
|
|
27337
|
+
"type": "object",
|
|
27338
|
+
"additionalProperties": {
|
|
27339
|
+
"type": "string"
|
|
27340
|
+
},
|
|
27341
|
+
"properties": {}
|
|
27342
|
+
},
|
|
27287
27343
|
"remark": {
|
|
27288
27344
|
"description": "撤销原因",
|
|
27289
27345
|
"type": "string"
|
|
27290
27346
|
},
|
|
27347
|
+
"targetDesc": {
|
|
27348
|
+
"description": "目标说明",
|
|
27349
|
+
"type": "string"
|
|
27350
|
+
},
|
|
27291
27351
|
"txId": {
|
|
27292
27352
|
"description": "交易ID",
|
|
27293
27353
|
"type": "string"
|
|
@@ -27968,9 +28028,11 @@
|
|
|
27968
28028
|
"REJECTED",
|
|
27969
28029
|
"RETURNED",
|
|
27970
28030
|
"CANCELED",
|
|
28031
|
+
"ROLLBACK",
|
|
27971
28032
|
"APPROVED",
|
|
27972
28033
|
"REJECTED",
|
|
27973
28034
|
"RETURNED",
|
|
28035
|
+
"ROLLBACK",
|
|
27974
28036
|
"SUBMITTED",
|
|
27975
28037
|
"CANCELED",
|
|
27976
28038
|
"SUPPLEMENT"
|
|
@@ -27979,7 +28041,8 @@
|
|
|
27979
28041
|
"ActionApprove": "审批通过",
|
|
27980
28042
|
"ActionCancel": "撤销/取消",
|
|
27981
28043
|
"ActionReject": "审批拒绝",
|
|
27982
|
-
"ActionReturn": "
|
|
28044
|
+
"ActionReturn": "审批退回(终结)",
|
|
28045
|
+
"ActionRollback": "回退到 Maker(BPMN 循环,流程继续)",
|
|
27983
28046
|
"ActionSubmit": "提交/发起",
|
|
27984
28047
|
"ActionSupplement": "补充依据",
|
|
27985
28048
|
"StatusApproved": "已通过",
|
|
@@ -27987,6 +28050,7 @@
|
|
|
27987
28050
|
"StatusPending": "处理中(审批进行中)",
|
|
27988
28051
|
"StatusRejected": "已拒绝",
|
|
27989
28052
|
"StatusReturned": "已退回",
|
|
28053
|
+
"StatusRollback": "已回退(BPMN 回退箭头,流程未终结)",
|
|
27990
28054
|
"StatusSubmitted": "待审核(刚提交)"
|
|
27991
28055
|
},
|
|
27992
28056
|
"x-enum-descriptions": [
|
|
@@ -27996,9 +28060,11 @@
|
|
|
27996
28060
|
"已拒绝",
|
|
27997
28061
|
"已退回",
|
|
27998
28062
|
"已取消",
|
|
28063
|
+
"已回退(BPMN 回退箭头,流程未终结)",
|
|
27999
28064
|
"审批通过",
|
|
28000
28065
|
"审批拒绝",
|
|
28001
|
-
"
|
|
28066
|
+
"审批退回(终结)",
|
|
28067
|
+
"回退到 Maker(BPMN 循环,流程继续)",
|
|
28002
28068
|
"提交/发起",
|
|
28003
28069
|
"撤销/取消",
|
|
28004
28070
|
"补充依据"
|
|
@@ -28010,9 +28076,11 @@
|
|
|
28010
28076
|
"StatusRejected",
|
|
28011
28077
|
"StatusReturned",
|
|
28012
28078
|
"StatusCanceled",
|
|
28079
|
+
"StatusRollback",
|
|
28013
28080
|
"ActionApprove",
|
|
28014
28081
|
"ActionReject",
|
|
28015
28082
|
"ActionReturn",
|
|
28083
|
+
"ActionRollback",
|
|
28016
28084
|
"ActionSubmit",
|
|
28017
28085
|
"ActionCancel",
|
|
28018
28086
|
"ActionSupplement"
|
|
@@ -28033,6 +28101,9 @@
|
|
|
28033
28101
|
"currentLevel": {
|
|
28034
28102
|
"type": "integer"
|
|
28035
28103
|
},
|
|
28104
|
+
"currentRound": {
|
|
28105
|
+
"type": "integer"
|
|
28106
|
+
},
|
|
28036
28107
|
"id": {
|
|
28037
28108
|
"type": "integer"
|
|
28038
28109
|
},
|
|
@@ -28102,6 +28173,9 @@
|
|
|
28102
28173
|
"role": {
|
|
28103
28174
|
"type": "string"
|
|
28104
28175
|
},
|
|
28176
|
+
"round": {
|
|
28177
|
+
"type": "integer"
|
|
28178
|
+
},
|
|
28105
28179
|
"variables": {
|
|
28106
28180
|
"$ref": "#/components/schemas/types.JSONMap"
|
|
28107
28181
|
}
|
|
@@ -28116,9 +28190,11 @@
|
|
|
28116
28190
|
"REJECTED",
|
|
28117
28191
|
"RETURNED",
|
|
28118
28192
|
"CANCELED",
|
|
28193
|
+
"ROLLBACK",
|
|
28119
28194
|
"APPROVED",
|
|
28120
28195
|
"REJECTED",
|
|
28121
28196
|
"RETURNED",
|
|
28197
|
+
"ROLLBACK",
|
|
28122
28198
|
"SUBMITTED",
|
|
28123
28199
|
"CANCELED",
|
|
28124
28200
|
"SUPPLEMENT"
|
|
@@ -28127,7 +28203,8 @@
|
|
|
28127
28203
|
"ActionApprove": "审批通过",
|
|
28128
28204
|
"ActionCancel": "撤销/取消",
|
|
28129
28205
|
"ActionReject": "审批拒绝",
|
|
28130
|
-
"ActionReturn": "
|
|
28206
|
+
"ActionReturn": "审批退回(终结)",
|
|
28207
|
+
"ActionRollback": "回退到 Maker(BPMN 循环,流程继续)",
|
|
28131
28208
|
"ActionSubmit": "提交/发起",
|
|
28132
28209
|
"ActionSupplement": "补充依据",
|
|
28133
28210
|
"StatusApproved": "已通过",
|
|
@@ -28135,6 +28212,7 @@
|
|
|
28135
28212
|
"StatusPending": "处理中(审批进行中)",
|
|
28136
28213
|
"StatusRejected": "已拒绝",
|
|
28137
28214
|
"StatusReturned": "已退回",
|
|
28215
|
+
"StatusRollback": "已回退(BPMN 回退箭头,流程未终结)",
|
|
28138
28216
|
"StatusSubmitted": "待审核(刚提交)"
|
|
28139
28217
|
},
|
|
28140
28218
|
"x-enum-descriptions": [
|
|
@@ -28144,9 +28222,11 @@
|
|
|
28144
28222
|
"已拒绝",
|
|
28145
28223
|
"已退回",
|
|
28146
28224
|
"已取消",
|
|
28225
|
+
"已回退(BPMN 回退箭头,流程未终结)",
|
|
28147
28226
|
"审批通过",
|
|
28148
28227
|
"审批拒绝",
|
|
28149
|
-
"
|
|
28228
|
+
"审批退回(终结)",
|
|
28229
|
+
"回退到 Maker(BPMN 循环,流程继续)",
|
|
28150
28230
|
"提交/发起",
|
|
28151
28231
|
"撤销/取消",
|
|
28152
28232
|
"补充依据"
|
|
@@ -28158,9 +28238,11 @@
|
|
|
28158
28238
|
"StatusRejected",
|
|
28159
28239
|
"StatusReturned",
|
|
28160
28240
|
"StatusCanceled",
|
|
28241
|
+
"StatusRollback",
|
|
28161
28242
|
"ActionApprove",
|
|
28162
28243
|
"ActionReject",
|
|
28163
28244
|
"ActionReturn",
|
|
28245
|
+
"ActionRollback",
|
|
28164
28246
|
"ActionSubmit",
|
|
28165
28247
|
"ActionCancel",
|
|
28166
28248
|
"ActionSupplement"
|
|
@@ -28668,6 +28750,14 @@
|
|
|
28668
28750
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
28669
28751
|
}
|
|
28670
28752
|
},
|
|
28753
|
+
"before": {
|
|
28754
|
+
"description": "变更前快照",
|
|
28755
|
+
"type": "object",
|
|
28756
|
+
"additionalProperties": {
|
|
28757
|
+
"type": "string"
|
|
28758
|
+
},
|
|
28759
|
+
"properties": {}
|
|
28760
|
+
},
|
|
28671
28761
|
"id": {
|
|
28672
28762
|
"description": "API密钥ID",
|
|
28673
28763
|
"type": "string"
|
|
@@ -29834,6 +29924,14 @@
|
|
|
29834
29924
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
29835
29925
|
}
|
|
29836
29926
|
},
|
|
29927
|
+
"before": {
|
|
29928
|
+
"description": "变更前快照",
|
|
29929
|
+
"type": "object",
|
|
29930
|
+
"additionalProperties": {
|
|
29931
|
+
"type": "string"
|
|
29932
|
+
},
|
|
29933
|
+
"properties": {}
|
|
29934
|
+
},
|
|
29837
29935
|
"publicKey": {
|
|
29838
29936
|
"description": "公钥",
|
|
29839
29937
|
"type": "string"
|
|
@@ -29845,6 +29943,10 @@
|
|
|
29845
29943
|
"requestId": {
|
|
29846
29944
|
"description": "请求ID",
|
|
29847
29945
|
"type": "string"
|
|
29946
|
+
},
|
|
29947
|
+
"targetDesc": {
|
|
29948
|
+
"description": "目标说明",
|
|
29949
|
+
"type": "string"
|
|
29848
29950
|
}
|
|
29849
29951
|
}
|
|
29850
29952
|
},
|
|
@@ -29871,6 +29973,14 @@
|
|
|
29871
29973
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
29872
29974
|
}
|
|
29873
29975
|
},
|
|
29976
|
+
"before": {
|
|
29977
|
+
"description": "变更前快照",
|
|
29978
|
+
"type": "object",
|
|
29979
|
+
"additionalProperties": {
|
|
29980
|
+
"type": "string"
|
|
29981
|
+
},
|
|
29982
|
+
"properties": {}
|
|
29983
|
+
},
|
|
29874
29984
|
"hotAddressList": {
|
|
29875
29985
|
"description": "热地址列表",
|
|
29876
29986
|
"type": "array",
|
|
@@ -29885,6 +29995,10 @@
|
|
|
29885
29995
|
"requestId": {
|
|
29886
29996
|
"description": "请求ID",
|
|
29887
29997
|
"type": "string"
|
|
29998
|
+
},
|
|
29999
|
+
"targetDesc": {
|
|
30000
|
+
"description": "目标说明",
|
|
30001
|
+
"type": "string"
|
|
29888
30002
|
}
|
|
29889
30003
|
}
|
|
29890
30004
|
},
|
|
@@ -29901,10 +30015,24 @@
|
|
|
29901
30015
|
"type": "object",
|
|
29902
30016
|
"required": [
|
|
29903
30017
|
"coldAddressList",
|
|
29904
|
-
"publicKey",
|
|
29905
30018
|
"requestId"
|
|
29906
30019
|
],
|
|
29907
30020
|
"properties": {
|
|
30021
|
+
"attachments": {
|
|
30022
|
+
"description": "附件 [{fileId,name,type}]",
|
|
30023
|
+
"type": "array",
|
|
30024
|
+
"items": {
|
|
30025
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
30026
|
+
}
|
|
30027
|
+
},
|
|
30028
|
+
"before": {
|
|
30029
|
+
"description": "变更前快照",
|
|
30030
|
+
"type": "object",
|
|
30031
|
+
"additionalProperties": {
|
|
30032
|
+
"type": "string"
|
|
30033
|
+
},
|
|
30034
|
+
"properties": {}
|
|
30035
|
+
},
|
|
29908
30036
|
"coldAddressList": {
|
|
29909
30037
|
"description": "冷地址列表",
|
|
29910
30038
|
"type": "array",
|
|
@@ -29923,6 +30051,10 @@
|
|
|
29923
30051
|
"requestId": {
|
|
29924
30052
|
"description": "请求ID",
|
|
29925
30053
|
"type": "string"
|
|
30054
|
+
},
|
|
30055
|
+
"targetDesc": {
|
|
30056
|
+
"description": "目标说明",
|
|
30057
|
+
"type": "string"
|
|
29926
30058
|
}
|
|
29927
30059
|
}
|
|
29928
30060
|
},
|
|
@@ -30342,10 +30474,22 @@
|
|
|
30342
30474
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
30343
30475
|
}
|
|
30344
30476
|
},
|
|
30477
|
+
"before": {
|
|
30478
|
+
"description": "变更前快照",
|
|
30479
|
+
"type": "object",
|
|
30480
|
+
"additionalProperties": {
|
|
30481
|
+
"type": "string"
|
|
30482
|
+
},
|
|
30483
|
+
"properties": {}
|
|
30484
|
+
},
|
|
30345
30485
|
"remark": {
|
|
30346
30486
|
"description": "操作原因",
|
|
30347
30487
|
"type": "string"
|
|
30348
30488
|
},
|
|
30489
|
+
"targetDesc": {
|
|
30490
|
+
"description": "目标说明",
|
|
30491
|
+
"type": "string"
|
|
30492
|
+
},
|
|
30349
30493
|
"userId": {
|
|
30350
30494
|
"description": "用户ID",
|
|
30351
30495
|
"type": "string"
|
|
@@ -30439,6 +30583,14 @@
|
|
|
30439
30583
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
30440
30584
|
}
|
|
30441
30585
|
},
|
|
30586
|
+
"before": {
|
|
30587
|
+
"description": "变更前快照",
|
|
30588
|
+
"type": "object",
|
|
30589
|
+
"additionalProperties": {
|
|
30590
|
+
"type": "string"
|
|
30591
|
+
},
|
|
30592
|
+
"properties": {}
|
|
30593
|
+
},
|
|
30442
30594
|
"credentialId": {
|
|
30443
30595
|
"description": "Credential ID(密钥ID)",
|
|
30444
30596
|
"type": "string"
|
|
@@ -30472,6 +30624,14 @@
|
|
|
30472
30624
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
30473
30625
|
}
|
|
30474
30626
|
},
|
|
30627
|
+
"before": {
|
|
30628
|
+
"description": "变更前快照",
|
|
30629
|
+
"type": "object",
|
|
30630
|
+
"additionalProperties": {
|
|
30631
|
+
"type": "string"
|
|
30632
|
+
},
|
|
30633
|
+
"properties": {}
|
|
30634
|
+
},
|
|
30475
30635
|
"deviceId": {
|
|
30476
30636
|
"description": "设备ID",
|
|
30477
30637
|
"type": "string"
|
|
@@ -30546,6 +30706,14 @@
|
|
|
30546
30706
|
"description": "自动归集:true-开启,false-关闭",
|
|
30547
30707
|
"type": "string"
|
|
30548
30708
|
},
|
|
30709
|
+
"before": {
|
|
30710
|
+
"description": "变更前快照",
|
|
30711
|
+
"type": "object",
|
|
30712
|
+
"additionalProperties": {
|
|
30713
|
+
"type": "string"
|
|
30714
|
+
},
|
|
30715
|
+
"properties": {}
|
|
30716
|
+
},
|
|
30549
30717
|
"coinType": {
|
|
30550
30718
|
"description": "币种",
|
|
30551
30719
|
"type": "string"
|
|
@@ -30565,6 +30733,10 @@
|
|
|
30565
30733
|
"remark": {
|
|
30566
30734
|
"description": "备注",
|
|
30567
30735
|
"type": "string"
|
|
30736
|
+
},
|
|
30737
|
+
"targetDesc": {
|
|
30738
|
+
"description": "目标说明",
|
|
30739
|
+
"type": "string"
|
|
30568
30740
|
}
|
|
30569
30741
|
}
|
|
30570
30742
|
},
|
|
@@ -30597,6 +30769,14 @@
|
|
|
30597
30769
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
30598
30770
|
}
|
|
30599
30771
|
},
|
|
30772
|
+
"before": {
|
|
30773
|
+
"description": "变更前快照",
|
|
30774
|
+
"type": "object",
|
|
30775
|
+
"additionalProperties": {
|
|
30776
|
+
"type": "string"
|
|
30777
|
+
},
|
|
30778
|
+
"properties": {}
|
|
30779
|
+
},
|
|
30600
30780
|
"coinType": {
|
|
30601
30781
|
"description": "币种:ALL(所有)/ALL_PAUSE(全部暂停)/ALL_ENABLE(全部启用)/具体币种(如ETH)",
|
|
30602
30782
|
"type": "string"
|
|
@@ -30612,6 +30792,10 @@
|
|
|
30612
30792
|
"status": {
|
|
30613
30793
|
"description": "true(启用)/false(暂停)",
|
|
30614
30794
|
"type": "string"
|
|
30795
|
+
},
|
|
30796
|
+
"targetDesc": {
|
|
30797
|
+
"description": "目标说明",
|
|
30798
|
+
"type": "string"
|
|
30615
30799
|
}
|
|
30616
30800
|
}
|
|
30617
30801
|
},
|
|
@@ -32546,6 +32730,10 @@
|
|
|
32546
32730
|
"remark": {
|
|
32547
32731
|
"description": "备注",
|
|
32548
32732
|
"type": "string"
|
|
32733
|
+
},
|
|
32734
|
+
"targetDesc": {
|
|
32735
|
+
"description": "目标说明",
|
|
32736
|
+
"type": "string"
|
|
32549
32737
|
}
|
|
32550
32738
|
}
|
|
32551
32739
|
},
|
|
@@ -32907,6 +33095,14 @@
|
|
|
32907
33095
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
32908
33096
|
}
|
|
32909
33097
|
},
|
|
33098
|
+
"before": {
|
|
33099
|
+
"description": "变更前快照",
|
|
33100
|
+
"type": "object",
|
|
33101
|
+
"additionalProperties": {
|
|
33102
|
+
"type": "string"
|
|
33103
|
+
},
|
|
33104
|
+
"properties": {}
|
|
33105
|
+
},
|
|
32910
33106
|
"beforeMakerFee": {
|
|
32911
33107
|
"description": "修改前 MakerFee",
|
|
32912
33108
|
"type": "string"
|
|
@@ -33674,6 +33870,14 @@
|
|
|
33674
33870
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
33675
33871
|
}
|
|
33676
33872
|
},
|
|
33873
|
+
"before": {
|
|
33874
|
+
"description": "变更前快照",
|
|
33875
|
+
"type": "object",
|
|
33876
|
+
"additionalProperties": {
|
|
33877
|
+
"type": "string"
|
|
33878
|
+
},
|
|
33879
|
+
"properties": {}
|
|
33880
|
+
},
|
|
33677
33881
|
"beforeConfirmations": {
|
|
33678
33882
|
"description": "修改前确认数",
|
|
33679
33883
|
"type": "string"
|
|
@@ -33933,6 +34137,14 @@
|
|
|
33933
34137
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
33934
34138
|
}
|
|
33935
34139
|
},
|
|
34140
|
+
"before": {
|
|
34141
|
+
"description": "变更前快照",
|
|
34142
|
+
"type": "object",
|
|
34143
|
+
"additionalProperties": {
|
|
34144
|
+
"type": "string"
|
|
34145
|
+
},
|
|
34146
|
+
"properties": {}
|
|
34147
|
+
},
|
|
33936
34148
|
"network": {
|
|
33937
34149
|
"description": "网络 全部传递ALL",
|
|
33938
34150
|
"type": "string"
|
|
@@ -33944,6 +34156,10 @@
|
|
|
33944
34156
|
"state": {
|
|
33945
34157
|
"description": "当前状态'",
|
|
33946
34158
|
"type": "boolean"
|
|
34159
|
+
},
|
|
34160
|
+
"targetDesc": {
|
|
34161
|
+
"description": "目标说明",
|
|
34162
|
+
"type": "string"
|
|
33947
34163
|
}
|
|
33948
34164
|
}
|
|
33949
34165
|
},
|
|
@@ -34150,6 +34366,14 @@
|
|
|
34150
34366
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
34151
34367
|
}
|
|
34152
34368
|
},
|
|
34369
|
+
"before": {
|
|
34370
|
+
"description": "变更前快照",
|
|
34371
|
+
"type": "object",
|
|
34372
|
+
"additionalProperties": {
|
|
34373
|
+
"type": "string"
|
|
34374
|
+
},
|
|
34375
|
+
"properties": {}
|
|
34376
|
+
},
|
|
34153
34377
|
"remark": {
|
|
34154
34378
|
"description": "操作原因",
|
|
34155
34379
|
"type": "string"
|
|
@@ -34160,6 +34384,10 @@
|
|
|
34160
34384
|
"items": {
|
|
34161
34385
|
"$ref": "#/components/schemas/models.SymbolPermissions"
|
|
34162
34386
|
}
|
|
34387
|
+
},
|
|
34388
|
+
"targetDesc": {
|
|
34389
|
+
"description": "目标说明",
|
|
34390
|
+
"type": "string"
|
|
34163
34391
|
}
|
|
34164
34392
|
}
|
|
34165
34393
|
},
|
|
@@ -34288,9 +34516,21 @@
|
|
|
34288
34516
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
34289
34517
|
}
|
|
34290
34518
|
},
|
|
34519
|
+
"before": {
|
|
34520
|
+
"description": "变更前快照",
|
|
34521
|
+
"type": "object",
|
|
34522
|
+
"additionalProperties": {
|
|
34523
|
+
"type": "string"
|
|
34524
|
+
},
|
|
34525
|
+
"properties": {}
|
|
34526
|
+
},
|
|
34291
34527
|
"remark": {
|
|
34292
34528
|
"description": "操作原因",
|
|
34293
34529
|
"type": "string"
|
|
34530
|
+
},
|
|
34531
|
+
"targetDesc": {
|
|
34532
|
+
"description": "目标说明",
|
|
34533
|
+
"type": "string"
|
|
34294
34534
|
}
|
|
34295
34535
|
}
|
|
34296
34536
|
},
|
|
@@ -34624,6 +34864,14 @@
|
|
|
34624
34864
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
34625
34865
|
}
|
|
34626
34866
|
},
|
|
34867
|
+
"before": {
|
|
34868
|
+
"description": "变更前快照",
|
|
34869
|
+
"type": "object",
|
|
34870
|
+
"additionalProperties": {
|
|
34871
|
+
"type": "string"
|
|
34872
|
+
},
|
|
34873
|
+
"properties": {}
|
|
34874
|
+
},
|
|
34627
34875
|
"beforeStatus": {
|
|
34628
34876
|
"description": "修改前交易状态",
|
|
34629
34877
|
"type": "string"
|
|
@@ -35724,6 +35972,14 @@
|
|
|
35724
35972
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
35725
35973
|
}
|
|
35726
35974
|
},
|
|
35975
|
+
"before": {
|
|
35976
|
+
"description": "变更前快照",
|
|
35977
|
+
"type": "object",
|
|
35978
|
+
"additionalProperties": {
|
|
35979
|
+
"type": "string"
|
|
35980
|
+
},
|
|
35981
|
+
"properties": {}
|
|
35982
|
+
},
|
|
35727
35983
|
"remark": {
|
|
35728
35984
|
"description": "操作原因",
|
|
35729
35985
|
"type": "string"
|
|
@@ -37415,6 +37671,14 @@
|
|
|
37415
37671
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
37416
37672
|
}
|
|
37417
37673
|
},
|
|
37674
|
+
"before": {
|
|
37675
|
+
"description": "变更前快照",
|
|
37676
|
+
"type": "object",
|
|
37677
|
+
"additionalProperties": {
|
|
37678
|
+
"type": "string"
|
|
37679
|
+
},
|
|
37680
|
+
"properties": {}
|
|
37681
|
+
},
|
|
37418
37682
|
"coinType": {
|
|
37419
37683
|
"description": "币种",
|
|
37420
37684
|
"type": "string"
|
|
@@ -37431,6 +37695,10 @@
|
|
|
37431
37695
|
"description": "备注",
|
|
37432
37696
|
"type": "string"
|
|
37433
37697
|
},
|
|
37698
|
+
"targetDesc": {
|
|
37699
|
+
"description": "目标说明",
|
|
37700
|
+
"type": "string"
|
|
37701
|
+
},
|
|
37434
37702
|
"threshold": {
|
|
37435
37703
|
"description": "大额交易阈值",
|
|
37436
37704
|
"type": "string"
|
|
@@ -37534,6 +37802,14 @@
|
|
|
37534
37802
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
37535
37803
|
}
|
|
37536
37804
|
},
|
|
37805
|
+
"before": {
|
|
37806
|
+
"description": "变更前快照",
|
|
37807
|
+
"type": "object",
|
|
37808
|
+
"additionalProperties": {
|
|
37809
|
+
"type": "string"
|
|
37810
|
+
},
|
|
37811
|
+
"properties": {}
|
|
37812
|
+
},
|
|
37537
37813
|
"fromAddress": {
|
|
37538
37814
|
"description": "转出地址",
|
|
37539
37815
|
"type": "string"
|
|
@@ -37546,6 +37822,10 @@
|
|
|
37546
37822
|
"description": "备注",
|
|
37547
37823
|
"type": "string"
|
|
37548
37824
|
},
|
|
37825
|
+
"targetDesc": {
|
|
37826
|
+
"description": "目标说明",
|
|
37827
|
+
"type": "string"
|
|
37828
|
+
},
|
|
37549
37829
|
"toAddress": {
|
|
37550
37830
|
"description": "转入地址",
|
|
37551
37831
|
"type": "string"
|
|
@@ -38560,6 +38840,7 @@
|
|
|
38560
38840
|
"models.GasSettingReq": {
|
|
38561
38841
|
"type": "object",
|
|
38562
38842
|
"required": [
|
|
38843
|
+
"coinType",
|
|
38563
38844
|
"gasUsageLimit",
|
|
38564
38845
|
"network",
|
|
38565
38846
|
"normalGasUsage"
|
|
@@ -38572,6 +38853,18 @@
|
|
|
38572
38853
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
38573
38854
|
}
|
|
38574
38855
|
},
|
|
38856
|
+
"before": {
|
|
38857
|
+
"description": "变更前快照",
|
|
38858
|
+
"type": "object",
|
|
38859
|
+
"additionalProperties": {
|
|
38860
|
+
"type": "string"
|
|
38861
|
+
},
|
|
38862
|
+
"properties": {}
|
|
38863
|
+
},
|
|
38864
|
+
"coinType": {
|
|
38865
|
+
"description": "币种",
|
|
38866
|
+
"type": "string"
|
|
38867
|
+
},
|
|
38575
38868
|
"gasUsageLimit": {
|
|
38576
38869
|
"description": "Gas消耗上限",
|
|
38577
38870
|
"type": "string"
|
|
@@ -38587,6 +38880,10 @@
|
|
|
38587
38880
|
"remark": {
|
|
38588
38881
|
"description": "备注",
|
|
38589
38882
|
"type": "string"
|
|
38883
|
+
},
|
|
38884
|
+
"targetDesc": {
|
|
38885
|
+
"description": "目标说明",
|
|
38886
|
+
"type": "string"
|
|
38590
38887
|
}
|
|
38591
38888
|
}
|
|
38592
38889
|
},
|
|
@@ -39086,6 +39383,14 @@
|
|
|
39086
39383
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
39087
39384
|
}
|
|
39088
39385
|
},
|
|
39386
|
+
"before": {
|
|
39387
|
+
"description": "变更前快照",
|
|
39388
|
+
"type": "object",
|
|
39389
|
+
"additionalProperties": {
|
|
39390
|
+
"type": "string"
|
|
39391
|
+
},
|
|
39392
|
+
"properties": {}
|
|
39393
|
+
},
|
|
39089
39394
|
"beforeConfirmations": {
|
|
39090
39395
|
"description": "修改前确认数",
|
|
39091
39396
|
"type": "string"
|
|
@@ -41596,6 +41901,10 @@
|
|
|
41596
41901
|
"additionalProperties": true,
|
|
41597
41902
|
"properties": {}
|
|
41598
41903
|
},
|
|
41904
|
+
"comment": {
|
|
41905
|
+
"description": "备注",
|
|
41906
|
+
"type": "string"
|
|
41907
|
+
},
|
|
41599
41908
|
"createBy": {
|
|
41600
41909
|
"type": "integer"
|
|
41601
41910
|
},
|
|
@@ -41658,6 +41967,10 @@
|
|
|
41658
41967
|
"$ref": "#/components/schemas/gitlab_finex18_com_kun_exchange-admin-backend_app_admin_models.SysMenu"
|
|
41659
41968
|
}
|
|
41660
41969
|
},
|
|
41970
|
+
"targetDesc": {
|
|
41971
|
+
"description": "目标说明",
|
|
41972
|
+
"type": "string"
|
|
41973
|
+
},
|
|
41661
41974
|
"updateBy": {
|
|
41662
41975
|
"type": "integer"
|
|
41663
41976
|
}
|
|
@@ -41684,6 +41997,10 @@
|
|
|
41684
41997
|
},
|
|
41685
41998
|
"properties": {}
|
|
41686
41999
|
},
|
|
42000
|
+
"comment": {
|
|
42001
|
+
"description": "备注",
|
|
42002
|
+
"type": "string"
|
|
42003
|
+
},
|
|
41687
42004
|
"createBy": {
|
|
41688
42005
|
"type": "integer"
|
|
41689
42006
|
},
|
|
@@ -41742,6 +42059,10 @@
|
|
|
41742
42059
|
"$ref": "#/components/schemas/gitlab_finex18_com_kun_exchange-admin-backend_app_admin_models.SysMenu"
|
|
41743
42060
|
}
|
|
41744
42061
|
},
|
|
42062
|
+
"targetDesc": {
|
|
42063
|
+
"description": "目标说明",
|
|
42064
|
+
"type": "string"
|
|
42065
|
+
},
|
|
41745
42066
|
"updateBy": {
|
|
41746
42067
|
"type": "integer"
|
|
41747
42068
|
}
|
|
@@ -41772,6 +42093,10 @@
|
|
|
41772
42093
|
"remark": {
|
|
41773
42094
|
"description": "工单备注",
|
|
41774
42095
|
"type": "string"
|
|
42096
|
+
},
|
|
42097
|
+
"targetDesc": {
|
|
42098
|
+
"description": "目标说明",
|
|
42099
|
+
"type": "string"
|
|
41775
42100
|
}
|
|
41776
42101
|
}
|
|
41777
42102
|
},
|