ecc.uuid as "uuid",
ecc.event_uuid as "eventUuid",
ecc.change_category as "changeCategory",
ecc.component_uuid as "componentUuid",
ecc.component_key as "componentKey",
ecc.component_name as "componentName",
ecc.component_branch_key as "componentBranchKey",
ecc.created_at as "createdAt"
INSERT INTO event_component_changes (
uuid,
event_uuid,
event_component_uuid,
event_analysis_uuid,
change_category,
component_uuid,
component_key,
component_name,
component_branch_key,
created_at
)
VALUES (
#{dto.uuid, jdbcType=VARCHAR},
#{dto.eventUuid, jdbcType=VARCHAR},
#{purgeData.componentUuid, jdbcType=VARCHAR},
#{purgeData.analysisUuid, jdbcType=VARCHAR},
#{dto.changeCategory, jdbcType=VARCHAR},
#{dto.componentUuid, jdbcType=VARCHAR},
#{dto.componentKey, jdbcType=VARCHAR},
#{dto.componentName, jdbcType=VARCHAR},
#{dto.componentBranchKey, jdbcType=VARCHAR},
#{createdAt, jdbcType=BIGINT}
)