/**
   * 수정
   *
   * @param Dataset ds, int arg_row
   * @return
   */
  private void updateExe(Dataset ds, int arg_row) throws Exception {

    if (ds.getId().equalsIgnoreCase("dsPT_C_RES_TRAFFIC_OUT")) {

      /** **** Dataset one_row 값 전체 자동 세팅 ***** */
      Eent.setDsOnlyString(ds, arg_row); //
      String[] fields = {"SEQ", "WRT_ID", "SIDO_CODE", "INS_DT"};
      /** ****특정한 필드를 제외한 수정 ***** */
      Eent.setUPD_DT(KJFDate.getCurDatetime());
      dao.updateExcludeOnly(Eent, fields);
    }
  }