2 Commits

Author SHA1 Message Date
f55e29f0cf Merge pull request 'modified_date -> updated_dttm 수정' (#1) from feat/modify-createdateyn-260209 into main
Reviewed-on: #1
2026-02-09 17:13:35 +09:00
2a3fa7e895 kamco-make-dataset-generation
TrainingDataReviewJobRepository.updateLearnDataGeomFileCreateYn

modified_date -> updated_dttm 수정
2026-02-09 17:11:22 +09:00

View File

@@ -118,7 +118,7 @@ public class TrainingDataReviewJobRepository {
public void updateLearnDataGeomFileCreateYn(List<Long> geoUids) { public void updateLearnDataGeomFileCreateYn(List<Long> geoUids) {
String placeholders = geoUids.stream().map(id -> "?").collect(Collectors.joining(",")); String placeholders = geoUids.stream().map(id -> "?").collect(Collectors.joining(","));
String sql = String sql =
"UPDATE tb_map_sheet_learn_data_geom SET file_create_yn = true, modified_date = NOW()" "UPDATE tb_map_sheet_learn_data_geom SET file_create_yn = true, updated_dttm = NOW()"
+ " WHERE geo_uid IN (" + " WHERE geo_uid IN ("
+ placeholders + placeholders
+ ")"; + ")";