feat : test
parent
8d7ac113b7
commit
6d006ec6b9
@ -0,0 +1,26 @@
|
|||||||
|
package go.kr.project.biz.minwon.indivreg.controller;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Controller
|
||||||
|
@RequestMapping("/minwon/indivreg/{sggCd}")
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Tag(name = "민원자료 개별 등록", description = "민원 신고 기관 개별 요청")
|
||||||
|
public class IndivRegController {
|
||||||
|
/**
|
||||||
|
* 개별 등록 목록 데이터 조회 (AJAX)
|
||||||
|
* @param sggCd 시군구코드
|
||||||
|
* @return 응답 데이터
|
||||||
|
*/
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
package go.kr.project.biz.minwon.indivreg.model;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
@ToString
|
||||||
|
public class MinwonIndivRegConfigVO {
|
||||||
|
|
||||||
|
private String sggCd;
|
||||||
|
|
||||||
|
private String aplyDt;
|
||||||
|
|
||||||
|
private String regSe;
|
||||||
|
|
||||||
|
private String rcptYmd;
|
||||||
|
|
||||||
|
private String listNo;
|
||||||
|
|
||||||
|
private String crdnId;
|
||||||
|
|
||||||
|
private Integer regUser;
|
||||||
|
|
||||||
|
private String regDt;
|
||||||
|
|
||||||
|
// 사용자 이름 (JOIN 시 사용)
|
||||||
|
private String flnm;
|
||||||
|
}
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
package go.kr.project.biz.minwon.indivreg.model;
|
||||||
|
|
||||||
|
import go.kr.project.system.common.model.PagingVO;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
@ToString
|
||||||
|
public class MinwonIndivRegSearchVO extends PagingVO {
|
||||||
|
|
||||||
|
// 민원 개별 등록 요청 조회
|
||||||
|
private String sggCd;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue