wf_activity_action_ins.go 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package datamodel
  2. import "time"
  3. type WfActivityActionIns struct {
  4. OcId int64 `json:"OcId" xorm:"'oc_id' bigint pk comment('OC ID') "`
  5. WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('WF DEF ID') " `
  6. WfInsId int64 `json:"wfInsId" xorm:"'wf_ins_id' bigint pk comment('WF INS ID') " `
  7. ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " `
  8. ActivityInsId int64 `json:"activityInsId" xorm:"'activity_ins_id' bigint pk comment('主键ID') " `
  9. ActionInsId int64 `json:"actionInsId" xorm:"'action_ins_id' bigint comment('Action Ins Id') " `
  10. ActionId int64 `json:"actionId" xorm:"'action_id' bigint comment('Action Id') " `
  11. ActionCode string `json:"actionCode" xorm:"'action_code' varchar(127) comment('描述') " `
  12. ActionTitle string `json:"actionTitle" xorm:"'action_title' varchar(127) comment('描述') " `
  13. ActionDesc string `json:"actionDesc" xorm:"'action_desc' varchar(127) comment('描述') " `
  14. FormCode string `json:"formCode" xorm:"'form_code' varchar(127) comment('描述') " `
  15. ActionTime time.Time `json:"actionTime" xorm:"'action_time' " `
  16. ActionRemark string `json:"actionRemark" xorm:"'action_remark' varchar(127) comment('描述') " `
  17. ActionResult string `json:"actionResult" xorm:"'action_result' varchar(127) comment('描述') " `
  18. TargetActivityInsId int64 `json:"targetActivityInsId" xorm:"'target_activity_ins_id' bigint comment('Target Activity Ins id')" `
  19. GroupId int64 `json:"groupId" xorm:"'group_id' bigint comment('Group Id') " `
  20. GroupName string `json:"groupName" xorm:"'group_name' varchar(127) comment('Group Name') " `
  21. PositionId int64 `json:"positionId" xorm:"'position_id' bigint comment('Position Id') " `
  22. PositionName string `json:"positionName" xorm:"'position_name' varchar(127) comment('Position Name')" `
  23. AccountId int64 `json:"accountId" xorm:"'account_id' bigint comment('Account Id') " `
  24. AccountName string `json:"accountName" xorm:"'account_name' varchar(127) comment('Account Name') " `
  25. CreatedBy int64 `json:"createdBy" xorm:"'created_by' " `
  26. CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
  27. UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' " `
  28. UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at' " `
  29. DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'" `
  30. DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by' " `
  31. DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at' " `
  32. }
  33. func (m *WfActivityActionIns) TableName() string {
  34. return "wf_activity_action_ins"
  35. }