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

  1. package dbModel
  2. import "github.com/jinzhu/gorm"
  3. // 工作流流转表
  4. type WorkFlowProcess struct {
  5. gorm.Model
  6. ApplicationID uint // 当前工作流所属申请的ID
  7. CurrentNode string // 当前进度节点
  8. HistoricalNode string //上一个进度节点
  9. CurrentUser string // 当前进度操作人
  10. HistoricalUser string // 上一个进度的操作人
  11. State bool // 状态 是否是正在进行的状态
  12. }