diff --git a/src/main/java/go/kr/project/carInspectionPenalty/search/CarInspectionPenaltyController.java b/src/main/java/go/kr/project/carInspectionPenalty/search/CarInspectionPenaltyController.java new file mode 100644 index 0000000..a24623b --- /dev/null +++ b/src/main/java/go/kr/project/carInspectionPenalty/search/CarInspectionPenaltyController.java @@ -0,0 +1,27 @@ +package go.kr.project.carInspectionPenalty.search; + +import egovframework.constant.TilesConstants; +import go.kr.project.common.service.CommonCodeService; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; + +@Controller +@RequestMapping("/carInspectionPenalty/search") +@RequiredArgsConstructor +@Slf4j +public class CarInspectionPenaltyController { + + private final CommonCodeService commonCodeService; + + @GetMapping("/list.do") + public String list( Model model ) { + + return "carInspectionPenalty/search/list" + TilesConstants.BASE; + } + + +} \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/views/carInspectionPenalty/search/list.jsp b/src/main/webapp/WEB-INF/views/carInspectionPenalty/search/list.jsp new file mode 100644 index 0000000..f07f8ac --- /dev/null +++ b/src/main/webapp/WEB-INF/views/carInspectionPenalty/search/list.jsp @@ -0,0 +1,148 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> +<%@ taglib prefix="dateUtil" uri="http://egovframework.go.kr/functions/date-util" %> + + +
+
+
+
+
+ + + +
+
+
+
+
+
    +
  • 단속 년도
  • +
  • + +
  • +
+
    +
  • +
  • +
+
+
+
+
+
+
    +
  • 단속 목록
  • +
  • + + + 총 0건 + + / Pages +
  • +
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file