Merge pull request '추론도엽관리 - 자동추론 제외 상태 추가' (#342) from feat/infer_dev_260107 into develop
Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/342
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user