package viewmodel type WfActivityActionDefInfo 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') " ` } func (m *WfActivityActionDefInfo) TableName() string { return "wf_activity_action_def" }