001    package com.poscoict.app.job;
002    
003    /**
004     * »σΌφ
005     */
006    public interface JobConstants
007    {
008        String VERSION = "1.2.4";
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    }