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.

18 lines
444 B

  1. package dbModel
  2. import (
  3. "github.com/jinzhu/gorm"
  4. "time"
  5. )
  6. //申请model 工作流实例
  7. type Application struct {
  8. gorm.Model
  9. WorkFlowID string // 所属工作流ID
  10. WorkFlowStepInfoID string // 当前节点ID
  11. ApplicationName string // 申请人姓名
  12. ApplicationCause string // 请假原因
  13. ApplicationStartData time.Time // 请假开始日期
  14. ApplicationEndData time.Time // 请假开始日期
  15. }