추론도엽관리 - 자동추론 제외 상태 추가

This commit is contained in:
2026-01-26 12:06:17 +09:00
parent 1a4371ead3
commit 22824240c7
2 changed files with 3 additions and 2 deletions

View File

@@ -25,7 +25,8 @@ public enum CommonUseStatus implements EnumType {
EXCEPT("EXCEPT", "영구 추론제외", 200) EXCEPT("EXCEPT", "영구 추론제외", 200)
/** Explicitly excluded from use or processing */ /** Explicitly excluded from use or processing */
, ,
NOT_USE("NOT_USE", "사용안", 999) AUTO_EXCEPT("AUTO_EXCEPT", "자동추론 제외", 300),
NOT_USE("NOT_USE", "사용안함", 999)
/** Not used or disabled */ /** Not used or disabled */
; ;
// @formatter:on // @formatter:on

View File

@@ -261,7 +261,7 @@ public class MapSheetMngFileJobRepositoryImpl extends QuerydslRepositorySupport
long updateCount = long updateCount =
queryFactory queryFactory
.update(mapInkx5kEntity) .update(mapInkx5kEntity)
.set(mapInkx5kEntity.useInference, CommonUseStatus.EXCEPT) .set(mapInkx5kEntity.useInference, CommonUseStatus.AUTO_EXCEPT)
.where(mapInkx5kEntity.mapidcdNo.eq(mapSheetNum)) .where(mapInkx5kEntity.mapidcdNo.eq(mapSheetNum))
.execute(); .execute();
} }