Beispiel #1
0
  // payment re-process
  @RequestMapping(value = "/bsar/payment/reprocess", method = RequestMethod.POST)
  public @ResponseBody MessageParam pymReprocess(
      @RequestParam("lnkgPymSeqNo") String lnkgPymSeqNo) {

    int updatedRowCnt = pymProcessService.pymReprocess(lnkgPymSeqNo);

    if (updatedRowCnt == 1) {
      return new MessageParam(ResultCode.SUCCESS, "Successfully request paymemt reprocess");
    } else {
      return new MessageParam(ResultCode.SUCCESS, "Aready,");
    }
  }