package datamodel import "time" type WfActivityActionDef struct { WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('主键ID') " ` ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " ` ActionId int64 `json:"actionId" xorm:"'action_id' varchar(127) comment('TASK类型名称') " ` 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('描述') " ` TargetActivityDefId int64 `json:"targetActivityDefId" xorm:"'target_activity_def_id' bigint comment('Target Activity Def id') " ` 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 *WfActivityActionDef) TableName() string { return "wf_activity_action_def" }