model

package
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 16, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AbstractModel

type AbstractModel interface {
	TableName() string
}

type ActGeBytearray

type ActGeBytearray struct {
	ID_           string  `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_          *int32  `gorm:"column:REV_;type:integer" json:"rev_"`
	Name_         *string `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	DeploymentID_ *string `gorm:"column:DEPLOYMENT_ID_;type:varchar(64);index:act_idx_bytear_depl,priority:1" json:"deployment_id_"`
	Bytes_        *[]byte `gorm:"column:BYTES_;type:bytea" json:"bytes_"`
	Generated_    *bool   `gorm:"column:GENERATED_;type:boolean" json:"generated_"`
}

ActGeBytearray mapped from table <act_ge_bytearray>

func (*ActGeBytearray) TableName

func (*ActGeBytearray) TableName() string

TableName ActGeBytearray's table name

type ActHiActinst

type ActHiActinst struct {
	ID_               string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_              *int32     `gorm:"column:REV_;type:integer;default:1" json:"rev_"`
	ProcDefID_        string     `gorm:"column:PROC_DEF_ID_;type:varchar(64);not null" json:"proc_def_id_"`
	ProcInstID_       string     `gorm:"column:PROC_INST_ID_;type:varchar(64);not null;index:act_idx_hi_act_inst_procinst,priority:1" json:"proc_inst_id_"`
	ExecutionID_      string     `gorm:"column:EXECUTION_ID_;type:varchar(64);not null;index:act_idx_hi_act_inst_exec,priority:1" json:"execution_id_"`
	ActID_            string     `` /* 151-byte string literal not displayed */
	TaskID_           *string    `gorm:"column:TASK_ID_;type:varchar(64)" json:"task_id_"`
	CallProcInstID_   *string    `gorm:"column:CALL_PROC_INST_ID_;type:varchar(64)" json:"call_proc_inst_id_"`
	ActName_          *string    `gorm:"column:ACT_NAME_;type:varchar(255)" json:"act_name_"`
	ActType_          string     `gorm:"column:ACT_TYPE_;type:varchar(255);not null" json:"act_type_"`
	Assignee_         *string    `gorm:"column:ASSIGNEE_;type:varchar(255)" json:"assignee_"`
	StartTime_        time.Time  `` /* 129-byte string literal not displayed */
	EndTime_          *time.Time `gorm:"column:END_TIME_;type:timestamp without time zone;index:act_idx_hi_act_inst_end,priority:1" json:"end_time_"`
	TransactionOrder_ *int32     `gorm:"column:TRANSACTION_ORDER_;type:integer" json:"transaction_order_"`
	Duration_         *int64     `gorm:"column:DURATION_;type:bigint" json:"duration_"`
	DeleteReason_     *string    `gorm:"column:DELETE_REASON_;type:varchar(4000)" json:"delete_reason_"`
	TenantID_         *string    `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
}

ActHiActinst mapped from table <act_hi_actinst>

func (*ActHiActinst) TableName

func (*ActHiActinst) TableName() string

TableName ActHiActinst's table name

type ActHiIdentitylink struct {
	ID_                string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	GroupID_           *string    `gorm:"column:GROUP_ID_;type:varchar(255)" json:"group_id_"`
	Type_              *string    `gorm:"column:TYPE_;type:varchar(255)" json:"type_"`
	UserID_            *string    `gorm:"column:USER_ID_;type:varchar(255);index:act_idx_hi_ident_lnk_user,priority:1" json:"user_id_"`
	TaskID_            *string    `gorm:"column:TASK_ID_;type:varchar(64);index:act_idx_hi_ident_lnk_task,priority:1" json:"task_id_"`
	CreateTime_        *time.Time `gorm:"column:CREATE_TIME_;type:timestamp without time zone" json:"create_time_"`
	ProcInstID_        *string    `gorm:"column:PROC_INST_ID_;type:varchar(64);index:act_idx_hi_ident_lnk_procinst,priority:1" json:"proc_inst_id_"`
	ScopeID_           *string    `gorm:"column:SCOPE_ID_;type:varchar(255);index:act_idx_hi_ident_lnk_scope,priority:1" json:"scope_id_"`
	SubScopeID_        *string    `gorm:"column:SUB_SCOPE_ID_;type:varchar(255);index:act_idx_hi_ident_lnk_sub_scope,priority:1" json:"sub_scope_id_"`
	ScopeType_         *string    `` /* 202-byte string literal not displayed */
	ScopeDefinitionID_ *string    `` /* 128-byte string literal not displayed */
}

ActHiIdentitylink mapped from table <act_hi_identitylink>

func (*ActHiIdentitylink) TableName

func (*ActHiIdentitylink) TableName() string

TableName ActHiIdentitylink's table name

type ActHiProcinst

type ActHiProcinst struct {
	ID_                     string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_                    *int32     `gorm:"column:REV_;type:integer;default:1" json:"rev_"`
	ProcInstID_             string     `gorm:"column:PROC_INST_ID_;type:varchar(64);not null" json:"proc_inst_id_"`
	BusinessKey_            *string    `gorm:"column:BUSINESS_KEY_;type:varchar(255);index:act_idx_hi_pro_i_buskey,priority:1" json:"business_key_"`
	ProcDefID_              string     `gorm:"column:PROC_DEF_ID_;type:varchar(64);not null" json:"proc_def_id_"`
	StartTime_              time.Time  `gorm:"column:START_TIME_;type:timestamp without time zone;not null" json:"start_time_"`
	EndTime_                *time.Time `gorm:"column:END_TIME_;type:timestamp without time zone;index:act_idx_hi_pro_inst_end,priority:1" json:"end_time_"`
	Duration_               *int64     `gorm:"column:DURATION_;type:bigint" json:"duration_"`
	StartUserID_            *string    `gorm:"column:START_USER_ID_;type:varchar(255)" json:"start_user_id_"`
	StartActID_             *string    `gorm:"column:START_ACT_ID_;type:varchar(255)" json:"start_act_id_"`
	EndActID_               *string    `gorm:"column:END_ACT_ID_;type:varchar(255)" json:"end_act_id_"`
	SuperProcessInstanceID_ *string    `` /* 138-byte string literal not displayed */
	DeleteReason_           *string    `gorm:"column:DELETE_REASON_;type:varchar(4000)" json:"delete_reason_"`
	TenantID_               *string    `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
	Name_                   *string    `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	CallbackID_             *string    `gorm:"column:CALLBACK_ID_;type:varchar(255)" json:"callback_id_"`
	CallbackType_           *string    `gorm:"column:CALLBACK_TYPE_;type:varchar(255)" json:"callback_type_"`
	ReferenceID_            *string    `gorm:"column:REFERENCE_ID_;type:varchar(255)" json:"reference_id_"`
	ReferenceType_          *string    `gorm:"column:REFERENCE_TYPE_;type:varchar(255)" json:"reference_type_"`
	PropagatedStageInstID_  *string    `gorm:"column:PROPAGATED_STAGE_INST_ID_;type:varchar(255)" json:"propagated_stage_inst_id_"`
	BusinessStatus_         *string    `gorm:"column:BUSINESS_STATUS_;type:varchar(255)" json:"business_status_"`
}

ActHiProcinst mapped from table <act_hi_procinst>

func (*ActHiProcinst) TableName

func (*ActHiProcinst) TableName() string

TableName ActHiProcinst's table name

type ActHiTaskinst

type ActHiTaskinst struct {
	ID_                    string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_                   *int32     `gorm:"column:REV_;type:integer;default:1" json:"rev_"`
	ProcDefID_             *string    `gorm:"column:PROC_DEF_ID_;type:varchar(64)" json:"proc_def_id_"`
	TaskDefID_             *string    `gorm:"column:TASK_DEF_ID_;type:varchar(64)" json:"task_def_id_"`
	TaskDefKey_            *string    `gorm:"column:TASK_DEF_KEY_;type:varchar(255)" json:"task_def_key_"`
	ProcInstID_            *string    `gorm:"column:PROC_INST_ID_;type:varchar(64);index:act_idx_hi_task_inst_procinst,priority:1" json:"proc_inst_id_"`
	ExecutionID_           *string    `gorm:"column:EXECUTION_ID_;type:varchar(64)" json:"execution_id_"`
	ScopeID_               *string    `gorm:"column:SCOPE_ID_;type:varchar(255);index:act_idx_hi_task_scope,priority:1" json:"scope_id_"`
	SubScopeID_            *string    `gorm:"column:SUB_SCOPE_ID_;type:varchar(255);index:act_idx_hi_task_sub_scope,priority:1" json:"sub_scope_id_"`
	ScopeType_             *string    `` /* 187-byte string literal not displayed */
	ScopeDefinitionID_     *string    `gorm:"column:SCOPE_DEFINITION_ID_;type:varchar(255);index:act_idx_hi_task_scope_def,priority:2" json:"scope_definition_id_"`
	PropagatedStageInstID_ *string    `gorm:"column:PROPAGATED_STAGE_INST_ID_;type:varchar(255)" json:"propagated_stage_inst_id_"`
	Name_                  *string    `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	ParentTaskID_          *string    `gorm:"column:PARENT_TASK_ID_;type:varchar(64)" json:"parent_task_id_"`
	Description_           *string    `gorm:"column:DESCRIPTION_;type:varchar(4000)" json:"description_"`
	Owner_                 *string    `gorm:"column:OWNER_;type:varchar(255)" json:"owner_"`
	Assignee_              *string    `gorm:"column:ASSIGNEE_;type:varchar(255)" json:"assignee_"`
	StartTime_             time.Time  `gorm:"column:START_TIME_;type:timestamp without time zone;not null" json:"start_time_"`
	ClaimTime_             *time.Time `gorm:"column:CLAIM_TIME_;type:timestamp without time zone" json:"claim_time_"`
	EndTime_               *time.Time `gorm:"column:END_TIME_;type:timestamp without time zone" json:"end_time_"`
	Duration_              *int64     `gorm:"column:DURATION_;type:bigint" json:"duration_"`
	DeleteReason_          *string    `gorm:"column:DELETE_REASON_;type:varchar(4000)" json:"delete_reason_"`
	Priority_              *int32     `gorm:"column:PRIORITY_;type:integer" json:"priority_"`
	DueDate_               *time.Time `gorm:"column:DUE_DATE_;type:timestamp without time zone" json:"due_date_"`
	FormKey_               *string    `gorm:"column:FORM_KEY_;type:varchar(255)" json:"form_key_"`
	Category_              *string    `gorm:"column:CATEGORY_;type:varchar(255)" json:"category_"`
	TenantID_              *string    `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
	LastUpdatedTime_       *time.Time `gorm:"column:LAST_UPDATED_TIME_;type:timestamp without time zone" json:"last_updated_time_"`
}

ActHiTaskinst mapped from table <act_hi_taskinst>

func (*ActHiTaskinst) TableName

func (*ActHiTaskinst) TableName() string

TableName ActHiTaskinst's table name

type ActReDeployment

type ActReDeployment struct {
	ID_                 string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Name_               *string    `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	Category_           *string    `gorm:"column:CATEGORY_;type:varchar(255)" json:"category_"`
	Key_                *string    `gorm:"column:KEY_;type:varchar(255)" json:"key_"`
	TenantID_           *string    `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
	DeployTime_         *time.Time `gorm:"column:DEPLOY_TIME_;type:timestamp without time zone" json:"deploy_time_"`
	DerivedFrom_        *string    `gorm:"column:DERIVED_FROM_;type:varchar(64)" json:"derived_from_"`
	DerivedFromRoot_    *string    `gorm:"column:DERIVED_FROM_ROOT_;type:varchar(64)" json:"derived_from_root_"`
	ParentDeploymentID_ *string    `gorm:"column:PARENT_DEPLOYMENT_ID_;type:varchar(255)" json:"parent_deployment_id_"`
	EngineVersion_      *string    `gorm:"column:ENGINE_VERSION_;type:varchar(255)" json:"engine_version_"`
	ProcessID_          string     `gorm:"column:process_id_;type:varchar(255)" json:"process_id_"`
}

ActReDeployment mapped from table <act_re_deployment>

func (*ActReDeployment) TableName

func (*ActReDeployment) TableName() string

TableName ActReDeployment's table name

type ActReProcdef

type ActReProcdef struct {
	ID_                   string  `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_                  *int32  `gorm:"column:REV_;type:integer" json:"rev_"`
	Category_             *string `gorm:"column:CATEGORY_;type:varchar(255)" json:"category_"`
	Name_                 *string `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	Key_                  string  `gorm:"column:KEY_;type:varchar(255);not null" json:"key_"`
	Version_              int32   `gorm:"column:VERSION_;type:integer;not null" json:"version_"`
	DeploymentID_         *string `gorm:"column:DEPLOYMENT_ID_;type:varchar(64)" json:"deployment_id_"`
	ResourceName_         *string `gorm:"column:RESOURCE_NAME_;type:varchar(4000)" json:"resource_name_"`
	DgrmResourceName_     *string `gorm:"column:DGRM_RESOURCE_NAME_;type:varchar(4000)" json:"dgrm_resource_name_"`
	Description_          *string `gorm:"column:DESCRIPTION_;type:varchar(4000)" json:"description_"`
	HasStartFormKey_      *bool   `gorm:"column:HAS_START_FORM_KEY_;type:boolean" json:"has_start_form_key_"`
	HasGraphicalNotation_ *bool   `gorm:"column:HAS_GRAPHICAL_NOTATION_;type:boolean" json:"has_graphical_notation_"`
	SuspensionState_      *int32  `gorm:"column:SUSPENSION_STATE_;type:integer" json:"suspension_state_"`
	TenantID_             *string `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
	DerivedFrom_          *string `gorm:"column:DERIVED_FROM_;type:varchar(64)" json:"derived_from_"`
	DerivedFromRoot_      *string `gorm:"column:DERIVED_FROM_ROOT_;type:varchar(64)" json:"derived_from_root_"`
	DerivedVersion_       *int32  `gorm:"column:DERIVED_VERSION_;type:integer;not null;default:0" json:"derived_version_"`
	EngineVersion_        *string `gorm:"column:ENGINE_VERSION_;type:varchar(255)" json:"engine_version_"`
	ProcessID_            string  `gorm:"column:process_id_;type:varchar(255)" json:"process_id_"`
}

ActReProcdef mapped from table <act_re_procdef>

func (*ActReProcdef) TableName

func (*ActReProcdef) TableName() string

TableName ActReProcdef's table name

type ActRuExecution

type ActRuExecution struct {
	ID_                     string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_                    *int32     `gorm:"column:rev_;type:integer" json:"rev_"`
	ProcInstID_             *string    `gorm:"column:PROC_INST_ID_;type:varchar(64);index:act_idx_exe_procinst,priority:1" json:"proc_inst_id_"`
	BusinessKey_            *string    `gorm:"column:BUSINESS_KEY_;type:varchar(255);index:act_idx_exec_buskey,priority:1" json:"business_key_"`
	ParentID_               *string    `gorm:"column:PARENT_ID_;type:varchar(64);index:act_idx_exe_parent,priority:1" json:"parent_id_"`
	ProcDefID_              *string    `gorm:"column:PROC_DEF_ID_;type:varchar(64);index:act_idx_exe_procdef,priority:1" json:"proc_def_id_"`
	SuperExec_              *string    `gorm:"column:super_exec_;type:varchar(64);index:act_idx_exe_super,priority:1" json:"super_exec_"`
	RootProcInstID_         *string    `gorm:"column:ROOT_PROC_INST_ID_;type:varchar(64);index:act_idx_exe_root,priority:1" json:"root_proc_inst_id_"`
	ActID_                  *string    `gorm:"column:ACT_ID_;type:varchar(255)" json:"act_id_"`
	IsActive_               *bool      `gorm:"column:IS_ACTIVE_;type:boolean" json:"is_active_"`
	IsConcurrent_           *bool      `gorm:"column:is_concurrent_;type:boolean" json:"is_concurrent_"`
	IsScope_                *bool      `gorm:"column:is_scope_;type:boolean" json:"is_scope_"`
	IsEventScope_           *bool      `gorm:"column:is_event_scope_;type:boolean" json:"is_event_scope_"`
	IsMiRoot_               *bool      `gorm:"column:is_mi_root_;type:boolean" json:"is_mi_root_"`
	SuspensionState_        *int32     `gorm:"column:suspension_state_;type:integer" json:"suspension_state_"`
	CachedEntState_         *int32     `gorm:"column:cached_ent_state_;type:integer" json:"cached_ent_state_"`
	TenantID_               *string    `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
	Name_                   *string    `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	StartActID_             *string    `gorm:"column:START_ACT_ID_;type:varchar(255)" json:"start_act_id_"`
	StartTime_              *time.Time `gorm:"column:START_TIME_;type:timestamp without time zone" json:"start_time_"`
	StartUserID_            *string    `gorm:"column:START_USER_ID_;type:varchar(255)" json:"start_user_id_"`
	LockTime_               *time.Time `gorm:"column:lock_time_;type:timestamp without time zone" json:"lock_time_"`
	LockOwner_              *string    `gorm:"column:lock_owner_;type:varchar(255)" json:"lock_owner_"`
	IsCountEnabled_         *bool      `gorm:"column:is_count_enabled_;type:boolean" json:"is_count_enabled_"`
	EvtSubscrCount_         *int32     `gorm:"column:evt_subscr_count_;type:integer" json:"evt_subscr_count_"`
	TaskCount_              *int32     `gorm:"column:task_count_;type:integer" json:"task_count_"`
	JobCount_               *int32     `gorm:"column:job_count_;type:integer" json:"job_count_"`
	TimerJobCount_          *int32     `gorm:"column:timer_job_count_;type:integer" json:"timer_job_count_"`
	SuspJobCount_           *int32     `gorm:"column:susp_job_count_;type:integer" json:"susp_job_count_"`
	DeadletterJobCount_     *int32     `gorm:"column:deadletter_job_count_;type:integer" json:"deadletter_job_count_"`
	ExternalWorkerJobCount_ *int32     `gorm:"column:external_worker_job_count_;type:integer" json:"external_worker_job_count_"`
	VarCount_               *int32     `gorm:"column:var_count_;type:integer" json:"var_count_"`
	IDLinkCount_            *int32     `gorm:"column:id_link_count_;type:integer" json:"id_link_count_"`
	CallbackID_             *string    `gorm:"column:callback_id_;type:varchar(255)" json:"callback_id_"`
	CallbackType_           *string    `gorm:"column:callback_type_;type:varchar(255)" json:"callback_type_"`
	ReferenceID_            *string    `gorm:"column:reference_id_;type:varchar(255);index:act_idx_exec_ref_id_,priority:1" json:"reference_id_"`
	ReferenceType_          *string    `gorm:"column:reference_type_;type:varchar(255)" json:"reference_type_"`
	PropagatedStageInstID_  *string    `gorm:"column:propagated_stage_inst_id_;type:varchar(255)" json:"propagated_stage_inst_id_"`
	BusinessStatus_         *string    `gorm:"column:BUSINESS_STATUS_;type:varchar(255)" json:"business_status_"`
}

ActRuExecution mapped from table <act_ru_execution>

func (*ActRuExecution) TableName

func (*ActRuExecution) TableName() string

TableName ActRuExecution's table name

type ActRuIdentitylink struct {
	ID_                string  `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_               *int32  `gorm:"column:REV_;type:integer" json:"rev_"`
	GroupID_           *string `gorm:"column:GROUP_ID_;type:varchar(255);index:act_idx_ident_lnk_group,priority:1" json:"group_id_"`
	Type_              *string `gorm:"column:TYPE_;type:varchar(255)" json:"type_"`
	UserID_            *string `gorm:"column:USER_ID_;type:varchar(255);index:act_idx_ident_lnk_user,priority:1" json:"user_id_"`
	TaskID_            *string `gorm:"column:TASK_ID_;type:varchar(64);index:act_idx_tskass_task,priority:1" json:"task_id_"`
	ProcInstID_        *string `gorm:"column:PROC_INST_ID_;type:varchar(64);index:act_idx_idl_procinst,priority:1" json:"proc_inst_id_"`
	ProcDefID_         *string `gorm:"column:PROC_DEF_ID_;type:varchar(64);index:act_idx_athrz_procedef,priority:1" json:"proc_def_id_"`
	ScopeID_           *string `gorm:"column:scope_id_;type:varchar(255);index:act_idx_ident_lnk_scope,priority:1" json:"scope_id_"`
	SubScopeID_        *string `gorm:"column:sub_scope_id_;type:varchar(255);index:act_idx_ident_lnk_sub_scope,priority:1" json:"sub_scope_id_"`
	ScopeType_         *string `` /* 193-byte string literal not displayed */
	ScopeDefinitionID_ *string `gorm:"column:scope_definition_id_;type:varchar(255);index:act_idx_ident_lnk_scope_def,priority:2" json:"scope_definition_id_"`
}

ActRuIdentitylink mapped from table <act_ru_identitylink>

func (*ActRuIdentitylink) TableName

func (*ActRuIdentitylink) TableName() string

TableName ActRuIdentitylink's table name

type ActRuTask

type ActRuTask struct {
	ID_                    string     `gorm:"column:ID_;type:varchar(64);primaryKey" json:"id_"`
	Rev_                   *int32     `gorm:"column:REV_;type:integer" json:"rev_"`
	ExecutionID_           *string    `gorm:"column:EXECUTION_ID_;type:varchar(64);index:act_idx_task_exec,priority:1" json:"execution_id_"`
	ProcInstID_            *string    `gorm:"column:PROC_INST_ID_;type:varchar(64);index:act_idx_task_procinst,priority:1" json:"proc_inst_id_"`
	ProcDefID_             *string    `gorm:"column:PROC_DEF_ID_;type:varchar(64);index:act_idx_task_procdef,priority:1" json:"proc_def_id_"`
	TaskDefID_             *string    `gorm:"column:TASK_DEF_ID_;type:varchar(64)" json:"task_def_id_"`
	ScopeID_               *string    `gorm:"column:scope_id_;type:varchar(255);index:act_idx_task_scope,priority:1" json:"scope_id_"`
	SubScopeID_            *string    `gorm:"column:sub_scope_id_;type:varchar(255);index:act_idx_task_sub_scope,priority:1" json:"sub_scope_id_"`
	ScopeType_             *string    `` /* 178-byte string literal not displayed */
	ScopeDefinitionID_     *string    `gorm:"column:scope_definition_id_;type:varchar(255);index:act_idx_task_scope_def,priority:2" json:"scope_definition_id_"`
	PropagatedStageInstID_ *string    `gorm:"column:propagated_stage_inst_id_;type:varchar(255)" json:"propagated_stage_inst_id_"`
	Name_                  *string    `gorm:"column:NAME_;type:varchar(255)" json:"name_"`
	ParentTaskID_          *string    `gorm:"column:PARENT_TASK_ID_;type:varchar(64)" json:"parent_task_id_"`
	Description_           *string    `gorm:"column:DESCRIPTION_;type:varchar(4000)" json:"description_"`
	TaskDefKey_            *string    `gorm:"column:TASK_DEF_KEY_;type:varchar(255)" json:"task_def_key_"`
	Owner_                 *string    `gorm:"column:OWNER_;type:varchar(255)" json:"owner_"`
	Assignee_              *string    `gorm:"column:ASSIGNEE_;type:varchar(255)" json:"assignee_"`
	Delegation_            *string    `gorm:"column:DELEGATION_;type:varchar(64)" json:"delegation_"`
	Priority_              *int32     `gorm:"column:PRIORITY_;type:integer" json:"priority_"`
	CreateTime_            *time.Time `gorm:"column:CREATE_TIME_;type:timestamp without time zone;index:act_idx_task_create,priority:1" json:"create_time_"`
	DueDate_               *time.Time `gorm:"column:DUE_DATE_;type:timestamp without time zone" json:"due_date_"`
	Category_              *string    `gorm:"column:CATEGORY_;type:varchar(255)" json:"category_"`
	SuspensionState_       *int32     `gorm:"column:suspension_state_;type:integer" json:"suspension_state_"`
	TenantID_              *string    `gorm:"column:TENANT_ID_;type:varchar(255)" json:"tenant_id_"`
	FormKey_               *string    `gorm:"column:FORM_KEY_;type:varchar(255)" json:"form_key_"`
	ClaimTime_             *time.Time `gorm:"column:CLAIM_TIME_;type:timestamp without time zone" json:"claim_time_"`
	IsCountEnabled_        *bool      `gorm:"column:is_count_enabled_;type:boolean" json:"is_count_enabled_"`
	VarCount_              *int32     `gorm:"column:var_count_;type:integer" json:"var_count_"`
	IDLinkCount_           *int32     `gorm:"column:id_link_count_;type:integer" json:"id_link_count_"`
	SubTaskCount_          *int32     `gorm:"column:sub_task_count_;type:integer" json:"sub_task_count_"`
}

ActRuTask mapped from table <act_ru_task>

func (*ActRuTask) TableName

func (*ActRuTask) TableName() string

TableName ActRuTask's table name

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL