미사용 컨트롤러 삭제.
parent
7660a9d625
commit
f29e328443
@ -1,56 +0,0 @@
|
||||
package cokr.xit.fims.sndb.web;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
|
||||
import cokr.xit.base.code.CommonCode;
|
||||
import cokr.xit.base.web.ApplicationController;
|
||||
import cokr.xit.fims.sndb.SndbQuery;
|
||||
import cokr.xit.fims.sndb.service.SndngService;
|
||||
|
||||
/**발송 대장 서비스의 웹 컨트롤러
|
||||
*
|
||||
* <p>상세 설명:
|
||||
*
|
||||
* <pre>
|
||||
* ============ 변경 이력 ============
|
||||
* 2023-08-24 JoJH 최초 작성
|
||||
* ================================
|
||||
* </pre>
|
||||
*/
|
||||
public class Sndb03Controller extends ApplicationController {
|
||||
|
||||
public static final String CLASS_URL = "/sndb/sndb03";
|
||||
|
||||
public class METHOD_URL {
|
||||
public static final String
|
||||
noticeSheetSendingMain = "/030/main.do" // 고지서 발송 현황 메인 화면
|
||||
, getNhtSndngList = "/030/list.do" // 고지서 발송 현황 목록 조회
|
||||
;
|
||||
}
|
||||
|
||||
/**발송 대장 서비스*/
|
||||
@Resource(name = "sndngService")
|
||||
private SndngService sndngService;
|
||||
|
||||
/**고지서 발송 현황 메인화면(sndb/sndb03/030-main)을 연다.
|
||||
* 조건없는 {@link #getSndngList(SndbQuery) 발송 대장 조회 결과}를 포함시킨다.
|
||||
* @return /sndb/sndb03/030-main
|
||||
*/
|
||||
public ModelAndView noticeSheetSendingMain() {
|
||||
ModelAndView mav = new ModelAndView("fims/sndb/sndb03030-main");
|
||||
|
||||
// View(jsp)에서 사용할 공통코드를 조회
|
||||
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM054");
|
||||
|
||||
return mav.addObject("pageName", "sndb03030") // View(jsp)에서 사용할 id 뒤에 붙일 suffix
|
||||
.addObject("infoPrefix", "sndng") // prefix
|
||||
.addObject("FIM054List", commonCodes.get("FIM054")) // 업무 구분 코드(TASK_SE_CD)
|
||||
;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue