This commit is contained in:
守护自己的云 2024-10-12 17:10:27 +08:00
parent 2717d71403
commit 2c977e19e3
2 changed files with 16 additions and 9 deletions

View File

@ -20,6 +20,7 @@ type WorkflowSearch struct {
BusinessId int64 // 业务id BusinessId int64 // 业务id
BusinessType string BusinessType string
Status AuditStatus Status AuditStatus
AuditStaffIds []int64 // 审核人
} }
type ReplyWorkflowList struct { type ReplyWorkflowList struct {
List []WorkflowItem List []WorkflowItem

View File

@ -49,7 +49,13 @@ type NodeItem struct {
BusinessName string `json:"businessName"` BusinessName string `json:"businessName"`
BusinessType string `json:"businessType"` BusinessType string `json:"businessType"`
Status int64 `json:"status"` Status int64 `json:"status"`
Title string `json:"title"`
Content string `json:"content"`
ReviewComments string `json:"reviewComments"` // 审批意见
CreatedStaffId int64 `json:"createdStaffId"` // 创建人
CreatedAt *time.Time `json:"createdAt"` CreatedAt *time.Time `json:"createdAt"`
UpdatedAt *time.Time `json:"updatedAt"` // 更新时间
Data string `json:"data"`
} }
// List @TITLE 节点列表 // List @TITLE 节点列表