Ejemplo n.º 1
0
 @RequestMapping(value = "/updateTvContentUrl")
 public String updateTvContentUrl(TvContent tvContent) {
   Tv tv = tvService.selectTvByTvNo(tvContent.getTvNo());
   int result = tvService.updateTvContentUrl(tvContent);
   return "redirect:/tvContentList?tvNo=" + tvContent.getTvNo();
 }