변화탐지 API 커밋, 에러로그 진행중

This commit is contained in:
2025-11-28 18:05:36 +09:00
parent 9a06955e32
commit 55564cfce6
11 changed files with 259 additions and 73 deletions

View File

@@ -0,0 +1,34 @@
package com.kamco.cd.kamcoback.postgres.entity;
import com.kamco.cd.kamcoback.common.utils.interfaces.JsonFormatDttm;
import jakarta.persistence.*;
import java.time.ZonedDateTime;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@Table(name = "demo_learning_analysis_scene_item")
@Entity
public class DemoLearningAnalysisSceneItemEntity {
@Id
@GeneratedValue(
strategy = GenerationType.SEQUENCE,
generator = "demo_learning_analysis_scene_item_group_item_id_gen")
@SequenceGenerator(
name = "demo_learning_analysis_scene_item_group_item_id_gen",
sequenceName = "demo_learning_analysis_scene_item_group_item_id_seq",
allocationSize = 1)
@Column(name = "group_item_id", nullable = false)
private Long id;
@Column(name = "group_id")
private Long groupId;
@Column(name = "fid")
private Long fid;
@JsonFormatDttm
@Column(name = "created_dttm")
private ZonedDateTime createdDttm;
}