Ejemplo n.º 1
0
  @RequestMapping(value = "/BoothRentFeeDelete", produces = "application/json")
  @ResponseBody
  public Map<String, Object> boothRentFeeDelete(HttpServletRequest request) throws Exception {

    Map<String, Object> model = new HashMap<String, Object>();
    int updateCnt = 0;

    String boothId = request.getParameter("boothId");
    String rentYear = request.getParameter("rentYear");
    String rentMonth = request.getParameter("rentMonth");

    updateCnt = boothRentFee.deleteRentFeeInfo(boothId, rentYear, rentMonth);
    model.put("message", updateCnt);

    return model;
  }