test: SecondaryMybatis 적용 테스트
parent
241fac14fa
commit
3b336408f6
@ -0,0 +1,27 @@
|
||||
package kr.xit.biz.other.mapper;
|
||||
|
||||
import kr.xit.biz.other.model.ElecnoticeDTO;
|
||||
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* description : 전자고지 파일 외부연계 mapper
|
||||
*
|
||||
* packageName : kr.xit.biz.other.mapper
|
||||
* fileName : IBizOtherMapper
|
||||
* author : seojh
|
||||
* date : 2024-01-03
|
||||
* ======================================================================
|
||||
* 변경일 변경자 변경 내용
|
||||
* ----------------------------------------------------------------------
|
||||
* 2024-01-03 seojh 최초 생성
|
||||
*
|
||||
* </pre>
|
||||
*/
|
||||
@Mapper
|
||||
public interface IBizOtherMapper {
|
||||
|
||||
List<ElecnoticeDTO.Elecnoticemst> selectElecnoticemst();
|
||||
}
|
@ -0,0 +1,122 @@
|
||||
package kr.xit.biz.other.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* description : 전자고지 파일 외부연계 DTO
|
||||
*
|
||||
* packageName : kr.xit.biz.other.model
|
||||
* fileName : ElecnoticeDTO
|
||||
* author : seojh
|
||||
* date : 2024-01-03
|
||||
* ======================================================================
|
||||
* 변경일 변경자 변경 내용
|
||||
* ----------------------------------------------------------------------
|
||||
* 2024-01-03 seojh 최초 생성
|
||||
*
|
||||
* </pre>
|
||||
*/
|
||||
public class ElecnoticeDTO {
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@SuperBuilder
|
||||
public static class Elecnoticemst {
|
||||
|
||||
/**
|
||||
* 파일 일련번호
|
||||
*/
|
||||
private String unitysndngmastrid;
|
||||
/**
|
||||
* 우편물 발송건수
|
||||
*/
|
||||
private String sndngco;
|
||||
/**
|
||||
* 발송처리상태
|
||||
*/
|
||||
private String sndngprocesssttus;
|
||||
/**
|
||||
* 등록자
|
||||
*/
|
||||
private String insuser;
|
||||
/**
|
||||
* 등록일자
|
||||
*/
|
||||
private String insdate;
|
||||
/**
|
||||
* 수정자
|
||||
*/
|
||||
private String upduser;
|
||||
/**
|
||||
* 수정일자
|
||||
*/
|
||||
private String upddate;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@SuperBuilder
|
||||
public static class Elecnoticedtl extends Elecnoticemst {
|
||||
/**
|
||||
* 우편물 일련번호
|
||||
*/
|
||||
private String unitysndngdetailid;
|
||||
/**
|
||||
* 우편물 요청일시
|
||||
*/
|
||||
private String sndngdt;
|
||||
/**
|
||||
* 우편물 발송구분
|
||||
*/
|
||||
private String tmplatid;
|
||||
/**
|
||||
* 고지차수
|
||||
*/
|
||||
private String gojidepth;
|
||||
/**
|
||||
* 기관번호
|
||||
*/
|
||||
private String taxnum1;
|
||||
/**
|
||||
* 세목
|
||||
*/
|
||||
private String taxnum2;
|
||||
/**
|
||||
* 납세년월기
|
||||
*/
|
||||
private String taxnum3;
|
||||
/**
|
||||
* 과세번호
|
||||
*/
|
||||
private String taxnum4;
|
||||
/**
|
||||
* 담당자
|
||||
*/
|
||||
private String worker;
|
||||
/**
|
||||
* 가상계좌 일련번호
|
||||
*/
|
||||
private String serialno;
|
||||
/**
|
||||
* 수신일자
|
||||
*/
|
||||
private String recvdt;
|
||||
/**
|
||||
* 열람일자
|
||||
*/
|
||||
private String readdt;
|
||||
/**
|
||||
* 발송결과코드
|
||||
*/
|
||||
private String resultcode;
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="kr.xit.biz.other.mapper.IBizOtherMapper">
|
||||
|
||||
<select id="selectElecnoticemst" resultType="kr.xit.biz.other.model.ElecnoticeDTO$Elecnoticemst">
|
||||
/** ens-other-oracle-mapper|selectElecnoticemst-전자고지 파일 외부연계 마스터 조회|seojh */
|
||||
SELECT UNITYSNDNGMASTRID
|
||||
, SNDNGCO
|
||||
, SNDNGPROCESSSTTUS
|
||||
, INSUSER
|
||||
, INSDATE
|
||||
, UPDUSER
|
||||
, UPDDATE
|
||||
FROM ELECNOTICEMST
|
||||
</select>
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue