feat : 팝업(개별총정보) 공통화 구상중.
parent
9d17f4c2dd
commit
f6d448ecf3
@ -0,0 +1,17 @@
|
||||
package go.kr.project.biz.totalInfo.controller;
|
||||
|
||||
import egovframework.constant.TilesConstants;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
|
||||
@Controller
|
||||
@RequiredArgsConstructor
|
||||
public class TotalInfoController {
|
||||
|
||||
@GetMapping("/total/info.do")
|
||||
public String totalInfoViewPopup(){
|
||||
|
||||
return "biz/totalInfo/totalInfo_popup" + TilesConstants.POPUP;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
<%--
|
||||
Created by IntelliJ IDEA.
|
||||
User: kurt
|
||||
Date: 2025. 7. 31.
|
||||
Time: 오후 5:34
|
||||
To change this template use File | Settings | File Templates.
|
||||
--%>
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
<html>
|
||||
<head>
|
||||
<title>개별총정보</title>
|
||||
</head>
|
||||
<body>
|
||||
요거슨 개별총정보
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue