| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package datamodel
- import "time"
- type WfActivityActionIns struct {
- OcId int64 `json:"OcId" xorm:"'oc_id' bigint pk comment('OC ID') "`
-
- WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('WF DEF ID') " `
- WfInsId int64 `json:"wfInsId" xorm:"'wf_ins_id' bigint pk comment('WF INS ID') " `
-
- ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " `
- ActivityInsId int64 `json:"activityInsId" xorm:"'activity_ins_id' bigint pk comment('主键ID') " `
-
- ActionInsId int64 `json:"actionInsId" xorm:"'action_ins_id' bigint comment('Action Ins Id') " `
-
- ActionId int64 `json:"actionId" xorm:"'action_id' bigint comment('Action Id') " `
- ActionCode string `json:"actionCode" xorm:"'action_code' varchar(127) comment('描述') " `
- ActionTitle string `json:"actionTitle" xorm:"'action_title' varchar(127) comment('描述') " `
- ActionDesc string `json:"actionDesc" xorm:"'action_desc' varchar(127) comment('描述') " `
- FormCode string `json:"formCode" xorm:"'form_code' varchar(127) comment('描述') " `
-
- ActionTime time.Time `json:"actionTime" xorm:"'action_time' " `
-
- ActionRemark string `json:"actionRemark" xorm:"'action_remark' varchar(127) comment('描述') " `
- ActionResult string `json:"actionResult" xorm:"'action_result' varchar(127) comment('描述') " `
-
- TargetActivityInsId int64 `json:"targetActivityInsId" xorm:"'target_activity_ins_id' bigint comment('Target Activity Ins id')" `
-
- GroupId int64 `json:"groupId" xorm:"'group_id' bigint comment('Group Id') " `
- GroupName string `json:"groupName" xorm:"'group_name' varchar(127) comment('Group Name') " `
- PositionId int64 `json:"positionId" xorm:"'position_id' bigint comment('Position Id') " `
- PositionName string `json:"positionName" xorm:"'position_name' varchar(127) comment('Position Name')" `
- AccountId int64 `json:"accountId" xorm:"'account_id' bigint comment('Account Id') " `
- AccountName string `json:"accountName" xorm:"'account_name' varchar(127) comment('Account Name') " `
-
- CreatedBy int64 `json:"createdBy" xorm:"'created_by' " `
- CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
- UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' " `
- UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at' " `
- DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'" `
- DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by' " `
- DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at' " `
- }
- func (m *WfActivityActionIns) TableName() string {
- return "wf_activity_action_ins"
- }
|