nodeProcess.go 340 B

1234567891011
  1. package dao
  2. type ProcessNodes struct {
  3. NodeId int `json:"nodeId" form:"nodeId" gorm:"comment:节点id"`
  4. ProcessId int `json:"processId" form:"processId" gorm:"comment:审批流程id;"`
  5. NodeOrder int `json:"nodeOrder" form:"nodeOrder" gorm:"comment:节点顺序"`
  6. }
  7. func (ProcessNodes) TableName() string {
  8. return "process_nodes"
  9. }