From 9b7adf0f45c25f7460fff8725258752212cf7e4c Mon Sep 17 00:00:00 2001 From: pixel <303176530@qq.com> Date: Wed, 16 Dec 2020 11:43:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E9=99=A4=E5=88=9D=E5=A7=8B=E5=8C=96?= =?UTF-8?q?=E6=97=B6=E9=97=B40=E5=80=BC=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/model/sys_workflow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/model/sys_workflow.go b/server/model/sys_workflow.go index a6ab7833..42fff594 100644 --- a/server/model/sys_workflow.go +++ b/server/model/sys_workflow.go @@ -110,7 +110,7 @@ type WorkflowNode struct { Cycle string `json:"cycle" gorm:"comment:循环时间"` Duration string `json:"duration" gorm:"comment:持续时间"` HideIcon bool `json:"hideIcon" gorm:"comment:是否隐藏图标"` - DueDate time.Time `json:"dueDate" gorm:"comment:到期时间"` + DueDate *time.Time `json:"dueDate" gorm:"comment:到期时间"` AssignType string `json:"assignType" gorm:"comment:审批类型"` AssignValue string `json:"assignValue" gorm:"comment:审批类型值"` Success bool `json:"success" gorm:"comment:是否成功"` -- GitLab