spotless 적용

This commit is contained in:
2026-01-05 10:17:24 +09:00
parent 4cea4bb2ed
commit 829cb510e3
3 changed files with 81 additions and 84 deletions

View File

@@ -25,8 +25,13 @@ import org.hibernate.type.SqlTypes;
public class MapSheetAnalInferenceEntity {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "tb_map_sheet_anal_inference_id_gen")
@SequenceGenerator(name = "tb_map_sheet_anal_inference_id_gen", sequenceName = "tb_map_sheet_anal_inference_uid", allocationSize = 1)
@GeneratedValue(
strategy = GenerationType.SEQUENCE,
generator = "tb_map_sheet_anal_inference_id_gen")
@SequenceGenerator(
name = "tb_map_sheet_anal_inference_id_gen",
sequenceName = "tb_map_sheet_anal_inference_uid",
allocationSize = 1)
@Column(name = "anal_uid", nullable = false)
private Long id;
@@ -144,5 +149,4 @@ public class MapSheetAnalInferenceEntity {
@Column(name = "stage")
private Integer stage;
}