wf_activity_action_def_info.go 1.3 KB

12345678910111213141516171819
  1. package viewmodel
  2. type WfActivityActionDefInfo struct {
  3. WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('主键ID') " `
  4. ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " `
  5. ActionId int64 `json:"actionId" xorm:"'action_id' varchar(127) comment('TASK类型名称') " `
  6. ActionCode string `json:"actionCode" xorm:"'action_code' varchar(127) comment('描述') " `
  7. ActionTitle string `json:"actionTitle" xorm:"'action_title' varchar(127) comment('描述') " `
  8. ActionDesc string `json:"actionDesc" xorm:"'action_desc' varchar(127) comment('描述') " `
  9. FormCode string `json:"formCode" xorm:"'form_code' varchar(127) comment('描述') " `
  10. TargetActivityDefId int64 `json:"targetActivityDefId" xorm:"'target_activity_def_id' bigint comment('Target Activity Def id') " `
  11. }
  12. func (m *WfActivityActionDefInfo) TableName() string {
  13. return "wf_activity_action_def"
  14. }