消除初始化时间0值报错
This commit is contained in:
parent
35a21d4e24
commit
f914f96b9a
|
@ -110,7 +110,7 @@ type WorkflowNode struct {
|
||||||
Cycle string `json:"cycle" gorm:"comment:循环时间"`
|
Cycle string `json:"cycle" gorm:"comment:循环时间"`
|
||||||
Duration string `json:"duration" gorm:"comment:持续时间"`
|
Duration string `json:"duration" gorm:"comment:持续时间"`
|
||||||
HideIcon bool `json:"hideIcon" 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:审批类型"`
|
AssignType string `json:"assignType" gorm:"comment:审批类型"`
|
||||||
AssignValue string `json:"assignValue" gorm:"comment:审批类型值"`
|
AssignValue string `json:"assignValue" gorm:"comment:审批类型值"`
|
||||||
Success bool `json:"success" gorm:"comment:是否成功"`
|
Success bool `json:"success" gorm:"comment:是否成功"`
|
||||||
|
|
Loading…
Reference in New Issue