Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions sqle/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13936,14 +13936,17 @@ var doc = `{
"dashboard.GlobalWorkflowListItem": {
"type": "object",
"properties": {
"assignee": {
"description": "当前处理人姓名",
"type": "string"
},
"created_at": {
"description": "创建时间",
"type": "string"
},
"current_step_assignee_user_name_list": {
"description": "当前处理人姓名列表",
"type": "array",
"items": {
"type": "string"
}
},
"instance_id": {
"description": "实例ID",
"type": "string"
Expand Down
11 changes: 7 additions & 4 deletions sqle/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -13920,14 +13920,17 @@
"dashboard.GlobalWorkflowListItem": {
"type": "object",
"properties": {
"assignee": {
"description": "当前处理人姓名",
"type": "string"
},
"created_at": {
"description": "创建时间",
"type": "string"
},
"current_step_assignee_user_name_list": {
"description": "当前处理人姓名列表",
"type": "array",
"items": {
"type": "string"
}
},
"instance_id": {
"description": "实例ID",
"type": "string"
Expand Down
8 changes: 5 additions & 3 deletions sqle/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,14 @@ definitions:
type: object
dashboard.GlobalWorkflowListItem:
properties:
assignee:
description: 当前处理人姓名
type: string
created_at:
description: 创建时间
type: string
current_step_assignee_user_name_list:
description: 当前处理人姓名列表
items:
type: string
type: array
instance_id:
description: 实例ID
type: string
Expand Down
2 changes: 1 addition & 1 deletion sqle/server/dashboard/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ type GlobalWorkflowListItem struct {
ProjectName string `json:"project_name"` // 项目名称
InstanceId string `json:"instance_id"` // 实例ID
InstanceName string `json:"instance_name"` // 实例名称
Assignee string `json:"assignee"` // 当前处理人姓名
CurrentStepAssigneeUserNameList []string `json:"current_step_assignee_user_name_list"` // 当前处理人姓名列表
Priority string `json:"priority"` // High, Medium, Low
Status UnifiedWorkflowStatus `json:"status" enums:"pending_approval,pending_action,in_progress,exporting,rejected,cancelled,failed,completed,unknown"` // 工单状态
CreatedAt string `json:"created_at"` // 创建时间
Expand Down
Loading