- package model
- import "gorm.io/gorm"
- type SysWorkFlowProcess struct {
- gorm.Model
- ApplicationID uint `json:"applicationID" gorm:"comment:'当前工作流所属申请的ID'"`
- CurrentNode string `json:"currentNode" gorm:"comment:'当前进度节点'"`
- HistoricalNode string `json:"historicalNode" gorm:"comment:'上一个进度节点'"`
- CurrentUser string `json:"currentUser" gorm:"comment:'当前进度操作人'"`
- HistoricalUser string `json:"historicalUser" gorm:"comment:'上一个进度的操作人'"`
- State bool `json:"state" gorm:"comment:'状态 是否是正在进行的状态'"`
- }
|