}
@RequestMapping(value = "/comment/remove/ATC_NO/{atcNo}/CMT_SEQ/{cmtSeq}", method = RequestMethod.GET)
@ResponseBody
public String commentRemove(@PathVariable String atcNo, @PathVariable int cmtSeq) {
Comment comment = new Comment();
comment.setAtcNo(atcNo);
comment.setCmtSeq(cmtSeq);
boardBO.removeComment(comment);
return "SUCCESS";
}