部署
This commit is contained in:
parent
2717d71403
commit
2c977e19e3
@ -17,9 +17,10 @@ type ArgsWorkflowList struct {
|
||||
}
|
||||
|
||||
type WorkflowSearch struct {
|
||||
BusinessId int64 // 业务id
|
||||
BusinessType string
|
||||
Status AuditStatus
|
||||
BusinessId int64 // 业务id
|
||||
BusinessType string
|
||||
Status AuditStatus
|
||||
AuditStaffIds []int64 // 审核人
|
||||
}
|
||||
type ReplyWorkflowList struct {
|
||||
List []WorkflowItem
|
||||
|
@ -44,12 +44,18 @@ type ReplyNodeList struct {
|
||||
Total int64 `json:"total"`
|
||||
}
|
||||
type NodeItem struct {
|
||||
Id int64 `json:"id"`
|
||||
BusinessId int64 `json:"businessId"`
|
||||
BusinessName string `json:"businessName"`
|
||||
BusinessType string `json:"businessType"`
|
||||
Status int64 `json:"status"`
|
||||
CreatedAt *time.Time `json:"createdAt"`
|
||||
Id int64 `json:"id"`
|
||||
BusinessId int64 `json:"businessId"`
|
||||
BusinessName string `json:"businessName"`
|
||||
BusinessType string `json:"businessType"`
|
||||
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"`
|
||||
UpdatedAt *time.Time `json:"updatedAt"` // 更新时间
|
||||
Data string `json:"data"`
|
||||
}
|
||||
|
||||
// List @TITLE 节点列表
|
||||
|
Loading…
Reference in New Issue
Block a user