File tree Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ type UpdateSystemVariablesReqV1 struct {
82
82
WorkflowExpiredHours * int `json:"workflow_expired_hours" form:"workflow_expired_hours" example:"720"`
83
83
Url * string `json:"url" form:"url" example:"http://10.186.61.32:8080" validate:"url"`
84
84
OperationRecordExpiredHours * int `json:"operation_record_expired_hours" form:"operation_record_expired_hours" example:"2160"`
85
+ CbOperationLogsExpiredHours * int `json:"cb_operation_logs_expired_hours" form:"cb_operation_logs_expired_hours" example:"2160"`
85
86
}
86
87
87
88
// @Summary 修改系统变量
@@ -139,6 +140,7 @@ type SystemVariablesResV1 struct {
139
140
WorkflowExpiredHours int `json:"workflow_expired_hours"`
140
141
Url string `json:"url"`
141
142
OperationRecordExpiredHours int `json:"operation_record_expired_hours"`
143
+ CbOperationLogsExpiredHours int `json:"cb_operation_logs_expired_hours"`
142
144
}
143
145
144
146
// @Summary 获取系统变量
Original file line number Diff line number Diff line change @@ -12423,6 +12423,9 @@ var doc = `{
12423
12423
"v1.SystemVariablesResV1": {
12424
12424
"type": "object",
12425
12425
"properties": {
12426
+ "cb_operation_logs_expired_hours": {
12427
+ "type": "integer"
12428
+ },
12426
12429
"operation_record_expired_hours": {
12427
12430
"type": "integer"
12428
12431
},
@@ -12908,6 +12911,10 @@ var doc = `{
12908
12911
"v1.UpdateSystemVariablesReqV1": {
12909
12912
"type": "object",
12910
12913
"properties": {
12914
+ "cb_operation_logs_expired_hours": {
12915
+ "type": "integer",
12916
+ "example": 2160
12917
+ },
12911
12918
"operation_record_expired_hours": {
12912
12919
"type": "integer",
12913
12920
"example": 2160
Original file line number Diff line number Diff line change 12407
12407
"v1.SystemVariablesResV1" : {
12408
12408
"type" : " object" ,
12409
12409
"properties" : {
12410
+ "cb_operation_logs_expired_hours" : {
12411
+ "type" : " integer"
12412
+ },
12410
12413
"operation_record_expired_hours" : {
12411
12414
"type" : " integer"
12412
12415
},
12892
12895
"v1.UpdateSystemVariablesReqV1" : {
12893
12896
"type" : " object" ,
12894
12897
"properties" : {
12898
+ "cb_operation_logs_expired_hours" : {
12899
+ "type" : " integer" ,
12900
+ "example" : 2160
12901
+ },
12895
12902
"operation_record_expired_hours" : {
12896
12903
"type" : " integer" ,
12897
12904
"example" : 2160
Original file line number Diff line number Diff line change @@ -2820,6 +2820,8 @@ definitions:
2820
2820
type : object
2821
2821
v1.SystemVariablesResV1 :
2822
2822
properties :
2823
+ cb_operation_logs_expired_hours :
2824
+ type : integer
2823
2825
operation_record_expired_hours :
2824
2826
type : integer
2825
2827
url :
@@ -3147,6 +3149,9 @@ definitions:
3147
3149
type : object
3148
3150
v1.UpdateSystemVariablesReqV1 :
3149
3151
properties :
3152
+ cb_operation_logs_expired_hours :
3153
+ example : 2160
3154
+ type : integer
3150
3155
operation_record_expired_hours :
3151
3156
example : 2160
3152
3157
type : integer
You can’t perform that action at this time.
0 commit comments