wf_activity_action_def.go 1.9 KB

12345678910111213141516171819202122232425
  1. package datamodel
  2. import "time"
  3. type WfActivityActionDef struct {
  4. WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('主键ID') " `
  5. ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " `
  6. ActionId int64 `json:"actionId" xorm:"'action_id' varchar(127) comment('TASK类型名称') " `
  7. ActionCode string `json:"actionCode" xorm:"'action_code' varchar(127) comment('描述') " `
  8. ActionTitle string `json:"actionTitle" xorm:"'action_title' varchar(127) comment('描述') " `
  9. ActionDesc string `json:"actionDesc" xorm:"'action_desc' varchar(127) comment('描述') " `
  10. FormCode string `json:"formCode" xorm:"'form_code' varchar(127) comment('描述') " `
  11. TargetActivityDefId int64 `json:"targetActivityDefId" xorm:"'target_activity_def_id' bigint comment('Target Activity Def id') " `
  12. CreatedBy int64 `json:"createdBy" xorm:"'created_by' " `
  13. CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
  14. UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' " `
  15. UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at' " `
  16. DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'" `
  17. DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by' " `
  18. DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at' " `
  19. }
  20. func (m *WfActivityActionDef) TableName() string {
  21. return "wf_activity_action_def"
  22. }