sys_workflow_process.go 435 字节
Newer Older
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1
package model
2 3 4 5

import "github.com/jinzhu/gorm"

// 工作流流转表
6
type SysWorkFlowProcess struct {
7 8 9
	gorm.Model
	ApplicationID  uint   // 当前工作流所属申请的ID
	CurrentNode    string // 当前进度节点
10
	HistoricalNode string // 上一个进度节点
11 12 13 14
	CurrentUser    string // 当前进度操作人
	HistoricalUser string // 上一个进度的操作人
	State          bool   // 状态 是否是正在进行的状态
}