2023-07-10 11:54:06 +09:00

16 lines
494 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# バッチ正常終了コード
BATCH_EXIT_CODE_SUCCESS = 0
# バッチ処理中フラグ:未処理
BATCH_ACTF_BATCH_UNPROCESSED = '0'
# バッチ処理中フラグ:処理中
BATCH_ACTF_BATCH_IN_PROCESSING = '1'
# dump取得状態区分未処理
DUMP_STATUS_KBN_UNPROCESSED = '0'
# dump取得状態区分処理中
DUMP_STATUS_KBN_PROCESSED = '1'
# dump取得状態区分正常終了
DUMP_STATUS_KBN_COMPLETE = '2'
# dump取得状態区分エラー
DUMP_STATUS_KBN_ERROR = '9'