001package com.poscoict.app.job;
002
003/**
004 * 상수
005 */
006public interface JobConstants
007{
008    String VERSION = "2.1.2";
009    String JOB_REQUEST_ID = "_Job_RequestID";
010    String SQL_PGM_START = "update SCHEDULE_JOB_HISTORY set PGM_START=CURRENT_TIMESTAMP, STATUS=?, PROCESS_ID=? where HISTORY_ID=?";
011    String SQL_PGM_END = "update SCHEDULE_JOB_HISTORY set PGM_END=CURRENT_TIMESTAMP, PGM_TIME=?, STATUS=?, PROCESS_ID=null where HISTORY_ID=?";
012}