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.

16 lines
848 B

  1. package model
  2. import (
  3. "gin-vue-admin/global"
  4. )
  5. // 工作流流转表
  6. type SysWorkFlowProcess struct {
  7. global.GVA_MODEL
  8. ApplicationID uint `json:"applicationID" gorm:"comment:当前工作流所属申请的ID"` // 当前工作流所属申请的ID
  9. CurrentNode string `json:"currentNode" gorm:"comment:当前进度节点"` // 当前进度节点
  10. HistoricalNode string `json:"historicalNode" gorm:"comment:上一个进度节点"` // 上一个进度节点
  11. CurrentUser string `json:"currentUser" gorm:"comment:当前进度操作人"` // 当前进度操作人
  12. HistoricalUser string `json:"historicalUser" gorm:"comment:上一个进度的操作人"` // 上一个进度的操作人
  13. State bool `json:"state" gorm:"comment:是否是正在进行的状态"` // 状态 是否是正在进行的状态
  14. }