You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
433 B
14 lines
433 B
package dbModel
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
// 工作流流转表
|
|
type WorkFlowProcess struct {
|
|
gorm.Model
|
|
ApplicationID uint // 当前工作流所属申请的ID
|
|
CurrentNode string // 当前进度节点
|
|
HistoricalNode string //上一个进度节点
|
|
CurrentUser string // 当前进度操作人
|
|
HistoricalUser string // 上一个进度的操作人
|
|
State bool // 状态 是否是正在进行的状态
|
|
}
|