From 832022e019a990dc33497bfd22951b9800340dee Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Mon, 8 Sep 2025 16:49:53 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B0=80=EC=83=81=EA=B3=84=EC=A2=8C=20?= =?UTF-8?q?=EC=9D=80=ED=96=89:=20'=EC=A0=84=EC=9A=A9=EA=B3=84=EC=A2=8C'=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sntris/fileoffer/Ye22NoticeReader.java | 30 +++++++++++-------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeReader.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeReader.java index 36e4c84..80efb0e 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeReader.java +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeReader.java @@ -160,21 +160,25 @@ public class Ye22NoticeReader extends AbstractComponent { new Field("물건지상세주소", null), new Field("최초부과자", null), new Field("납세번호", (notice, str) -> notice.setNapseNo(str)), - new Field("전용계좌(우리)", (notice, str) -> notice.setWAccountNo(str)), - new Field("전용계좌(신한)", (notice, str) -> notice.setSAccountNo(str)), - new Field("전용계좌(하나)", (notice, str) -> notice.setHAccountNo(str)), - new Field("전용계좌(국민)", (notice, str) -> notice.setKAccountNo(str)), - new Field("전용계좌(기업)", (notice, str) -> notice.setIAccountNo(str)), + + new Field("우리", (notice, str) -> notice.setWAccountNo(str)), + new Field("신한", (notice, str) -> notice.setSAccountNo(str)), + new Field("하나", (notice, str) -> notice.setHAccountNo(str)), + new Field("국민", (notice, str) -> notice.setKAccountNo(str)), + new Field("기업", (notice, str) -> notice.setIAccountNo(str)), + new Field("거소지주소", null), new Field("전자납부번호", (notice, str) -> notice.setEnapbuNo(str)), - new Field("전용계좌(우체국)", (notice, str) -> notice.setPAccountNo(str)), - new Field("전용계좌(외환)", null), - new Field("전용계좌(씨티)", (notice, str) -> notice.setCAccountNo(str)), - new Field("전용계좌(농협)", (notice, str) -> notice.setNAccountNo(str)), - new Field("전용계좌(수협)", (notice, str) -> notice.setFAccountNo(str)), - new Field("전용계좌(카카오)", (notice, str) -> notice.setOAccountNo(str)), - new Field("전용계좌(k뱅크)", (notice, str) -> notice.setQAccountNo(str)), - new Field("전용계좌(토스뱅크)", null), + + new Field("우체국", (notice, str) -> notice.setPAccountNo(str)), + new Field("외환", null), + new Field("씨티", (notice, str) -> notice.setCAccountNo(str)), + new Field("농협", (notice, str) -> notice.setNAccountNo(str)), + new Field("수협", (notice, str) -> notice.setFAccountNo(str)), + new Field("카카오", (notice, str) -> notice.setOAccountNo(str)), + new Field("k뱅크", (notice, str) -> notice.setQAccountNo(str)), + new Field("토스뱅크", null), + new Field("사업자번호(부가가치세)", null), new Field("시구코드", (notice, str) -> notice.setSiguCd(str)), new Field("시구명", (notice, str) -> notice.setSiguNm(str)),