From 124a9558ca2acbcf0deee483c41eec0cc93acd1f Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Tue, 25 Mar 2025 18:13:21 +0900 Subject: [PATCH] =?UTF-8?q?prenotice,=20fileoffer=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xit/interfaces/sntris/Descriptor.java | 97 + .../cokr/xit/interfaces/sntris/Sntris.java | 50 + .../xit/interfaces/sntris/SntrisWSDTO.java | 18 + .../sntris/{buga => }/StatusCodeWSDTO.java | 48 +- .../sntris/buga/Bu04BugaExtWSDTO.java | 2615 +++-------------- .../interfaces/sntris/buga/Bu04BugaWSDTO.java | 805 ++--- .../sntris/buga/Bu04GyuljeInfoDTO.java | 57 +- .../sntris/buga/Bu04SemokWSDTO.java | 101 +- .../sntris/buga/Bu04SemokWSRACSDTO.java | 318 +- .../sntris/buga/Bu04SimpleBugaETCWSDTO.java | 619 ++-- .../sntris/buga/Bu04SimpleBugaWSDTO.java | 279 +- .../sntris/buga/Bu04UserInfoWSDTO.java | 50 +- .../xit/interfaces/sntris/buga/BugaWS.java | 57 +- .../interfaces/sntris/buga/BugaWSProxy.java | 2 + .../sntris/buga/BugaWSSoapBindingStub.java | 239 +- .../sntris/buga/BugaWebService.java | 8 +- .../sntris/buga/BugaWebServiceLocator.java | 58 +- .../interfaces/sntris/buga/Descriptor.java | 76 - .../interfaces/sntris/dao/SntrisMapper.java | 27 - .../sntris/fileoffer/SntrFileOfferWS.java | 14 + .../fileoffer/SntrFileOfferWSBindingStub.java | 299 ++ .../fileoffer/SntrFileOfferWSProxy.java | 68 + .../fileoffer/SntrFileOfferWebService.java | 20 + .../SntrFileOfferWebServiceLocator.java | 154 + .../sntris/fileoffer/Ye22ChenapDTO.java | 1459 +++++++++ .../sntris/fileoffer/Ye22GwaseInfoDTO.java | 1239 ++++++++ .../sntris/fileoffer/Ye22InputDTO.java | 299 ++ .../sntris/fileoffer/Ye22NoticeInfoDTO.java | 1695 +++++++++++ .../sntris/fileoffer/Ye22SunapDTO.java | 1499 ++++++++++ .../sntris/prenotice/Bu18WebPreNoticeDTO.java | 768 +++++ .../prenotice/Bu18WebReturnInfoDTO.java | 501 ++++ .../prenotice/Bu18WebReturnResultDTO.java | 177 ++ .../sntris/prenotice/Bu18WebSMSResultDTO.java | 180 ++ .../sntris/prenotice/SntrPreNoticeWS.java | 14 + .../prenotice/SntrPreNoticeWSBindingStub.java | 257 ++ .../prenotice/SntrPreNoticeWSProxy.java | 65 + .../prenotice/SntrPreNoticeWebService.java | 20 + .../SntrPreNoticeWebServiceLocator.java | 147 + .../sntris/service/SntrisService.java | 136 +- .../service/bean/SntrisServiceBean.java | 136 +- .../sntris/web/SntrisController.java | 162 +- src/main/resources/intf-conf/xit-sntris.conf | 21 +- 42 files changed, 10413 insertions(+), 4441 deletions(-) create mode 100644 src/main/java/cokr/xit/interfaces/sntris/Descriptor.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/Sntris.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/SntrisWSDTO.java rename src/main/java/cokr/xit/interfaces/sntris/{buga => }/StatusCodeWSDTO.java (76%) delete mode 100644 src/main/java/cokr/xit/interfaces/sntris/buga/Descriptor.java delete mode 100644 src/main/java/cokr/xit/interfaces/sntris/dao/SntrisMapper.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWS.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSBindingStub.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSProxy.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebService.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebServiceLocator.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22ChenapDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22GwaseInfoDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22InputDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeInfoDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22SunapDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebPreNoticeDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnResultDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebSMSResultDTO.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWS.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSBindingStub.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSProxy.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebService.java create mode 100644 src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebServiceLocator.java diff --git a/src/main/java/cokr/xit/interfaces/sntris/Descriptor.java b/src/main/java/cokr/xit/interfaces/sntris/Descriptor.java new file mode 100644 index 0000000..16f8113 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/Descriptor.java @@ -0,0 +1,97 @@ +package cokr.xit.interfaces.sntris; + +import java.util.List; +import java.util.function.Function; + +import javax.xml.namespace.QName; + +import org.apache.axis.constants.Style; +import org.apache.axis.constants.Use; +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.OperationDesc; +import org.apache.axis.description.ParameterDesc; +import org.apache.axis.description.TypeDesc; + +import cokr.xit.foundation.AbstractComponent; + +public class Descriptor extends AbstractComponent { + private String urn; + + public Descriptor(String urn) { + this.urn = urn; + } + + public QName qname(String name) { + return qname(urn, name); + } + + public QName qname(String urn, String name) { + return new QName(!isEmpty(urn) ? "urn:" + urn : "", name); + } + + private static final List types = List.of("string", "int", "long", "double"); + + public QName oftype(String typeName) { + String str = typeName.toLowerCase().replace("[]", ""); + + return types.contains(str) ? + new QName("http://www.w3.org/2001/XMLSchema", str) : + qname(typeName); + } + + public TypeDesc type(Class klass, Function fields) { + TypeDesc typeDesc = new TypeDesc(klass, true); + typeDesc.setXmlType(qname(klass.getSimpleName())); + + if (fields != null) + for (ElementDesc field: fields.apply(this)) + typeDesc.addFieldDesc(field); + + return typeDesc; + } + + public ElementDesc field(String name, String type, boolean nullable) { + return field(name, qname(name), type, nullable); + } + + public ElementDesc field(String name, QName qname, String type, boolean nullable) { + ElementDesc elemField = new ElementDesc(); + elemField.setFieldName(name); + elemField.setXmlName(qname); + elemField.setXmlType(oftype(type)); + elemField.setNillable(nullable); + return elemField; + } + + public ParameterDesc param(String name, Class klass, boolean nullable) { + return param(qname(name), klass, nullable); + } + + public ParameterDesc param(QName name, Class klass, boolean nullable) { + String type = klass.getSimpleName(); + if (List.of("String").contains(type)) + type = type.toLowerCase(); + + ParameterDesc param = new ParameterDesc(name, ParameterDesc.IN, oftype(type), klass, false, false); + param.setNillable(nullable); + return param; + } + + public OperationDesc operation(String name, Class returnType, QName returnName, Function params) { + OperationDesc oper = new OperationDesc(); + oper.setName(name); + + if (params != null) + for (ParameterDesc param: params.apply(this)) + oper.addParameter(param); + + String type = returnType.getSimpleName(); + oper.setReturnType(oftype(type)); + oper.setReturnClass(returnType); + oper.setReturnQName(returnName); + oper.setStyle(Style.WRAPPED); + oper.setUse(Use.LITERAL); + + return oper; + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/Sntris.java b/src/main/java/cokr/xit/interfaces/sntris/Sntris.java new file mode 100644 index 0000000..4bdd349 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/Sntris.java @@ -0,0 +1,50 @@ +package cokr.xit.interfaces.sntris; + +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; + +import org.springframework.core.io.ClassPathResource; + +import cokr.xit.foundation.AbstractComponent; +import cokr.xit.foundation.data.DataObject; +import cokr.xit.foundation.data.JSON; + +public class Sntris extends AbstractComponent { + private static final Sntris sntris; + + static { + try { + sntris = new JSON().parse(new ClassPathResource("intf-conf/xit-sntris.conf").getInputStream(), Sntris.class); + } catch (Exception e) { + throw runtimeException(e); + } + } + + public static Sntris get() { + return sntris; + } + + private String host; + private Map apis; + + + public void setHost(String host) { + this.host = host; + } + + public DataObject api(String name) { + return apis.get(name); + } + + public void setApis(List apis) { + this.apis = apis.stream().collect(Collectors.toMap(api -> api.string("name"), api -> api)); + } + + public String url(String name) { + DataObject api = api(name); + String uri = blankIfEmpty(api.string("uri")); + + return uri.startsWith("http") ? uri : blankIfEmpty(host) + uri; + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/SntrisWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/SntrisWSDTO.java new file mode 100644 index 0000000..7923310 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/SntrisWSDTO.java @@ -0,0 +1,18 @@ +package cokr.xit.interfaces.sntris; + +import java.io.Serializable; + +import cokr.xit.foundation.AbstractComponent; + +public class SntrisWSDTO extends AbstractComponent implements Serializable { + private static final long serialVersionUID = 1L; + + protected int hashCode(Object... vals) { + int result = 1; + for (Object val: vals) { + if (val == null) continue; + result += val.hashCode(); + } + return result; + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/StatusCodeWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/StatusCodeWSDTO.java similarity index 76% rename from src/main/java/cokr/xit/interfaces/sntris/buga/StatusCodeWSDTO.java rename to src/main/java/cokr/xit/interfaces/sntris/StatusCodeWSDTO.java index 1758752..1dd6342 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/StatusCodeWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/StatusCodeWSDTO.java @@ -1,14 +1,4 @@ -package cokr.xit.interfaces.sntris.buga; - -import java.io.Serializable; - -import javax.xml.namespace.QName; - -import org.apache.axis.description.TypeDesc; -import org.apache.axis.encoding.Deserializer; -import org.apache.axis.encoding.Serializer; -import org.apache.axis.encoding.ser.BeanDeserializer; -import org.apache.axis.encoding.ser.BeanSerializer; +package cokr.xit.interfaces.sntris; /** * @Class Name : StatusCodeWSDTO.java @@ -21,7 +11,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class StatusCodeWSDTO implements Serializable { +public class StatusCodeWSDTO extends SntrisWSDTO { private static final long serialVersionUID = 1L; private String errorCode; @@ -126,23 +116,12 @@ public class StatusCodeWSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.errorCode==null && other.getErrorCode()==null) || - (this.errorCode!=null && - this.errorCode.equals(other.getErrorCode()))) && - ((this.errorMsg==null && other.getErrorMsg()==null) || - (this.errorMsg!=null && - this.errorMsg.equals(other.getErrorMsg()))) && - ((this.insertAk==null && other.getInsertAk()==null) || - (this.insertAk!=null && - this.insertAk.equals(other.getInsertAk()))) && - ((this.insertKey==null && other.getInsertKey()==null) || - (this.insertKey!=null && - this.insertKey.equals(other.getInsertKey()))) && - ((this.resultCnt==null && other.getResultCnt()==null) || - (this.resultCnt!=null && - this.resultCnt.equals(other.getResultCnt()))); + boolean _equals = + equals(this.errorCode, other.getErrorCode()) && + equals(this.errorMsg, other.getErrorMsg()) && + equals(this.insertAk, other.getInsertAk()) && + equals(this.insertKey, other.getInsertKey()) && + equals(this.resultCnt, other.getResultCnt()); __equalsCalc = null; return _equals; } @@ -173,8 +152,7 @@ public class StatusCodeWSDTO implements Serializable { __hashCodeCalc = false; return _hashCode; } - - // Type metadata +/* private static TypeDesc typeDesc = Descriptor.type( StatusCodeWSDTO.class, Descriptor.field("errorCode", "string", true), @@ -184,24 +162,18 @@ public class StatusCodeWSDTO implements Serializable { Descriptor.field("resultCnt", "string", true) ); - /**Return type metadata object - */ public static TypeDesc getTypeDesc() { return typeDesc; } - /**Get Custom Serializer - */ public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { return new BeanSerializer(_javaType, _xmlType, typeDesc); } - /**Get Custom Deserializer - */ public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { return new BeanDeserializer(_javaType, _xmlType, typeDesc); } - +*/ @Override public String toString() { return "StatusCodeWSDTO [errorCode=" + errorCode + ", errorMsg=" + errorMsg + ", insertAk=" + insertAk diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaExtWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaExtWSDTO.java index 4fc2100..0d070f6 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaExtWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaExtWSDTO.java @@ -1,9 +1,8 @@ package cokr.xit.interfaces.sntris.buga; -import java.io.Serializable; - import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; @@ -18,139 +17,13 @@ import org.apache.axis.encoding.ser.BeanSerializer; * 수정일 수정자 수정내용 * ------- ------------- ---------------------- * + * Bu04BugaWSDTO + (hriCd, mulCd, reserve01 ~ reserve10) */ -public class Bu04BugaExtWSDTO implements Serializable { +public class Bu04BugaExtWSDTO extends Bu04BugaWSDTO { private static final long serialVersionUID = 1L; - /** 비고 */ - private String bigo; - /** 대장번호 */ - private String bookNo; - /** 분할횟수 */ - private long bunhalCnt; - /** 부서코드 */ - private String buseoCd; - /** 기타1 */ - private String etc1; - /** 가산금면제유무 */ - private String gasanAmtSkipGubun; - /** 가산율구분 */ - private String gasanRateGubun; - /** 기금 */ - private long gigum; - /** 기금가산금 */ - private long gigumGasanAmt; - /** 기금이자 */ - private long gigumIja; - /** 국세 */ - private long gukse; - /** 국세가산금 */ - private long gukseGasanAmt; - /** 국세이자 */ - private long gukseIja; - /** 구세 */ - private long guse; - /** 구세가산금 */ - private long guseGasanAmt; - /** 구세이자 */ - private long guseIja; - /** 항목1 */ - private String hangmok1; - /** 항목2 */ - private String hangmok2; - /** 항목3 */ - private String hangmok3; - /** 항목4 */ - private String hangmok4; - /** 항목5 */ - private String hangmok5; - /** 항목6 */ - private String hangmok6; - /** 행정동코드 */ - private String hdongCd; private String hriCd; - /** 최종작업날짜 */ - private String lastWorkDate; - /** 최종작업자ID */ - private String lastWorkId; - /** 물건아파트명 */ - private String mulAptNm; - /** 물건반 */ - private String mulBan; - /** 물건법정동리코드 */ - private String mulBdongriCd; - /** 물건본번 */ - private String mulBon; - /** 물건부번 */ - private String mulBu; - private String mulCd; - /** 물건동 */ - private String mulDong; - /** 물건상세주소 */ - private String mulDtlAddr; - /** 물건구분 */ - private String mulGubun; - /** 물건호 */ - private String mulHosu; - /** 물건명 */ - private String mulNm; - /** 물건OCR시구코드 */ - private String mulOcrSiguCd; - /** 물건특수지코드 */ - private String mulSpcCd; - /** 물건통 */ - private String mulTong; - /** 물건우편번호주소 */ - private String mulZipAddr; - /** 물건우편번호 */ - private String mulZipCd; - /* 도로명 건물본번 */ - private String napBldBon; - /* 도로명 건물부번 */ - private String napBldBu; - /** 납세자 도로명 상세주소 */ - private String napDdtlAddr; - /** 납세자 도로명 주소 */ - private String napDoroAddr; - /** 납세자 도로명 주소 코드 */ - private String napDoroCd; - /** 납세자 도로명 참고항목 */ - private String napDrefAddr; - /** 납세자 상세주소 */ - private String napDtlAddr; - /** 납세자 우편주소 */ - private String napDzipAddr; - /** 납세자 우편번호 */ - private String napDzipCd; - /** 납세자 EMAIL */ - private String napEmail; - /** 납세자 구분 */ - private String napGubun; - /** 납세자 ID */ - private String napId; - /** 납세자 휴대폰번호 */ - private String napMobilNo; - /** 납세자명 */ - private String napNm; - /** 납세자전화번호 */ - private String napTelNo; - /** 납세자 도로명 지하여부 */ - private String napUndYn; - /** 납세자 우편번호 주소 */ - private String napZipAddr; - /** 납세자 우편번호 */ - private String napZipCd; - /** 납부일자 */ - private String napbuYmd; - /** 납기후일자 */ - private String napgiAftYmd; - /** 납기일자 */ - private String napgiYmd; - /** ocr 부서코드 */ - private String ocrBuseoCd; - /** ocr 시구코드 */ - private String ocrSiguCd; private String reserve01; private String reserve02; private String reserve03; @@ -161,54 +34,6 @@ public class Bu04BugaExtWSDTO implements Serializable { private String reserve08; private String reserve09; private String reserve10; - /** 거주상태 */ - private String resideStatus; - /** row상태 */ - private String rowStatus; - /** 세목코드 */ - private String semokCd; - /** 발송일자 */ - private String sendYmd; - /** 시도코드 */ - private String sidoCd; - /** 시구코드 */ - private String siguCd; - /** 시세 */ - private long sise; - /** 시세가산금 */ - private long siseGasanAmt; - /** 시세이자 */ - private long siseIja; - /** 소관 부서코드 */ - private String sokwanBuseoCd; - /** 소관 담당자 이름 */ - private String sokwanMgrNm; - /** 소관 담당자 전화번호 */ - private String sokwanTelNo; - /** 특별이율 */ - private double specialRate; - /** 특별이율 적용건수 */ - private long specialRateApplyCnt; - /** 특별이율 적용사유 */ - private String specialRateApplySayu; - /** 특별이율 적용상한율 */ - private double specialRateHighRate; - /** 수납 부서코드 */ - private String suBuseoCd; - /** 시스템 구분 */ - private String sysGubun; - /** 과세금액 */ - private long taxAmt; - /** 과세구분 */ - private String taxGubun; - /** 과세번호 */ - private String taxNo; - /** 과세연월 */ - private String taxYm; - /** 과세일자 */ - private String taxYmd; - /** 부가세 */ - private long vatAmt; public Bu04BugaExtWSDTO() {} @@ -313,71 +138,97 @@ public class Bu04BugaExtWSDTO implements Serializable { String taxYmd, long vatAmt ) { - this.bigo = bigo; - this.bookNo = bookNo; - this.bunhalCnt = bunhalCnt; - this.buseoCd = buseoCd; - this.etc1 = etc1; - this.gasanAmtSkipGubun = gasanAmtSkipGubun; - this.gasanRateGubun = gasanRateGubun; - this.gigum = gigum; - this.gigumGasanAmt = gigumGasanAmt; - this.gigumIja = gigumIja; - this.gukse = gukse; - this.gukseGasanAmt = gukseGasanAmt; - this.gukseIja = gukseIja; - this.guse = guse; - this.guseGasanAmt = guseGasanAmt; - this.guseIja = guseIja; - this.hangmok1 = hangmok1; - this.hangmok2 = hangmok2; - this.hangmok3 = hangmok3; - this.hangmok4 = hangmok4; - this.hangmok5 = hangmok5; - this.hangmok6 = hangmok6; - this.hdongCd = hdongCd; + super( + bigo, + bookNo, + bunhalCnt, + buseoCd, + etc1, + gasanAmtSkipGubun, + gasanRateGubun, + gigum, + gigumGasanAmt, + gigumIja, + gukse, + gukseGasanAmt, + gukseIja, + guse, + guseGasanAmt, + guseIja, + hangmok1, + hangmok2, + hangmok3, + hangmok4, + hangmok5, + hangmok6, + hdongCd, + lastWorkDate, + lastWorkId, + mulAptNm, + mulBan, + mulBdongriCd, + mulBon, + mulBu, + mulDong, + mulDtlAddr, + mulGubun, + mulHosu, + mulNm, + mulOcrSiguCd, + mulSpcCd, + mulTong, + mulZipAddr, + mulZipCd, + napBldBon, + napBldBu, + napDdtlAddr, + napDoroAddr, + napDoroCd, + napDrefAddr, + napDtlAddr, + napDzipAddr, + napDzipCd, + napEmail, + napGubun, + napId, + napMobilNo, + napNm, + napTelNo, + napUndYn, + napZipAddr, + napZipCd, + napbuYmd, + napgiAftYmd, + napgiYmd, + ocrBuseoCd, + ocrSiguCd, + resideStatus, + rowStatus, + semokCd, + sendYmd, + sidoCd, + siguCd, + sise, + siseGasanAmt, + siseIja, + sokwanBuseoCd, + sokwanMgrNm, + sokwanTelNo, + specialRate, + specialRateApplyCnt, + specialRateApplySayu, + specialRateHighRate, + suBuseoCd, + sysGubun, + taxAmt, + taxGubun, + taxNo, + taxYm, + taxYmd, + vatAmt + ); this.hriCd = hriCd; - this.lastWorkDate = lastWorkDate; - this.lastWorkId = lastWorkId; - this.mulAptNm = mulAptNm; - this.mulBan = mulBan; - this.mulBdongriCd = mulBdongriCd; - this.mulBon = mulBon; - this.mulBu = mulBu; this.mulCd = mulCd; - this.mulDong = mulDong; - this.mulDtlAddr = mulDtlAddr; - this.mulGubun = mulGubun; - this.mulHosu = mulHosu; - this.mulNm = mulNm; - this.mulOcrSiguCd = mulOcrSiguCd; - this.mulSpcCd = mulSpcCd; - this.mulTong = mulTong; - this.mulZipAddr = mulZipAddr; - this.mulZipCd = mulZipCd; - this.napBldBon = napBldBon; - this.napBldBu = napBldBu; - this.napDdtlAddr = napDdtlAddr; - this.napDoroAddr = napDoroAddr; - this.napDoroCd = napDoroCd; - this.napDrefAddr = napDrefAddr; - this.napDtlAddr = napDtlAddr; - this.napDzipAddr = napDzipAddr; - this.napDzipCd = napDzipCd; - this.napEmail = napEmail; - this.napGubun = napGubun; - this.napId = napId; - this.napMobilNo = napMobilNo; - this.napNm = napNm; - this.napTelNo = napTelNo; - this.napUndYn = napUndYn; - this.napZipAddr = napZipAddr; - this.napZipCd = napZipCd; - this.napbuYmd = napbuYmd; - this.napgiAftYmd = napgiAftYmd; - this.napgiYmd = napgiYmd; - this.ocrBuseoCd = ocrBuseoCd; - this.ocrSiguCd = ocrSiguCd; this.reserve01 = reserve01; this.reserve02 = reserve02; this.reserve03 = reserve03; @@ -388,352 +239,6 @@ public class Bu04BugaExtWSDTO implements Serializable { this.reserve08 = reserve08; this.reserve09 = reserve09; this.reserve10 = reserve10; - this.resideStatus = resideStatus; - this.rowStatus = rowStatus; - this.semokCd = semokCd; - this.sendYmd = sendYmd; - this.sidoCd = sidoCd; - this.siguCd = siguCd; - this.sise = sise; - this.siseGasanAmt = siseGasanAmt; - this.siseIja = siseIja; - this.sokwanBuseoCd = sokwanBuseoCd; - this.sokwanMgrNm = sokwanMgrNm; - this.sokwanTelNo = sokwanTelNo; - this.specialRate = specialRate; - this.specialRateApplyCnt = specialRateApplyCnt; - this.specialRateApplySayu = specialRateApplySayu; - this.specialRateHighRate = specialRateHighRate; - this.suBuseoCd = suBuseoCd; - this.sysGubun = sysGubun; - this.taxAmt = taxAmt; - this.taxGubun = taxGubun; - this.taxNo = taxNo; - this.taxYm = taxYm; - this.taxYmd = taxYmd; - this.vatAmt = vatAmt; - } - - /**Gets the bigo value for this Bu04BugaExtWSDTO. - * @return bigo - */ - public String getBigo() { - return bigo; - } - - /**Sets the bigo value for this Bu04BugaExtWSDTO. - * @param bigo - */ - public void setBigo(String bigo) { - this.bigo = bigo; - } - - /**Gets the bookNo value for this Bu04BugaExtWSDTO. - * @return bookNo - */ - public String getBookNo() { - return bookNo; - } - - /**Sets the bookNo value for this Bu04BugaExtWSDTO. - * @param bookNo - */ - public void setBookNo(String bookNo) { - this.bookNo = bookNo; - } - - /**Gets the bunhalCnt value for this Bu04BugaExtWSDTO. - * @return bunhalCnt - */ - public long getBunhalCnt() { - return bunhalCnt; - } - - /**Sets the bunhalCnt value for this Bu04BugaExtWSDTO. - * @param bunhalCnt - */ - public void setBunhalCnt(long bunhalCnt) { - this.bunhalCnt = bunhalCnt; - } - - /**Gets the buseoCd value for this Bu04BugaExtWSDTO. - * @return buseoCd - */ - public String getBuseoCd() { - return buseoCd; - } - - /**Sets the buseoCd value for this Bu04BugaExtWSDTO. - * @param buseoCd - */ - public void setBuseoCd(String buseoCd) { - this.buseoCd = buseoCd; - } - - /**Gets the etc1 value for this Bu04BugaExtWSDTO. - * @return etc1 - */ - public String getEtc1() { - return etc1; - } - - /**Sets the etc1 value for this Bu04BugaExtWSDTO. - * @param etc1 - */ - public void setEtc1(String etc1) { - this.etc1 = etc1; - } - - /**Gets the gasanAmtSkipGubun value for this Bu04BugaExtWSDTO. - * @return gasanAmtSkipGubun - */ - public String getGasanAmtSkipGubun() { - return gasanAmtSkipGubun; - } - - /**Sets the gasanAmtSkipGubun value for this Bu04BugaExtWSDTO. - * @param gasanAmtSkipGubun - */ - public void setGasanAmtSkipGubun(String gasanAmtSkipGubun) { - this.gasanAmtSkipGubun = gasanAmtSkipGubun; - } - - /**Gets the gasanRateGubun value for this Bu04BugaExtWSDTO. - * @return gasanRateGubun - */ - public String getGasanRateGubun() { - return gasanRateGubun; - } - - /**Sets the gasanRateGubun value for this Bu04BugaExtWSDTO. - * @param gasanRateGubun - */ - public void setGasanRateGubun(String gasanRateGubun) { - this.gasanRateGubun = gasanRateGubun; - } - - /**Gets the gigum value for this Bu04BugaExtWSDTO. - * @return gigum - */ - public long getGigum() { - return gigum; - } - - /**Sets the gigum value for this Bu04BugaExtWSDTO. - * @param gigum - */ - public void setGigum(long gigum) { - this.gigum = gigum; - } - - /**Gets the gigumGasanAmt value for this Bu04BugaExtWSDTO. - * @return gigumGasanAmt - */ - public long getGigumGasanAmt() { - return gigumGasanAmt; - } - - /**Sets the gigumGasanAmt value for this Bu04BugaExtWSDTO. - * @param gigumGasanAmt - */ - public void setGigumGasanAmt(long gigumGasanAmt) { - this.gigumGasanAmt = gigumGasanAmt; - } - - /**Gets the gigumIja value for this Bu04BugaExtWSDTO. - * @return gigumIja - */ - public long getGigumIja() { - return gigumIja; - } - - /**Sets the gigumIja value for this Bu04BugaExtWSDTO. - * @param gigumIja - */ - public void setGigumIja(long gigumIja) { - this.gigumIja = gigumIja; - } - - /**Gets the gukse value for this Bu04BugaExtWSDTO. - * @return gukse - */ - public long getGukse() { - return gukse; - } - - /**Sets the gukse value for this Bu04BugaExtWSDTO. - * @param gukse - */ - public void setGukse(long gukse) { - this.gukse = gukse; - } - - /**Gets the gukseGasanAmt value for this Bu04BugaExtWSDTO. - * @return gukseGasanAmt - */ - public long getGukseGasanAmt() { - return gukseGasanAmt; - } - - /**Sets the gukseGasanAmt value for this Bu04BugaExtWSDTO. - * @param gukseGasanAmt - */ - public void setGukseGasanAmt(long gukseGasanAmt) { - this.gukseGasanAmt = gukseGasanAmt; - } - - /**Gets the gukseIja value for this Bu04BugaExtWSDTO. - * @return gukseIja - */ - public long getGukseIja() { - return gukseIja; - } - - /**Sets the gukseIja value for this Bu04BugaExtWSDTO. - * @param gukseIja - */ - public void setGukseIja(long gukseIja) { - this.gukseIja = gukseIja; - } - - /**Gets the guse value for this Bu04BugaExtWSDTO. - * @return guse - */ - public long getGuse() { - return guse; - } - - /**Sets the guse value for this Bu04BugaExtWSDTO. - * @param guse - */ - public void setGuse(long guse) { - this.guse = guse; - } - - /**Gets the guseGasanAmt value for this Bu04BugaExtWSDTO. - * @return guseGasanAmt - */ - public long getGuseGasanAmt() { - return guseGasanAmt; - } - - /**Sets the guseGasanAmt value for this Bu04BugaExtWSDTO. - * @param guseGasanAmt - */ - public void setGuseGasanAmt(long guseGasanAmt) { - this.guseGasanAmt = guseGasanAmt; - } - - /**Gets the guseIja value for this Bu04BugaExtWSDTO. - * @return guseIja - */ - public long getGuseIja() { - return guseIja; - } - - /**Sets the guseIja value for this Bu04BugaExtWSDTO. - * @param guseIja - */ - public void setGuseIja(long guseIja) { - this.guseIja = guseIja; - } - - /**Gets the hangmok1 value for this Bu04BugaExtWSDTO. - * @return hangmok1 - */ - public String getHangmok1() { - return hangmok1; - } - - /**Sets the hangmok1 value for this Bu04BugaExtWSDTO. - * @param hangmok1 - */ - public void setHangmok1(String hangmok1) { - this.hangmok1 = hangmok1; - } - - /**Gets the hangmok2 value for this Bu04BugaExtWSDTO. - * @return hangmok2 - */ - public String getHangmok2() { - return hangmok2; - } - - /**Sets the hangmok2 value for this Bu04BugaExtWSDTO. - * @param hangmok2 - */ - public void setHangmok2(String hangmok2) { - this.hangmok2 = hangmok2; - } - - /**Gets the hangmok3 value for this Bu04BugaExtWSDTO. - * @return hangmok3 - */ - public String getHangmok3() { - return hangmok3; - } - - /**Sets the hangmok3 value for this Bu04BugaExtWSDTO. - * @param hangmok3 - */ - public void setHangmok3(String hangmok3) { - this.hangmok3 = hangmok3; - } - - /**Gets the hangmok4 value for this Bu04BugaExtWSDTO. - * @return hangmok4 - */ - public String getHangmok4() { - return hangmok4; - } - - /**Sets the hangmok4 value for this Bu04BugaExtWSDTO. - * @param hangmok4 - */ - public void setHangmok4(String hangmok4) { - this.hangmok4 = hangmok4; - } - - /**Gets the hangmok5 value for this Bu04BugaExtWSDTO. - * @return hangmok5 - */ - public String getHangmok5() { - return hangmok5; - } - - /**Sets the hangmok5 value for this Bu04BugaExtWSDTO. - * @param hangmok5 - */ - public void setHangmok5(String hangmok5) { - this.hangmok5 = hangmok5; - } - - /**Gets the hangmok6 value for this Bu04BugaExtWSDTO. - * @return hangmok6 - */ - public String getHangmok6() { - return hangmok6; - } - - /**Sets the hangmok6 value for this Bu04BugaExtWSDTO. - * @param hangmok6 - */ - public void setHangmok6(String hangmok6) { - this.hangmok6 = hangmok6; - } - - /**Gets the hdongCd value for this Bu04BugaExtWSDTO. - * @return hdongCd - */ - public String getHdongCd() { - return hdongCd; - } - - /**Sets the hdongCd value for this Bu04BugaExtWSDTO. - * @param hdongCd - */ - public void setHdongCd(String hdongCd) { - this.hdongCd = hdongCd; } /**Gets the hriCd value for this Bu04BugaExtWSDTO. @@ -750,1332 +255,187 @@ public class Bu04BugaExtWSDTO implements Serializable { this.hriCd = hriCd; } - /**Gets the lastWorkDate value for this Bu04BugaExtWSDTO. - * @return lastWorkDate - */ - public String getLastWorkDate() { - return lastWorkDate; - } - - /**Sets the lastWorkDate value for this Bu04BugaExtWSDTO. - * @param lastWorkDate - */ - public void setLastWorkDate(String lastWorkDate) { - this.lastWorkDate = lastWorkDate; - } - - /**Gets the lastWorkId value for this Bu04BugaExtWSDTO. - * @return lastWorkId + /**Gets the mulCd value for this Bu04BugaExtWSDTO. + * @return mulCd */ - public String getLastWorkId() { - return lastWorkId; + public String getMulCd() { + return mulCd; } - /**Sets the lastWorkId value for this Bu04BugaExtWSDTO. - * @param lastWorkId + /**Sets the mulCd value for this Bu04BugaExtWSDTO. + * @param mulCd */ - public void setLastWorkId(String lastWorkId) { - this.lastWorkId = lastWorkId; + public void setMulCd(String mulCd) { + this.mulCd = mulCd; } - /**Gets the mulAptNm value for this Bu04BugaExtWSDTO. - * @return mulAptNm + /**Gets the reserve01 value for this Bu04BugaExtWSDTO. + * @return reserve01 */ - public String getMulAptNm() { - return mulAptNm; + public String getReserve01() { + return reserve01; } - /**Sets the mulAptNm value for this Bu04BugaExtWSDTO. - * @param mulAptNm + /**Sets the reserve01 value for this Bu04BugaExtWSDTO. + * @param reserve01 */ - public void setMulAptNm(String mulAptNm) { - this.mulAptNm = mulAptNm; + public void setReserve01(String reserve01) { + this.reserve01 = reserve01; } - /**Gets the mulBan value for this Bu04BugaExtWSDTO. - * @return mulBan + /**Gets the reserve02 value for this Bu04BugaExtWSDTO. + * @return reserve02 */ - public String getMulBan() { - return mulBan; + public String getReserve02() { + return reserve02; } - /**Sets the mulBan value for this Bu04BugaExtWSDTO. - * @param mulBan + /**Sets the reserve02 value for this Bu04BugaExtWSDTO. + * @param reserve02 */ - public void setMulBan(String mulBan) { - this.mulBan = mulBan; + public void setReserve02(String reserve02) { + this.reserve02 = reserve02; } - /**Gets the mulBdongriCd value for this Bu04BugaExtWSDTO. - * @return mulBdongriCd + /**Gets the reserve03 value for this Bu04BugaExtWSDTO. + * @return reserve03 */ - public String getMulBdongriCd() { - return mulBdongriCd; + public String getReserve03() { + return reserve03; } - /**Sets the mulBdongriCd value for this Bu04BugaExtWSDTO. - * @param mulBdongriCd + /**Sets the reserve03 value for this Bu04BugaExtWSDTO. + * @param reserve03 */ - public void setMulBdongriCd(String mulBdongriCd) { - this.mulBdongriCd = mulBdongriCd; + public void setReserve03(String reserve03) { + this.reserve03 = reserve03; } - /**Gets the mulBon value for this Bu04BugaExtWSDTO. - * @return mulBon + /**Gets the reserve04 value for this Bu04BugaExtWSDTO. + * @return reserve04 */ - public String getMulBon() { - return mulBon; + public String getReserve04() { + return reserve04; } - /**Sets the mulBon value for this Bu04BugaExtWSDTO. - * @param mulBon + /**Sets the reserve04 value for this Bu04BugaExtWSDTO. + * @param reserve04 */ - public void setMulBon(String mulBon) { - this.mulBon = mulBon; + public void setReserve04(String reserve04) { + this.reserve04 = reserve04; } - /**Gets the mulBu value for this Bu04BugaExtWSDTO. - * @return mulBu + /**Gets the reserve05 value for this Bu04BugaExtWSDTO. + * @return reserve05 */ - public String getMulBu() { - return mulBu; + public String getReserve05() { + return reserve05; } - /**Sets the mulBu value for this Bu04BugaExtWSDTO. - * @param mulBu + /**Sets the reserve05 value for this Bu04BugaExtWSDTO. + * @param reserve05 */ - public void setMulBu(String mulBu) { - this.mulBu = mulBu; + public void setReserve05(String reserve05) { + this.reserve05 = reserve05; } - /**Gets the mulCd value for this Bu04BugaExtWSDTO. - * @return mulCd + /**Gets the reserve06 value for this Bu04BugaExtWSDTO. + * @return reserve06 */ - public String getMulCd() { - return mulCd; + public String getReserve06() { + return reserve06; } - /**Sets the mulCd value for this Bu04BugaExtWSDTO. - * @param mulCd + /**Sets the reserve06 value for this Bu04BugaExtWSDTO. + * @param reserve06 */ - public void setMulCd(String mulCd) { - this.mulCd = mulCd; + public void setReserve06(String reserve06) { + this.reserve06 = reserve06; } - /**Gets the mulDong value for this Bu04BugaExtWSDTO. - * @return mulDong + /**Gets the reserve07 value for this Bu04BugaExtWSDTO. + * @return reserve07 */ - public String getMulDong() { - return mulDong; + public String getReserve07() { + return reserve07; } - /**Sets the mulDong value for this Bu04BugaExtWSDTO. - * @param mulDong + /**Sets the reserve07 value for this Bu04BugaExtWSDTO. + * @param reserve07 */ - public void setMulDong(String mulDong) { - this.mulDong = mulDong; + public void setReserve07(String reserve07) { + this.reserve07 = reserve07; } - /**Gets the mulDtlAddr value for this Bu04BugaExtWSDTO. - * @return mulDtlAddr + /**Gets the reserve08 value for this Bu04BugaExtWSDTO. + * @return reserve08 */ - public String getMulDtlAddr() { - return mulDtlAddr; + public String getReserve08() { + return reserve08; } - /**Sets the mulDtlAddr value for this Bu04BugaExtWSDTO. - * @param mulDtlAddr + /**Sets the reserve08 value for this Bu04BugaExtWSDTO. + * @param reserve08 */ - public void setMulDtlAddr(String mulDtlAddr) { - this.mulDtlAddr = mulDtlAddr; + public void setReserve08(String reserve08) { + this.reserve08 = reserve08; } - /**Gets the mulGubun value for this Bu04BugaExtWSDTO. - * @return mulGubun + /**Gets the reserve09 value for this Bu04BugaExtWSDTO. + * @return reserve09 */ - public String getMulGubun() { - return mulGubun; + public String getReserve09() { + return reserve09; } - /**Sets the mulGubun value for this Bu04BugaExtWSDTO. - * @param mulGubun + /**Sets the reserve09 value for this Bu04BugaExtWSDTO. + * @param reserve09 */ - public void setMulGubun(String mulGubun) { - this.mulGubun = mulGubun; + public void setReserve09(String reserve09) { + this.reserve09 = reserve09; } - /**Gets the mulHosu value for this Bu04BugaExtWSDTO. - * @return mulHosu + /**Gets the reserve10 value for this Bu04BugaExtWSDTO. + * @return reserve10 */ - public String getMulHosu() { - return mulHosu; + public String getReserve10() { + return reserve10; } - /**Sets the mulHosu value for this Bu04BugaExtWSDTO. - * @param mulHosu + /**Sets the reserve10 value for this Bu04BugaExtWSDTO. + * @param reserve10 */ - public void setMulHosu(String mulHosu) { - this.mulHosu = mulHosu; + public void setReserve10(String reserve10) { + this.reserve10 = reserve10; } - /**Gets the mulNm value for this Bu04BugaExtWSDTO. - * @return mulNm - */ - public String getMulNm() { - return mulNm; - } + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + boolean _equals = super.equals(obj); + if (!_equals) return false; - /**Sets the mulNm value for this Bu04BugaExtWSDTO. - * @param mulNm - */ - public void setMulNm(String mulNm) { - this.mulNm = mulNm; - } + if (!(obj instanceof Bu04BugaExtWSDTO)) return false; + Bu04BugaExtWSDTO other = (Bu04BugaExtWSDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) return (__equalsCalc == obj); - /**Gets the mulOcrSiguCd value for this Bu04BugaExtWSDTO. - * @return mulOcrSiguCd - */ - public String getMulOcrSiguCd() { - return mulOcrSiguCd; - } - - /**Sets the mulOcrSiguCd value for this Bu04BugaExtWSDTO. - * @param mulOcrSiguCd - */ - public void setMulOcrSiguCd(String mulOcrSiguCd) { - this.mulOcrSiguCd = mulOcrSiguCd; - } - - /**Gets the mulSpcCd value for this Bu04BugaExtWSDTO. - * @return mulSpcCd - */ - public String getMulSpcCd() { - return mulSpcCd; - } - - /**Sets the mulSpcCd value for this Bu04BugaExtWSDTO. - * @param mulSpcCd - */ - public void setMulSpcCd(String mulSpcCd) { - this.mulSpcCd = mulSpcCd; - } - - /**Gets the mulTong value for this Bu04BugaExtWSDTO. - * @return mulTong - */ - public String getMulTong() { - return mulTong; - } - - /**Sets the mulTong value for this Bu04BugaExtWSDTO. - * @param mulTong - */ - public void setMulTong(String mulTong) { - this.mulTong = mulTong; - } - - /**Gets the mulZipAddr value for this Bu04BugaExtWSDTO. - * @return mulZipAddr - */ - public String getMulZipAddr() { - return mulZipAddr; - } - - /**Sets the mulZipAddr value for this Bu04BugaExtWSDTO. - * @param mulZipAddr - */ - public void setMulZipAddr(String mulZipAddr) { - this.mulZipAddr = mulZipAddr; - } - - /**Gets the mulZipCd value for this Bu04BugaExtWSDTO. - * @return mulZipCd - */ - public String getMulZipCd() { - return mulZipCd; - } - - /**Sets the mulZipCd value for this Bu04BugaExtWSDTO. - * @param mulZipCd - */ - public void setMulZipCd(String mulZipCd) { - this.mulZipCd = mulZipCd; - } - - /**Gets the napBldBon value for this Bu04BugaExtWSDTO. - * @return napBldBon - */ - public String getNapBldBon() { - return napBldBon; - } - - /**Sets the napBldBon value for this Bu04BugaExtWSDTO. - * @param napBldBon - */ - public void setNapBldBon(String napBldBon) { - this.napBldBon = napBldBon; - } - - /**Gets the napBldBu value for this Bu04BugaExtWSDTO. - * @return napBldBu - */ - public String getNapBldBu() { - return napBldBu; - } - - /**Sets the napBldBu value for this Bu04BugaExtWSDTO. - * @param napBldBu - */ - public void setNapBldBu(String napBldBu) { - this.napBldBu = napBldBu; - } - - /**Gets the napDdtlAddr value for this Bu04BugaExtWSDTO. - * @return napDdtlAddr - */ - public String getNapDdtlAddr() { - return napDdtlAddr; - } - - /**Sets the napDdtlAddr value for this Bu04BugaExtWSDTO. - * @param napDdtlAddr - */ - public void setNapDdtlAddr(String napDdtlAddr) { - this.napDdtlAddr = napDdtlAddr; - } - - /**Gets the napDoroAddr value for this Bu04BugaExtWSDTO. - * @return napDoroAddr - */ - public String getNapDoroAddr() { - return napDoroAddr; - } - - /**Sets the napDoroAddr value for this Bu04BugaExtWSDTO. - * @param napDoroAddr - */ - public void setNapDoroAddr(String napDoroAddr) { - this.napDoroAddr = napDoroAddr; - } - - /**Gets the napDoroCd value for this Bu04BugaExtWSDTO. - * @return napDoroCd - */ - public String getNapDoroCd() { - return napDoroCd; - } - - /**Sets the napDoroCd value for this Bu04BugaExtWSDTO. - * @param napDoroCd - */ - public void setNapDoroCd(String napDoroCd) { - this.napDoroCd = napDoroCd; - } - - /**Gets the napDrefAddr value for this Bu04BugaExtWSDTO. - * @return napDrefAddr - */ - public String getNapDrefAddr() { - return napDrefAddr; - } - - /**Sets the napDrefAddr value for this Bu04BugaExtWSDTO. - * @param napDrefAddr - */ - public void setNapDrefAddr(String napDrefAddr) { - this.napDrefAddr = napDrefAddr; - } - - /**Gets the napDtlAddr value for this Bu04BugaExtWSDTO. - * @return napDtlAddr - */ - public String getNapDtlAddr() { - return napDtlAddr; - } - - /**Sets the napDtlAddr value for this Bu04BugaExtWSDTO. - * @param napDtlAddr - */ - public void setNapDtlAddr(String napDtlAddr) { - this.napDtlAddr = napDtlAddr; - } - - /**Gets the napDzipAddr value for this Bu04BugaExtWSDTO. - * @return napDzipAddr - */ - public String getNapDzipAddr() { - return napDzipAddr; - } - - /**Sets the napDzipAddr value for this Bu04BugaExtWSDTO. - * @param napDzipAddr - */ - public void setNapDzipAddr(String napDzipAddr) { - this.napDzipAddr = napDzipAddr; - } - - /**Gets the napDzipCd value for this Bu04BugaExtWSDTO. - * @return napDzipCd - */ - public String getNapDzipCd() { - return napDzipCd; - } - - /**Sets the napDzipCd value for this Bu04BugaExtWSDTO. - * @param napDzipCd - */ - public void setNapDzipCd(String napDzipCd) { - this.napDzipCd = napDzipCd; - } - - /**Gets the napEmail value for this Bu04BugaExtWSDTO. - * @return napEmail - */ - public String getNapEmail() { - return napEmail; - } - - /**Sets the napEmail value for this Bu04BugaExtWSDTO. - * @param napEmail - */ - public void setNapEmail(String napEmail) { - this.napEmail = napEmail; - } - - /**Gets the napGubun value for this Bu04BugaExtWSDTO. - * @return napGubun - */ - public String getNapGubun() { - return napGubun; - } - - /**Sets the napGubun value for this Bu04BugaExtWSDTO. - * @param napGubun - */ - public void setNapGubun(String napGubun) { - this.napGubun = napGubun; - } - - /**Gets the napId value for this Bu04BugaExtWSDTO. - * @return napId - */ - public String getNapId() { - return napId; - } - - /**Sets the napId value for this Bu04BugaExtWSDTO. - * @param napId - */ - public void setNapId(String napId) { - this.napId = napId; - } - - /**Gets the napMobilNo value for this Bu04BugaExtWSDTO. - * @return napMobilNo - */ - public String getNapMobilNo() { - return napMobilNo; - } - - /**Sets the napMobilNo value for this Bu04BugaExtWSDTO. - * @param napMobilNo - */ - public void setNapMobilNo(String napMobilNo) { - this.napMobilNo = napMobilNo; - } - - /**Gets the napNm value for this Bu04BugaExtWSDTO. - * @return napNm - */ - public String getNapNm() { - return napNm; - } - - /**Sets the napNm value for this Bu04BugaExtWSDTO. - * @param napNm - */ - public void setNapNm(String napNm) { - this.napNm = napNm; - } - - /**Gets the napTelNo value for this Bu04BugaExtWSDTO. - * @return napTelNo - */ - public String getNapTelNo() { - return napTelNo; - } - - /**Sets the napTelNo value for this Bu04BugaExtWSDTO. - * @param napTelNo - */ - public void setNapTelNo(String napTelNo) { - this.napTelNo = napTelNo; - } - - /**Gets the napUndYn value for this Bu04BugaExtWSDTO. - * @return napUndYn - */ - public String getNapUndYn() { - return napUndYn; - } - - /**Sets the napUndYn value for this Bu04BugaExtWSDTO. - * @param napUndYn - */ - public void setNapUndYn(String napUndYn) { - this.napUndYn = napUndYn; - } - - /**Gets the napZipAddr value for this Bu04BugaExtWSDTO. - * @return napZipAddr - */ - public String getNapZipAddr() { - return napZipAddr; - } - - /**Sets the napZipAddr value for this Bu04BugaExtWSDTO. - * @param napZipAddr - */ - public void setNapZipAddr(String napZipAddr) { - this.napZipAddr = napZipAddr; - } - - /**Gets the napZipCd value for this Bu04BugaExtWSDTO. - * @return napZipCd - */ - public String getNapZipCd() { - return napZipCd; - } - - /**Sets the napZipCd value for this Bu04BugaExtWSDTO. - * @param napZipCd - */ - public void setNapZipCd(String napZipCd) { - this.napZipCd = napZipCd; - } - - /**Gets the napbuYmd value for this Bu04BugaExtWSDTO. - * @return napbuYmd - */ - public String getNapbuYmd() { - return napbuYmd; - } - - /**Sets the napbuYmd value for this Bu04BugaExtWSDTO. - * @param napbuYmd - */ - public void setNapbuYmd(String napbuYmd) { - this.napbuYmd = napbuYmd; - } - - /**Gets the napgiAftYmd value for this Bu04BugaExtWSDTO. - * @return napgiAftYmd - */ - public String getNapgiAftYmd() { - return napgiAftYmd; - } - - /**Sets the napgiAftYmd value for this Bu04BugaExtWSDTO. - * @param napgiAftYmd - */ - public void setNapgiAftYmd(String napgiAftYmd) { - this.napgiAftYmd = napgiAftYmd; - } - - /**Gets the napgiYmd value for this Bu04BugaExtWSDTO. - * @return napgiYmd - */ - public String getNapgiYmd() { - return napgiYmd; - } - - /**Sets the napgiYmd value for this Bu04BugaExtWSDTO. - * @param napgiYmd - */ - public void setNapgiYmd(String napgiYmd) { - this.napgiYmd = napgiYmd; - } - - /**Gets the ocrBuseoCd value for this Bu04BugaExtWSDTO. - * @return ocrBuseoCd - */ - public String getOcrBuseoCd() { - return ocrBuseoCd; - } - - /**Sets the ocrBuseoCd value for this Bu04BugaExtWSDTO. - * @param ocrBuseoCd - */ - public void setOcrBuseoCd(String ocrBuseoCd) { - this.ocrBuseoCd = ocrBuseoCd; - } - - /**Gets the ocrSiguCd value for this Bu04BugaExtWSDTO. - * @return ocrSiguCd - */ - public String getOcrSiguCd() { - return ocrSiguCd; - } - - /**Sets the ocrSiguCd value for this Bu04BugaExtWSDTO. - * @param ocrSiguCd - */ - public void setOcrSiguCd(String ocrSiguCd) { - this.ocrSiguCd = ocrSiguCd; - } - - /**Gets the reserve01 value for this Bu04BugaExtWSDTO. - * @return reserve01 - */ - public String getReserve01() { - return reserve01; - } - - /**Sets the reserve01 value for this Bu04BugaExtWSDTO. - * @param reserve01 - */ - public void setReserve01(String reserve01) { - this.reserve01 = reserve01; - } - - /**Gets the reserve02 value for this Bu04BugaExtWSDTO. - * @return reserve02 - */ - public String getReserve02() { - return reserve02; - } - - /**Sets the reserve02 value for this Bu04BugaExtWSDTO. - * @param reserve02 - */ - public void setReserve02(String reserve02) { - this.reserve02 = reserve02; - } - - /**Gets the reserve03 value for this Bu04BugaExtWSDTO. - * @return reserve03 - */ - public String getReserve03() { - return reserve03; - } - - /**Sets the reserve03 value for this Bu04BugaExtWSDTO. - * @param reserve03 - */ - public void setReserve03(String reserve03) { - this.reserve03 = reserve03; - } - - /**Gets the reserve04 value for this Bu04BugaExtWSDTO. - * @return reserve04 - */ - public String getReserve04() { - return reserve04; - } - - /**Sets the reserve04 value for this Bu04BugaExtWSDTO. - * @param reserve04 - */ - public void setReserve04(String reserve04) { - this.reserve04 = reserve04; - } - - /**Gets the reserve05 value for this Bu04BugaExtWSDTO. - * @return reserve05 - */ - public String getReserve05() { - return reserve05; - } - - /**Sets the reserve05 value for this Bu04BugaExtWSDTO. - * @param reserve05 - */ - public void setReserve05(String reserve05) { - this.reserve05 = reserve05; - } - - /**Gets the reserve06 value for this Bu04BugaExtWSDTO. - * @return reserve06 - */ - public String getReserve06() { - return reserve06; - } - - /**Sets the reserve06 value for this Bu04BugaExtWSDTO. - * @param reserve06 - */ - public void setReserve06(String reserve06) { - this.reserve06 = reserve06; - } - - /**Gets the reserve07 value for this Bu04BugaExtWSDTO. - * @return reserve07 - */ - public String getReserve07() { - return reserve07; - } - - /**Sets the reserve07 value for this Bu04BugaExtWSDTO. - * @param reserve07 - */ - public void setReserve07(String reserve07) { - this.reserve07 = reserve07; - } - - /**Gets the reserve08 value for this Bu04BugaExtWSDTO. - * @return reserve08 - */ - public String getReserve08() { - return reserve08; - } - - /**Sets the reserve08 value for this Bu04BugaExtWSDTO. - * @param reserve08 - */ - public void setReserve08(String reserve08) { - this.reserve08 = reserve08; - } - - /**Gets the reserve09 value for this Bu04BugaExtWSDTO. - * @return reserve09 - */ - public String getReserve09() { - return reserve09; - } - - /**Sets the reserve09 value for this Bu04BugaExtWSDTO. - * @param reserve09 - */ - public void setReserve09(String reserve09) { - this.reserve09 = reserve09; - } - - /**Gets the reserve10 value for this Bu04BugaExtWSDTO. - * @return reserve10 - */ - public String getReserve10() { - return reserve10; - } - - /**Sets the reserve10 value for this Bu04BugaExtWSDTO. - * @param reserve10 - */ - public void setReserve10(String reserve10) { - this.reserve10 = reserve10; - } - - /**Gets the resideStatus value for this Bu04BugaExtWSDTO. - * @return resideStatus - */ - public String getResideStatus() { - return resideStatus; - } - - /**Sets the resideStatus value for this Bu04BugaExtWSDTO. - * @param resideStatus - */ - public void setResideStatus(String resideStatus) { - this.resideStatus = resideStatus; - } - - /**Gets the rowStatus value for this Bu04BugaExtWSDTO. - * @return rowStatus - */ - public String getRowStatus() { - return rowStatus; - } - - /**Sets the rowStatus value for this Bu04BugaExtWSDTO. - * @param rowStatus - */ - public void setRowStatus(String rowStatus) { - this.rowStatus = rowStatus; - } - - /**Gets the semokCd value for this Bu04BugaExtWSDTO. - * @return semokCd - */ - public String getSemokCd() { - return semokCd; - } - - /**Sets the semokCd value for this Bu04BugaExtWSDTO. - * @param semokCd - */ - public void setSemokCd(String semokCd) { - this.semokCd = semokCd; - } - - /**Gets the sendYmd value for this Bu04BugaExtWSDTO. - * @return sendYmd - */ - public String getSendYmd() { - return sendYmd; - } - - /**Sets the sendYmd value for this Bu04BugaExtWSDTO. - * @param sendYmd - */ - public void setSendYmd(String sendYmd) { - this.sendYmd = sendYmd; - } - - /**Gets the sidoCd value for this Bu04BugaExtWSDTO. - * @return sidoCd - */ - public String getSidoCd() { - return sidoCd; - } - - /**Sets the sidoCd value for this Bu04BugaExtWSDTO. - * @param sidoCd - */ - public void setSidoCd(String sidoCd) { - this.sidoCd = sidoCd; - } - - /**Gets the siguCd value for this Bu04BugaExtWSDTO. - * @return siguCd - */ - public String getSiguCd() { - return siguCd; - } - - /**Sets the siguCd value for this Bu04BugaExtWSDTO. - * @param siguCd - */ - public void setSiguCd(String siguCd) { - this.siguCd = siguCd; - } - - /**Gets the sise value for this Bu04BugaExtWSDTO. - * @return sise - */ - public long getSise() { - return sise; - } - - /**Sets the sise value for this Bu04BugaExtWSDTO. - * @param sise - */ - public void setSise(long sise) { - this.sise = sise; - } - - /**Gets the siseGasanAmt value for this Bu04BugaExtWSDTO. - * @return siseGasanAmt - */ - public long getSiseGasanAmt() { - return siseGasanAmt; - } - - /**Sets the siseGasanAmt value for this Bu04BugaExtWSDTO. - * @param siseGasanAmt - */ - public void setSiseGasanAmt(long siseGasanAmt) { - this.siseGasanAmt = siseGasanAmt; - } - - /**Gets the siseIja value for this Bu04BugaExtWSDTO. - * @return siseIja - */ - public long getSiseIja() { - return siseIja; - } - - /**Sets the siseIja value for this Bu04BugaExtWSDTO. - * @param siseIja - */ - public void setSiseIja(long siseIja) { - this.siseIja = siseIja; - } - - /**Gets the sokwanBuseoCd value for this Bu04BugaExtWSDTO. - * @return sokwanBuseoCd - */ - public String getSokwanBuseoCd() { - return sokwanBuseoCd; - } - - /**Sets the sokwanBuseoCd value for this Bu04BugaExtWSDTO. - * @param sokwanBuseoCd - */ - public void setSokwanBuseoCd(String sokwanBuseoCd) { - this.sokwanBuseoCd = sokwanBuseoCd; - } - - /**Gets the sokwanMgrNm value for this Bu04BugaExtWSDTO. - * @return sokwanMgrNm - */ - public String getSokwanMgrNm() { - return sokwanMgrNm; - } - - /**Sets the sokwanMgrNm value for this Bu04BugaExtWSDTO. - * @param sokwanMgrNm - */ - public void setSokwanMgrNm(String sokwanMgrNm) { - this.sokwanMgrNm = sokwanMgrNm; - } - - /**Gets the sokwanTelNo value for this Bu04BugaExtWSDTO. - * @return sokwanTelNo - */ - public String getSokwanTelNo() { - return sokwanTelNo; - } - - /**Sets the sokwanTelNo value for this Bu04BugaExtWSDTO. - * @param sokwanTelNo - */ - public void setSokwanTelNo(String sokwanTelNo) { - this.sokwanTelNo = sokwanTelNo; - } - - /**Gets the specialRate value for this Bu04BugaExtWSDTO. - * @return specialRate - */ - public double getSpecialRate() { - return specialRate; - } - - /**Sets the specialRate value for this Bu04BugaExtWSDTO. - * @param specialRate - */ - public void setSpecialRate(double specialRate) { - this.specialRate = specialRate; - } - - /**Gets the specialRateApplyCnt value for this Bu04BugaExtWSDTO. - * @return specialRateApplyCnt - */ - public long getSpecialRateApplyCnt() { - return specialRateApplyCnt; - } - - /**Sets the specialRateApplyCnt value for this Bu04BugaExtWSDTO. - * @param specialRateApplyCnt - */ - public void setSpecialRateApplyCnt(long specialRateApplyCnt) { - this.specialRateApplyCnt = specialRateApplyCnt; - } - - /**Gets the specialRateApplySayu value for this Bu04BugaExtWSDTO. - * @return specialRateApplySayu - */ - public String getSpecialRateApplySayu() { - return specialRateApplySayu; - } - - /**Sets the specialRateApplySayu value for this Bu04BugaExtWSDTO. - * @param specialRateApplySayu - */ - public void setSpecialRateApplySayu(String specialRateApplySayu) { - this.specialRateApplySayu = specialRateApplySayu; - } - - /**Gets the specialRateHighRate value for this Bu04BugaExtWSDTO. - * @return specialRateHighRate - */ - public double getSpecialRateHighRate() { - return specialRateHighRate; - } - - /**Sets the specialRateHighRate value for this Bu04BugaExtWSDTO. - * @param specialRateHighRate - */ - public void setSpecialRateHighRate(double specialRateHighRate) { - this.specialRateHighRate = specialRateHighRate; - } - - /**Gets the suBuseoCd value for this Bu04BugaExtWSDTO. - * @return suBuseoCd - */ - public String getSuBuseoCd() { - return suBuseoCd; - } - - /**Sets the suBuseoCd value for this Bu04BugaExtWSDTO. - * @param suBuseoCd - */ - public void setSuBuseoCd(String suBuseoCd) { - this.suBuseoCd = suBuseoCd; - } - - /**Gets the sysGubun value for this Bu04BugaExtWSDTO. - * @return sysGubun - */ - public String getSysGubun() { - return sysGubun; - } - - /**Sets the sysGubun value for this Bu04BugaExtWSDTO. - * @param sysGubun - */ - public void setSysGubun(String sysGubun) { - this.sysGubun = sysGubun; - } - - /**Gets the taxAmt value for this Bu04BugaExtWSDTO. - * @return taxAmt - */ - public long getTaxAmt() { - return taxAmt; - } - - /**Sets the taxAmt value for this Bu04BugaExtWSDTO. - * @param taxAmt - */ - public void setTaxAmt(long taxAmt) { - this.taxAmt = taxAmt; - } - - /**Gets the taxGubun value for this Bu04BugaExtWSDTO. - * @return taxGubun - */ - public String getTaxGubun() { - return taxGubun; - } - - /**Sets the taxGubun value for this Bu04BugaExtWSDTO. - * @param taxGubun - */ - public void setTaxGubun(String taxGubun) { - this.taxGubun = taxGubun; - } - - /**Gets the taxNo value for this Bu04BugaExtWSDTO. - * @return taxNo - */ - public String getTaxNo() { - return taxNo; - } - - /**Sets the taxNo value for this Bu04BugaExtWSDTO. - * @param taxNo - */ - public void setTaxNo(String taxNo) { - this.taxNo = taxNo; - } - - /**Gets the taxYm value for this Bu04BugaExtWSDTO. - * @return taxYm - */ - public String getTaxYm() { - return taxYm; - } - - /**Sets the taxYm value for this Bu04BugaExtWSDTO. - * @param taxYm - */ - public void setTaxYm(String taxYm) { - this.taxYm = taxYm; - } - - /**Gets the taxYmd value for this Bu04BugaExtWSDTO. - * @return taxYmd - */ - public String getTaxYmd() { - return taxYmd; - } - - /**Sets the taxYmd value for this Bu04BugaExtWSDTO. - * @param taxYmd - */ - public void setTaxYmd(String taxYmd) { - this.taxYmd = taxYmd; - } - - /**Gets the vatAmt value for this Bu04BugaExtWSDTO. - * @return vatAmt - */ - public long getVatAmt() { - return vatAmt; - } - - /** - * Sets the vatAmt value for this Bu04BugaExtWSDTO. - * @param vatAmt - */ - public void setVatAmt(long vatAmt) { - this.vatAmt = vatAmt; - } - - private Object __equalsCalc = null; - @Override - public synchronized boolean equals(Object obj) { - if (!(obj instanceof Bu04BugaExtWSDTO)) return false; - Bu04BugaExtWSDTO other = (Bu04BugaExtWSDTO) obj; - if (this == obj) return true; - if (__equalsCalc != null) { - return (__equalsCalc == obj); - } - __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.bigo==null && other.getBigo()==null) || - (this.bigo!=null && - this.bigo.equals(other.getBigo()))) && - ((this.bookNo==null && other.getBookNo()==null) || - (this.bookNo!=null && - this.bookNo.equals(other.getBookNo()))) && - this.bunhalCnt == other.getBunhalCnt() && - ((this.buseoCd==null && other.getBuseoCd()==null) || - (this.buseoCd!=null && - this.buseoCd.equals(other.getBuseoCd()))) && - ((this.etc1==null && other.getEtc1()==null) || - (this.etc1!=null && - this.etc1.equals(other.getEtc1()))) && - ((this.gasanAmtSkipGubun==null && other.getGasanAmtSkipGubun()==null) || - (this.gasanAmtSkipGubun!=null && - this.gasanAmtSkipGubun.equals(other.getGasanAmtSkipGubun()))) && - ((this.gasanRateGubun==null && other.getGasanRateGubun()==null) || - (this.gasanRateGubun!=null && - this.gasanRateGubun.equals(other.getGasanRateGubun()))) && - this.gigum == other.getGigum() && - this.gigumGasanAmt == other.getGigumGasanAmt() && - this.gigumIja == other.getGigumIja() && - this.gukse == other.getGukse() && - this.gukseGasanAmt == other.getGukseGasanAmt() && - this.gukseIja == other.getGukseIja() && - this.guse == other.getGuse() && - this.guseGasanAmt == other.getGuseGasanAmt() && - this.guseIja == other.getGuseIja() && - ((this.hangmok1==null && other.getHangmok1()==null) || - (this.hangmok1!=null && - this.hangmok1.equals(other.getHangmok1()))) && - ((this.hangmok2==null && other.getHangmok2()==null) || - (this.hangmok2!=null && - this.hangmok2.equals(other.getHangmok2()))) && - ((this.hangmok3==null && other.getHangmok3()==null) || - (this.hangmok3!=null && - this.hangmok3.equals(other.getHangmok3()))) && - ((this.hangmok4==null && other.getHangmok4()==null) || - (this.hangmok4!=null && - this.hangmok4.equals(other.getHangmok4()))) && - ((this.hangmok5==null && other.getHangmok5()==null) || - (this.hangmok5!=null && - this.hangmok5.equals(other.getHangmok5()))) && - ((this.hangmok6==null && other.getHangmok6()==null) || - (this.hangmok6!=null && - this.hangmok6.equals(other.getHangmok6()))) && - ((this.hdongCd==null && other.getHdongCd()==null) || - (this.hdongCd!=null && - this.hdongCd.equals(other.getHdongCd()))) && - ((this.hriCd==null && other.getHriCd()==null) || - (this.hriCd!=null && - this.hriCd.equals(other.getHriCd()))) && - ((this.lastWorkDate==null && other.getLastWorkDate()==null) || - (this.lastWorkDate!=null && - this.lastWorkDate.equals(other.getLastWorkDate()))) && - ((this.lastWorkId==null && other.getLastWorkId()==null) || - (this.lastWorkId!=null && - this.lastWorkId.equals(other.getLastWorkId()))) && - ((this.mulAptNm==null && other.getMulAptNm()==null) || - (this.mulAptNm!=null && - this.mulAptNm.equals(other.getMulAptNm()))) && - ((this.mulBan==null && other.getMulBan()==null) || - (this.mulBan!=null && - this.mulBan.equals(other.getMulBan()))) && - ((this.mulBdongriCd==null && other.getMulBdongriCd()==null) || - (this.mulBdongriCd!=null && - this.mulBdongriCd.equals(other.getMulBdongriCd()))) && - ((this.mulBon==null && other.getMulBon()==null) || - (this.mulBon!=null && - this.mulBon.equals(other.getMulBon()))) && - ((this.mulBu==null && other.getMulBu()==null) || - (this.mulBu!=null && - this.mulBu.equals(other.getMulBu()))) && - ((this.mulCd==null && other.getMulCd()==null) || - (this.mulCd!=null && - this.mulCd.equals(other.getMulCd()))) && - ((this.mulDong==null && other.getMulDong()==null) || - (this.mulDong!=null && - this.mulDong.equals(other.getMulDong()))) && - ((this.mulDtlAddr==null && other.getMulDtlAddr()==null) || - (this.mulDtlAddr!=null && - this.mulDtlAddr.equals(other.getMulDtlAddr()))) && - ((this.mulGubun==null && other.getMulGubun()==null) || - (this.mulGubun!=null && - this.mulGubun.equals(other.getMulGubun()))) && - ((this.mulHosu==null && other.getMulHosu()==null) || - (this.mulHosu!=null && - this.mulHosu.equals(other.getMulHosu()))) && - ((this.mulNm==null && other.getMulNm()==null) || - (this.mulNm!=null && - this.mulNm.equals(other.getMulNm()))) && - ((this.mulOcrSiguCd==null && other.getMulOcrSiguCd()==null) || - (this.mulOcrSiguCd!=null && - this.mulOcrSiguCd.equals(other.getMulOcrSiguCd()))) && - ((this.mulSpcCd==null && other.getMulSpcCd()==null) || - (this.mulSpcCd!=null && - this.mulSpcCd.equals(other.getMulSpcCd()))) && - ((this.mulTong==null && other.getMulTong()==null) || - (this.mulTong!=null && - this.mulTong.equals(other.getMulTong()))) && - ((this.mulZipAddr==null && other.getMulZipAddr()==null) || - (this.mulZipAddr!=null && - this.mulZipAddr.equals(other.getMulZipAddr()))) && - ((this.mulZipCd==null && other.getMulZipCd()==null) || - (this.mulZipCd!=null && - this.mulZipCd.equals(other.getMulZipCd()))) && - ((this.napBldBon==null && other.getNapBldBon()==null) || - (this.napBldBon!=null && - this.napBldBon.equals(other.getNapBldBon()))) && - ((this.napBldBu==null && other.getNapBldBu()==null) || - (this.napBldBu!=null && - this.napBldBu.equals(other.getNapBldBu()))) && - ((this.napDdtlAddr==null && other.getNapDdtlAddr()==null) || - (this.napDdtlAddr!=null && - this.napDdtlAddr.equals(other.getNapDdtlAddr()))) && - ((this.napDoroAddr==null && other.getNapDoroAddr()==null) || - (this.napDoroAddr!=null && - this.napDoroAddr.equals(other.getNapDoroAddr()))) && - ((this.napDoroCd==null && other.getNapDoroCd()==null) || - (this.napDoroCd!=null && - this.napDoroCd.equals(other.getNapDoroCd()))) && - ((this.napDrefAddr==null && other.getNapDrefAddr()==null) || - (this.napDrefAddr!=null && - this.napDrefAddr.equals(other.getNapDrefAddr()))) && - ((this.napDtlAddr==null && other.getNapDtlAddr()==null) || - (this.napDtlAddr!=null && - this.napDtlAddr.equals(other.getNapDtlAddr()))) && - ((this.napDzipAddr==null && other.getNapDzipAddr()==null) || - (this.napDzipAddr!=null && - this.napDzipAddr.equals(other.getNapDzipAddr()))) && - ((this.napDzipCd==null && other.getNapDzipCd()==null) || - (this.napDzipCd!=null && - this.napDzipCd.equals(other.getNapDzipCd()))) && - ((this.napEmail==null && other.getNapEmail()==null) || - (this.napEmail!=null && - this.napEmail.equals(other.getNapEmail()))) && - ((this.napGubun==null && other.getNapGubun()==null) || - (this.napGubun!=null && - this.napGubun.equals(other.getNapGubun()))) && - ((this.napId==null && other.getNapId()==null) || - (this.napId!=null && - this.napId.equals(other.getNapId()))) && - ((this.napMobilNo==null && other.getNapMobilNo()==null) || - (this.napMobilNo!=null && - this.napMobilNo.equals(other.getNapMobilNo()))) && - ((this.napNm==null && other.getNapNm()==null) || - (this.napNm!=null && - this.napNm.equals(other.getNapNm()))) && - ((this.napTelNo==null && other.getNapTelNo()==null) || - (this.napTelNo!=null && - this.napTelNo.equals(other.getNapTelNo()))) && - ((this.napUndYn==null && other.getNapUndYn()==null) || - (this.napUndYn!=null && - this.napUndYn.equals(other.getNapUndYn()))) && - ((this.napZipAddr==null && other.getNapZipAddr()==null) || - (this.napZipAddr!=null && - this.napZipAddr.equals(other.getNapZipAddr()))) && - ((this.napZipCd==null && other.getNapZipCd()==null) || - (this.napZipCd!=null && - this.napZipCd.equals(other.getNapZipCd()))) && - ((this.napbuYmd==null && other.getNapbuYmd()==null) || - (this.napbuYmd!=null && - this.napbuYmd.equals(other.getNapbuYmd()))) && - ((this.napgiAftYmd==null && other.getNapgiAftYmd()==null) || - (this.napgiAftYmd!=null && - this.napgiAftYmd.equals(other.getNapgiAftYmd()))) && - ((this.napgiYmd==null && other.getNapgiYmd()==null) || - (this.napgiYmd!=null && - this.napgiYmd.equals(other.getNapgiYmd()))) && - ((this.ocrBuseoCd==null && other.getOcrBuseoCd()==null) || - (this.ocrBuseoCd!=null && - this.ocrBuseoCd.equals(other.getOcrBuseoCd()))) && - ((this.ocrSiguCd==null && other.getOcrSiguCd()==null) || - (this.ocrSiguCd!=null && - this.ocrSiguCd.equals(other.getOcrSiguCd()))) && - ((this.reserve01==null && other.getReserve01()==null) || - (this.reserve01!=null && - this.reserve01.equals(other.getReserve01()))) && - ((this.reserve02==null && other.getReserve02()==null) || - (this.reserve02!=null && - this.reserve02.equals(other.getReserve02()))) && - ((this.reserve03==null && other.getReserve03()==null) || - (this.reserve03!=null && - this.reserve03.equals(other.getReserve03()))) && - ((this.reserve04==null && other.getReserve04()==null) || - (this.reserve04!=null && - this.reserve04.equals(other.getReserve04()))) && - ((this.reserve05==null && other.getReserve05()==null) || - (this.reserve05!=null && - this.reserve05.equals(other.getReserve05()))) && - ((this.reserve06==null && other.getReserve06()==null) || - (this.reserve06!=null && - this.reserve06.equals(other.getReserve06()))) && - ((this.reserve07==null && other.getReserve07()==null) || - (this.reserve07!=null && - this.reserve07.equals(other.getReserve07()))) && - ((this.reserve08==null && other.getReserve08()==null) || - (this.reserve08!=null && - this.reserve08.equals(other.getReserve08()))) && - ((this.reserve09==null && other.getReserve09()==null) || - (this.reserve09!=null && - this.reserve09.equals(other.getReserve09()))) && - ((this.reserve10==null && other.getReserve10()==null) || - (this.reserve10!=null && - this.reserve10.equals(other.getReserve10()))) && - ((this.resideStatus==null && other.getResideStatus()==null) || - (this.resideStatus!=null && - this.resideStatus.equals(other.getResideStatus()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.semokCd==null && other.getSemokCd()==null) || - (this.semokCd!=null && - this.semokCd.equals(other.getSemokCd()))) && - ((this.sendYmd==null && other.getSendYmd()==null) || - (this.sendYmd!=null && - this.sendYmd.equals(other.getSendYmd()))) && - ((this.sidoCd==null && other.getSidoCd()==null) || - (this.sidoCd!=null && - this.sidoCd.equals(other.getSidoCd()))) && - ((this.siguCd==null && other.getSiguCd()==null) || - (this.siguCd!=null && - this.siguCd.equals(other.getSiguCd()))) && - this.sise == other.getSise() && - this.siseGasanAmt == other.getSiseGasanAmt() && - this.siseIja == other.getSiseIja() && - ((this.sokwanBuseoCd==null && other.getSokwanBuseoCd()==null) || - (this.sokwanBuseoCd!=null && - this.sokwanBuseoCd.equals(other.getSokwanBuseoCd()))) && - ((this.sokwanMgrNm==null && other.getSokwanMgrNm()==null) || - (this.sokwanMgrNm!=null && - this.sokwanMgrNm.equals(other.getSokwanMgrNm()))) && - ((this.sokwanTelNo==null && other.getSokwanTelNo()==null) || - (this.sokwanTelNo!=null && - this.sokwanTelNo.equals(other.getSokwanTelNo()))) && - this.specialRate == other.getSpecialRate() && - this.specialRateApplyCnt == other.getSpecialRateApplyCnt() && - ((this.specialRateApplySayu==null && other.getSpecialRateApplySayu()==null) || - (this.specialRateApplySayu!=null && - this.specialRateApplySayu.equals(other.getSpecialRateApplySayu()))) && - this.specialRateHighRate == other.getSpecialRateHighRate() && - ((this.suBuseoCd==null && other.getSuBuseoCd()==null) || - (this.suBuseoCd!=null && - this.suBuseoCd.equals(other.getSuBuseoCd()))) && - ((this.sysGubun==null && other.getSysGubun()==null) || - (this.sysGubun!=null && - this.sysGubun.equals(other.getSysGubun()))) && - this.taxAmt == other.getTaxAmt() && - ((this.taxGubun==null && other.getTaxGubun()==null) || - (this.taxGubun!=null && - this.taxGubun.equals(other.getTaxGubun()))) && - ((this.taxNo==null && other.getTaxNo()==null) || - (this.taxNo!=null && - this.taxNo.equals(other.getTaxNo()))) && - ((this.taxYm==null && other.getTaxYm()==null) || - (this.taxYm!=null && - this.taxYm.equals(other.getTaxYm()))) && - ((this.taxYmd==null && other.getTaxYmd()==null) || - (this.taxYmd!=null && - this.taxYmd.equals(other.getTaxYmd()))) && - this.vatAmt == other.getVatAmt(); - __equalsCalc = null; - return _equals; + __equalsCalc = obj; + _equals = + equals(this.hriCd, other.getHriCd()) && + equals(this.mulCd, other.getMulCd()) && + equals(this.reserve01, other.getReserve01()) && + equals(this.reserve02, other.getReserve02()) && + equals(this.reserve03, other.getReserve03()) && + equals(this.reserve04, other.getReserve04()) && + equals(this.reserve05, other.getReserve05()) && + equals(this.reserve06, other.getReserve06()) && + equals(this.reserve07, other.getReserve07()) && + equals(this.reserve08, other.getReserve08()) && + equals(this.reserve09, other.getReserve09()) && + equals(this.reserve10, other.getReserve10()); + __equalsCalc = null; + return _equals; } private boolean __hashCodeCalc = false; @@ -2085,374 +445,215 @@ public class Bu04BugaExtWSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - if (getBigo() != null) { - _hashCode += getBigo().hashCode(); - } - if (getBookNo() != null) { - _hashCode += getBookNo().hashCode(); - } - _hashCode += Long.valueOf(getBunhalCnt()).hashCode(); - if (getBuseoCd() != null) { - _hashCode += getBuseoCd().hashCode(); - } - if (getEtc1() != null) { - _hashCode += getEtc1().hashCode(); - } - if (getGasanAmtSkipGubun() != null) { - _hashCode += getGasanAmtSkipGubun().hashCode(); - } - if (getGasanRateGubun() != null) { - _hashCode += getGasanRateGubun().hashCode(); - } - _hashCode += Long.valueOf(getGigum()).hashCode(); - _hashCode += Long.valueOf(getGigumGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getGigumIja()).hashCode(); - _hashCode += Long.valueOf(getGukse()).hashCode(); - _hashCode += Long.valueOf(getGukseGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getGukseIja()).hashCode(); - _hashCode += Long.valueOf(getGuse()).hashCode(); - _hashCode += Long.valueOf(getGuseGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getGuseIja()).hashCode(); - if (getHangmok1() != null) { - _hashCode += getHangmok1().hashCode(); - } - if (getHangmok2() != null) { - _hashCode += getHangmok2().hashCode(); - } - if (getHangmok3() != null) { - _hashCode += getHangmok3().hashCode(); - } - if (getHangmok4() != null) { - _hashCode += getHangmok4().hashCode(); - } - if (getHangmok5() != null) { - _hashCode += getHangmok5().hashCode(); - } - if (getHangmok6() != null) { - _hashCode += getHangmok6().hashCode(); - } - if (getHdongCd() != null) { - _hashCode += getHdongCd().hashCode(); - } - if (getHriCd() != null) { - _hashCode += getHriCd().hashCode(); - } - if (getLastWorkDate() != null) { - _hashCode += getLastWorkDate().hashCode(); - } - if (getLastWorkId() != null) { - _hashCode += getLastWorkId().hashCode(); - } - if (getMulAptNm() != null) { - _hashCode += getMulAptNm().hashCode(); - } - if (getMulBan() != null) { - _hashCode += getMulBan().hashCode(); - } - if (getMulBdongriCd() != null) { - _hashCode += getMulBdongriCd().hashCode(); - } - if (getMulBon() != null) { - _hashCode += getMulBon().hashCode(); - } - if (getMulBu() != null) { - _hashCode += getMulBu().hashCode(); - } - if (getMulCd() != null) { - _hashCode += getMulCd().hashCode(); - } - if (getMulDong() != null) { - _hashCode += getMulDong().hashCode(); - } - if (getMulDtlAddr() != null) { - _hashCode += getMulDtlAddr().hashCode(); - } - if (getMulGubun() != null) { - _hashCode += getMulGubun().hashCode(); - } - if (getMulHosu() != null) { - _hashCode += getMulHosu().hashCode(); - } - if (getMulNm() != null) { - _hashCode += getMulNm().hashCode(); - } - if (getMulOcrSiguCd() != null) { - _hashCode += getMulOcrSiguCd().hashCode(); - } - if (getMulSpcCd() != null) { - _hashCode += getMulSpcCd().hashCode(); - } - if (getMulTong() != null) { - _hashCode += getMulTong().hashCode(); - } - if (getMulZipAddr() != null) { - _hashCode += getMulZipAddr().hashCode(); - } - if (getMulZipCd() != null) { - _hashCode += getMulZipCd().hashCode(); - } - if (getNapBldBon() != null) { - _hashCode += getNapBldBon().hashCode(); - } - if (getNapBldBu() != null) { - _hashCode += getNapBldBu().hashCode(); - } - if (getNapDdtlAddr() != null) { - _hashCode += getNapDdtlAddr().hashCode(); - } - if (getNapDoroAddr() != null) { - _hashCode += getNapDoroAddr().hashCode(); - } - if (getNapDoroCd() != null) { - _hashCode += getNapDoroCd().hashCode(); - } - if (getNapDrefAddr() != null) { - _hashCode += getNapDrefAddr().hashCode(); - } - if (getNapDtlAddr() != null) { - _hashCode += getNapDtlAddr().hashCode(); - } - if (getNapDzipAddr() != null) { - _hashCode += getNapDzipAddr().hashCode(); - } - if (getNapDzipCd() != null) { - _hashCode += getNapDzipCd().hashCode(); - } - if (getNapEmail() != null) { - _hashCode += getNapEmail().hashCode(); - } - if (getNapGubun() != null) { - _hashCode += getNapGubun().hashCode(); - } - if (getNapId() != null) { - _hashCode += getNapId().hashCode(); - } - if (getNapMobilNo() != null) { - _hashCode += getNapMobilNo().hashCode(); - } - if (getNapNm() != null) { - _hashCode += getNapNm().hashCode(); - } - if (getNapTelNo() != null) { - _hashCode += getNapTelNo().hashCode(); - } - if (getNapUndYn() != null) { - _hashCode += getNapUndYn().hashCode(); - } - if (getNapZipAddr() != null) { - _hashCode += getNapZipAddr().hashCode(); - } - if (getNapZipCd() != null) { - _hashCode += getNapZipCd().hashCode(); - } - if (getNapbuYmd() != null) { - _hashCode += getNapbuYmd().hashCode(); - } - if (getNapgiAftYmd() != null) { - _hashCode += getNapgiAftYmd().hashCode(); - } - if (getNapgiYmd() != null) { - _hashCode += getNapgiYmd().hashCode(); - } - if (getOcrBuseoCd() != null) { - _hashCode += getOcrBuseoCd().hashCode(); - } - if (getOcrSiguCd() != null) { - _hashCode += getOcrSiguCd().hashCode(); - } - if (getReserve01() != null) { - _hashCode += getReserve01().hashCode(); - } - if (getReserve02() != null) { - _hashCode += getReserve02().hashCode(); - } - if (getReserve03() != null) { - _hashCode += getReserve03().hashCode(); - } - if (getReserve04() != null) { - _hashCode += getReserve04().hashCode(); - } - if (getReserve05() != null) { - _hashCode += getReserve05().hashCode(); - } - if (getReserve06() != null) { - _hashCode += getReserve06().hashCode(); - } - if (getReserve07() != null) { - _hashCode += getReserve07().hashCode(); - } - if (getReserve08() != null) { - _hashCode += getReserve08().hashCode(); - } - if (getReserve09() != null) { - _hashCode += getReserve09().hashCode(); - } - if (getReserve10() != null) { - _hashCode += getReserve10().hashCode(); - } - if (getResideStatus() != null) { - _hashCode += getResideStatus().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSemokCd() != null) { - _hashCode += getSemokCd().hashCode(); - } - if (getSendYmd() != null) { - _hashCode += getSendYmd().hashCode(); - } - if (getSidoCd() != null) { - _hashCode += getSidoCd().hashCode(); - } - if (getSiguCd() != null) { - _hashCode += getSiguCd().hashCode(); - } - _hashCode += Long.valueOf(getSise()).hashCode(); - _hashCode += Long.valueOf(getSiseGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getSiseIja()).hashCode(); - if (getSokwanBuseoCd() != null) { - _hashCode += getSokwanBuseoCd().hashCode(); - } - if (getSokwanMgrNm() != null) { - _hashCode += getSokwanMgrNm().hashCode(); - } - if (getSokwanTelNo() != null) { - _hashCode += getSokwanTelNo().hashCode(); - } - _hashCode += Double.valueOf(getSpecialRate()).hashCode(); - _hashCode += Long.valueOf(getSpecialRateApplyCnt()).hashCode(); - if (getSpecialRateApplySayu() != null) { - _hashCode += getSpecialRateApplySayu().hashCode(); - } - _hashCode += Double.valueOf(getSpecialRateHighRate()).hashCode(); - if (getSuBuseoCd() != null) { - _hashCode += getSuBuseoCd().hashCode(); - } - if (getSysGubun() != null) { - _hashCode += getSysGubun().hashCode(); - } - _hashCode += Long.valueOf(getTaxAmt()).hashCode(); - if (getTaxGubun() != null) { - _hashCode += getTaxGubun().hashCode(); - } - if (getTaxNo() != null) { - _hashCode += getTaxNo().hashCode(); - } - if (getTaxYm() != null) { - _hashCode += getTaxYm().hashCode(); - } - if (getTaxYmd() != null) { - _hashCode += getTaxYmd().hashCode(); - } - _hashCode += Long.valueOf(getVatAmt()).hashCode(); + int _hashCode = hashCode( + getBigo(), + getBookNo(), + Long.valueOf(getBunhalCnt()), + getBuseoCd(), + getEtc1(), + getGasanAmtSkipGubun(), + getGasanRateGubun(), + Long.valueOf(getGigum()), + Long.valueOf(getGigumGasanAmt()), + Long.valueOf(getGigumIja()), + Long.valueOf(getGukse()), + Long.valueOf(getGukseGasanAmt()), + Long.valueOf(getGukseIja()), + Long.valueOf(getGuse()), + Long.valueOf(getGuseGasanAmt()), + Long.valueOf(getGuseIja()), + getHangmok1(), + getHangmok2(), + getHangmok3(), + getHangmok4(), + getHangmok5(), + getHangmok6(), + getHdongCd(), + getHriCd(), + getLastWorkDate(), + getLastWorkId(), + getMulAptNm(), + getMulBan(), + getMulBdongriCd(), + getMulBon(), + getMulBu(), + getMulCd(), + getMulDong(), + getMulDtlAddr(), + getMulGubun(), + getMulHosu(), + getMulNm(), + getMulOcrSiguCd(), + getMulSpcCd(), + getMulTong(), + getMulZipAddr(), + getMulZipCd(), + getNapBldBon(), + getNapBldBu(), + getNapDdtlAddr(), + getNapDoroAddr(), + getNapDoroCd(), + getNapDrefAddr(), + getNapDtlAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapEmail(), + getNapGubun(), + getNapId(), + getNapMobilNo(), + getNapNm(), + getNapTelNo(), + getNapUndYn(), + getNapZipAddr(), + getNapZipCd(), + getNapbuYmd(), + getNapgiAftYmd(), + getNapgiYmd(), + getOcrBuseoCd(), + getOcrSiguCd(), + getReserve01(), + getReserve02(), + getReserve03(), + getReserve04(), + getReserve05(), + getReserve06(), + getReserve07(), + getReserve08(), + getReserve09(), + getReserve10(), + getResideStatus(), + getRowStatus(), + getSemokCd(), + getSendYmd(), + getSidoCd(), + getSiguCd(), + Long.valueOf(getSise()), + Long.valueOf(getSiseGasanAmt()), + Long.valueOf(getSiseIja()), + getSokwanBuseoCd(), + getSokwanMgrNm(), + getSokwanTelNo(), + Double.valueOf(getSpecialRate()), + Long.valueOf(getSpecialRateApplyCnt()), + getSpecialRateApplySayu(), + Double.valueOf(getSpecialRateHighRate()), + getSuBuseoCd(), + getSysGubun(), + Long.valueOf(getTaxAmt()), + getTaxGubun(), + getTaxNo(), + getTaxYm(), + getTaxYmd(), + Long.valueOf(getVatAmt()) + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04BugaExtWSDTO.class, - Descriptor.field("bigo", "string", true), - Descriptor.field("bookNo", "string", true), - Descriptor.field("bunhalCnt", "long", false), - Descriptor.field("buseoCd", "string", true), - Descriptor.field("etc1", "string", true), - Descriptor.field("gasanAmtSkipGubun", "string", true), - Descriptor.field("gasanRateGubun", "string", true), - Descriptor.field("gigum", "long", false), - Descriptor.field("gigumGasanAmt", "long", false), - Descriptor.field("gigumIja", "long", false), - Descriptor.field("gukse", "long", false), - Descriptor.field("gukseGasanAmt", "long", false), - Descriptor.field("gukseIja", "long", false), - Descriptor.field("guse", "long", false), - Descriptor.field("guseGasanAmt", "long", false), - Descriptor.field("guseIja", "long", false), - Descriptor.field("hangmok1", "string", true), - Descriptor.field("hangmok2", "string", true), - Descriptor.field("hangmok3", "string", true), - Descriptor.field("hangmok4", "string", true), - Descriptor.field("hangmok5", "string", true), - Descriptor.field("hangmok6", "string", true), - Descriptor.field("hdongCd", "string", true), - Descriptor.field("hriCd", "string", true), - Descriptor.field("lastWorkDate", "string", true), - Descriptor.field("lastWorkId", "string", true), - Descriptor.field("mulAptNm", "string", true), - Descriptor.field("mulBan", "string", true), - Descriptor.field("mulBdongriCd", "string", true), - Descriptor.field("mulBon", "string", true), - Descriptor.field("mulBu", "string", true), - Descriptor.field("mulCd", "string", true), - Descriptor.field("mulDong", "string", true), - Descriptor.field("mulDtlAddr", "string", true), - Descriptor.field("mulGubun", "string", true), - Descriptor.field("mulHosu", "string", true), - Descriptor.field("mulNm", "string", true), - Descriptor.field("mulOcrSiguCd", "string", true), - Descriptor.field("mulSpcCd", "string", true), - Descriptor.field("mulTong", "string", true), - Descriptor.field("mulZipAddr", "string", true), - Descriptor.field("mulZipCd", "string", true), - Descriptor.field("napBldBon", "string", true), - Descriptor.field("napBldBu", "string", true), - Descriptor.field("napDdtlAddr", "string", true), - Descriptor.field("napDoroAddr", "string", true), - Descriptor.field("napDoroCd", "string", true), - Descriptor.field("napDrefAddr", "string", true), - Descriptor.field("napDtlAddr", "string", true), - Descriptor.field("napDzipAddr", "string", true), - Descriptor.field("napDzipCd", "string", true), - Descriptor.field("napEmail", "string", true), - Descriptor.field("napGubun", "string", true), - Descriptor.field("napId", "string", true), - Descriptor.field("napMobilNo", "string", true), - Descriptor.field("napNm", "string", true), - Descriptor.field("napTelNo", "string", true), - Descriptor.field("napUndYn", "string", true), - Descriptor.field("napZipAddr", "string", true), - Descriptor.field("napZipCd", "string", true), - Descriptor.field("napbuYmd", "string", true), - Descriptor.field("napgiAftYmd", "string", true), - Descriptor.field("napgiYmd", "string", true), - Descriptor.field("ocrBuseoCd", "string", true), - Descriptor.field("ocrSiguCd", "string", true), - Descriptor.field("reserve01", "string", true), - Descriptor.field("reserve02", "string", true), - Descriptor.field("reserve03", "string", true), - Descriptor.field("reserve04", "string", true), - Descriptor.field("reserve05", "string", true), - Descriptor.field("reserve06", "string", true), - Descriptor.field("reserve07", "string", true), - Descriptor.field("reserve08", "string", true), - Descriptor.field("reserve09", "string", true), - Descriptor.field("reserve10", "string", true), - Descriptor.field("resideStatus", "string", true), - Descriptor.field("rowStatus", "string", true), - Descriptor.field("semokCd", "string", true), - Descriptor.field("sendYmd", "string", true), - Descriptor.field("sidoCd", "string", true), - Descriptor.field("siguCd", "string", true), - Descriptor.field("sise", "long", false), - Descriptor.field("siseGasanAmt", "long", false), - Descriptor.field("siseIja", "long", false), - Descriptor.field("sokwanBuseoCd", "string", true), - Descriptor.field("sokwanMgrNm", "string", true), - Descriptor.field("sokwanTelNo", "string", true), - Descriptor.field("specialRate", "double", false), - Descriptor.field("specialRateApplyCnt", "long", false), - Descriptor.field("specialRateApplySayu", "string", true), - Descriptor.field("specialRateHighRate", "double", false), - Descriptor.field("suBuseoCd", "string", true), - Descriptor.field("sysGubun", "string", true), - Descriptor.field("taxAmt", "long", false), - Descriptor.field("taxGubun", "string", true), - Descriptor.field("taxNo", "string", true), - Descriptor.field("taxYm", "string", true), - Descriptor.field("taxYmd", "string", true), - Descriptor.field("vatAmt", "long", false) + desc -> new ElementDesc[] { + desc.field("bigo", "string", true), + desc.field("bookNo", "string", true), + desc.field("bunhalCnt", "long", false), + desc.field("buseoCd", "string", true), + desc.field("etc1", "string", true), + desc.field("gasanAmtSkipGubun", "string", true), + desc.field("gasanRateGubun", "string", true), + desc.field("gigum", "long", false), + desc.field("gigumGasanAmt", "long", false), + desc.field("gigumIja", "long", false), + desc.field("gukse", "long", false), + desc.field("gukseGasanAmt", "long", false), + desc.field("gukseIja", "long", false), + desc.field("guse", "long", false), + desc.field("guseGasanAmt", "long", false), + desc.field("guseIja", "long", false), + desc.field("hangmok1", "string", true), + desc.field("hangmok2", "string", true), + desc.field("hangmok3", "string", true), + desc.field("hangmok4", "string", true), + desc.field("hangmok5", "string", true), + desc.field("hangmok6", "string", true), + desc.field("hdongCd", "string", true), + desc.field("hriCd", "string", true), + desc.field("lastWorkDate", "string", true), + desc.field("lastWorkId", "string", true), + desc.field("mulAptNm", "string", true), + desc.field("mulBan", "string", true), + desc.field("mulBdongriCd", "string", true), + desc.field("mulBon", "string", true), + desc.field("mulBu", "string", true), + desc.field("mulCd", "string", true), + desc.field("mulDong", "string", true), + desc.field("mulDtlAddr", "string", true), + desc.field("mulGubun", "string", true), + desc.field("mulHosu", "string", true), + desc.field("mulNm", "string", true), + desc.field("mulOcrSiguCd", "string", true), + desc.field("mulSpcCd", "string", true), + desc.field("mulTong", "string", true), + desc.field("mulZipAddr", "string", true), + desc.field("mulZipCd", "string", true), + desc.field("napBldBon", "string", true), + desc.field("napBldBu", "string", true), + desc.field("napDdtlAddr", "string", true), + desc.field("napDoroAddr", "string", true), + desc.field("napDoroCd", "string", true), + desc.field("napDrefAddr", "string", true), + desc.field("napDtlAddr", "string", true), + desc.field("napDzipAddr", "string", true), + desc.field("napDzipCd", "string", true), + desc.field("napEmail", "string", true), + desc.field("napGubun", "string", true), + desc.field("napId", "string", true), + desc.field("napMobilNo", "string", true), + desc.field("napNm", "string", true), + desc.field("napTelNo", "string", true), + desc.field("napUndYn", "string", true), + desc.field("napZipAddr", "string", true), + desc.field("napZipCd", "string", true), + desc.field("napbuYmd", "string", true), + desc.field("napgiAftYmd", "string", true), + desc.field("napgiYmd", "string", true), + desc.field("ocrBuseoCd", "string", true), + desc.field("ocrSiguCd", "string", true), + desc.field("reserve01", "string", true), + desc.field("reserve02", "string", true), + desc.field("reserve03", "string", true), + desc.field("reserve04", "string", true), + desc.field("reserve05", "string", true), + desc.field("reserve06", "string", true), + desc.field("reserve07", "string", true), + desc.field("reserve08", "string", true), + desc.field("reserve09", "string", true), + desc.field("reserve10", "string", true), + desc.field("resideStatus", "string", true), + desc.field("rowStatus", "string", true), + desc.field("semokCd", "string", true), + desc.field("sendYmd", "string", true), + desc.field("sidoCd", "string", true), + desc.field("siguCd", "string", true), + desc.field("sise", "long", false), + desc.field("siseGasanAmt", "long", false), + desc.field("siseIja", "long", false), + desc.field("sokwanBuseoCd", "string", true), + desc.field("sokwanMgrNm", "string", true), + desc.field("sokwanTelNo", "string", true), + desc.field("specialRate", "double", false), + desc.field("specialRateApplyCnt", "long", false), + desc.field("specialRateApplySayu", "string", true), + desc.field("specialRateHighRate", "double", false), + desc.field("suBuseoCd", "string", true), + desc.field("sysGubun", "string", true), + desc.field("taxAmt", "long", false), + desc.field("taxGubun", "string", true), + desc.field("taxNo", "string", true), + desc.field("taxYm", "string", true), + desc.field("taxYmd", "string", true), + desc.field("vatAmt", "long", false) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaWSDTO.java index c0d6eb4..2b5f168 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04BugaWSDTO.java @@ -1,14 +1,15 @@ package cokr.xit.interfaces.sntris.buga; -import java.io.Serializable; - import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; import org.apache.axis.encoding.ser.BeanDeserializer; import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; /** * @Description : 세외수입웹서비스 dto * @Version 1.0 @@ -19,7 +20,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04BugaWSDTO implements Serializable { +public class Bu04BugaWSDTO extends SntrisWSDTO { private static final long serialVersionUID = 1L; /** 비고 */ @@ -1595,7 +1596,33 @@ public class Bu04BugaWSDTO implements Serializable { this.vatAmt = vatAmt; } + public void setInfo(Bu04UserInfoWSDTO userInfo) { + setSiguCd(userInfo.getSiguCd()); + setBuseoCd(userInfo.getBuseoCd()); + } + + public void setInfo(Bu04SemokWSDTO semokInfo) { +// semokInfo.getGasanRate(); + setGasanRateGubun(semokInfo.getGasanRateGubun()); + setOcrBuseoCd(semokInfo.getOcrBuseoCd()); + setOcrSiguCd(semokInfo.getOcrSiguCd()); +// semokInfo.getSemokNm(); + setSuBuseoCd(semokInfo.getSuBuseoCd()); +// semokInfo.getVatYn(); + + if (semokInfo instanceof Bu04SemokWSRACSDTO racs) { + setHangmok1(racs.getHangmokcd1()); + setHangmok2(racs.getHangmokcd2()); + setHangmok3(racs.getHangmokcd3()); + setHangmok4(racs.getHangmokcd4()); + setHangmok5(racs.getHangmokcd5()); + setHangmok6(racs.getHangmokcd6()); +// racs.getNapgiGubun(); + } + } + private Object __equalsCalc = null; + @Override public synchronized boolean equals(Object obj) { if (!(obj instanceof Bu04BugaWSDTO)) return false; @@ -1605,27 +1632,14 @@ public class Bu04BugaWSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.bigo==null && other.getBigo()==null) || - (this.bigo!=null && - this.bigo.equals(other.getBigo()))) && - ((this.bookNo==null && other.getBookNo()==null) || - (this.bookNo!=null && - this.bookNo.equals(other.getBookNo()))) && + boolean _equals = + equals(this.bigo, other.getBigo()) && + equals(this.bookNo, other.getBookNo()) && this.bunhalCnt == other.getBunhalCnt() && - ((this.buseoCd==null && other.getBuseoCd()==null) || - (this.buseoCd!=null && - this.buseoCd.equals(other.getBuseoCd()))) && - ((this.etc1==null && other.getEtc1()==null) || - (this.etc1!=null && - this.etc1.equals(other.getEtc1()))) && - ((this.gasanAmtSkipGubun==null && other.getGasanAmtSkipGubun()==null) || - (this.gasanAmtSkipGubun!=null && - this.gasanAmtSkipGubun.equals(other.getGasanAmtSkipGubun()))) && - ((this.gasanRateGubun==null && other.getGasanRateGubun()==null) || - (this.gasanRateGubun!=null && - this.gasanRateGubun.equals(other.getGasanRateGubun()))) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.etc1, other.getEtc1()) && + equals(this.gasanAmtSkipGubun, other.getGasanAmtSkipGubun()) && + equals(this.gasanRateGubun, other.getGasanRateGubun()) && this.gigum == other.getGigum() && this.gigumGasanAmt == other.getGigumGasanAmt() && this.gigumIja == other.getGigumIja() && @@ -1635,202 +1649,76 @@ public class Bu04BugaWSDTO implements Serializable { this.guse == other.getGuse() && this.guseGasanAmt == other.getGuseGasanAmt() && this.guseIja == other.getGuseIja() && - ((this.hangmok1==null && other.getHangmok1()==null) || - (this.hangmok1!=null && - this.hangmok1.equals(other.getHangmok1()))) && - ((this.hangmok2==null && other.getHangmok2()==null) || - (this.hangmok2!=null && - this.hangmok2.equals(other.getHangmok2()))) && - ((this.hangmok3==null && other.getHangmok3()==null) || - (this.hangmok3!=null && - this.hangmok3.equals(other.getHangmok3()))) && - ((this.hangmok4==null && other.getHangmok4()==null) || - (this.hangmok4!=null && - this.hangmok4.equals(other.getHangmok4()))) && - ((this.hangmok5==null && other.getHangmok5()==null) || - (this.hangmok5!=null && - this.hangmok5.equals(other.getHangmok5()))) && - ((this.hangmok6==null && other.getHangmok6()==null) || - (this.hangmok6!=null && - this.hangmok6.equals(other.getHangmok6()))) && - ((this.hdongCd==null && other.getHdongCd()==null) || - (this.hdongCd!=null && - this.hdongCd.equals(other.getHdongCd()))) && - ((this.lastWorkDate==null && other.getLastWorkDate()==null) || - (this.lastWorkDate!=null && - this.lastWorkDate.equals(other.getLastWorkDate()))) && - ((this.lastWorkId==null && other.getLastWorkId()==null) || - (this.lastWorkId!=null && - this.lastWorkId.equals(other.getLastWorkId()))) && - ((this.mulAptNm==null && other.getMulAptNm()==null) || - (this.mulAptNm!=null && - this.mulAptNm.equals(other.getMulAptNm()))) && - ((this.mulBan==null && other.getMulBan()==null) || - (this.mulBan!=null && - this.mulBan.equals(other.getMulBan()))) && - ((this.mulBdongriCd==null && other.getMulBdongriCd()==null) || - (this.mulBdongriCd!=null && - this.mulBdongriCd.equals(other.getMulBdongriCd()))) && - ((this.mulBon==null && other.getMulBon()==null) || - (this.mulBon!=null && - this.mulBon.equals(other.getMulBon()))) && - ((this.mulBu==null && other.getMulBu()==null) || - (this.mulBu!=null && - this.mulBu.equals(other.getMulBu()))) && - ((this.mulDong==null && other.getMulDong()==null) || - (this.mulDong!=null && - this.mulDong.equals(other.getMulDong()))) && - ((this.mulDtlAddr==null && other.getMulDtlAddr()==null) || - (this.mulDtlAddr!=null && - this.mulDtlAddr.equals(other.getMulDtlAddr()))) && - ((this.mulGubun==null && other.getMulGubun()==null) || - (this.mulGubun!=null && - this.mulGubun.equals(other.getMulGubun()))) && - ((this.mulHosu==null && other.getMulHosu()==null) || - (this.mulHosu!=null && - this.mulHosu.equals(other.getMulHosu()))) && - ((this.mulNm==null && other.getMulNm()==null) || - (this.mulNm!=null && - this.mulNm.equals(other.getMulNm()))) && - ((this.mulOcrSiguCd==null && other.getMulOcrSiguCd()==null) || - (this.mulOcrSiguCd!=null && - this.mulOcrSiguCd.equals(other.getMulOcrSiguCd()))) && - ((this.mulSpcCd==null && other.getMulSpcCd()==null) || - (this.mulSpcCd!=null && - this.mulSpcCd.equals(other.getMulSpcCd()))) && - ((this.mulTong==null && other.getMulTong()==null) || - (this.mulTong!=null && - this.mulTong.equals(other.getMulTong()))) && - ((this.mulZipAddr==null && other.getMulZipAddr()==null) || - (this.mulZipAddr!=null && - this.mulZipAddr.equals(other.getMulZipAddr()))) && - ((this.mulZipCd==null && other.getMulZipCd()==null) || - (this.mulZipCd!=null && - this.mulZipCd.equals(other.getMulZipCd()))) && - ((this.napBldBon==null && other.getNapBldBon()==null) || - (this.napBldBon!=null && - this.napBldBon.equals(other.getNapBldBon()))) && - ((this.napBldBu==null && other.getNapBldBu()==null) || - (this.napBldBu!=null && - this.napBldBu.equals(other.getNapBldBu()))) && - ((this.napDdtlAddr==null && other.getNapDdtlAddr()==null) || - (this.napDdtlAddr!=null && - this.napDdtlAddr.equals(other.getNapDdtlAddr()))) && - ((this.napDoroAddr==null && other.getNapDoroAddr()==null) || - (this.napDoroAddr!=null && - this.napDoroAddr.equals(other.getNapDoroAddr()))) && - ((this.napDoroCd==null && other.getNapDoroCd()==null) || - (this.napDoroCd!=null && - this.napDoroCd.equals(other.getNapDoroCd()))) && - ((this.napDrefAddr==null && other.getNapDrefAddr()==null) || - (this.napDrefAddr!=null && - this.napDrefAddr.equals(other.getNapDrefAddr()))) && - ((this.napDtlAddr==null && other.getNapDtlAddr()==null) || - (this.napDtlAddr!=null && - this.napDtlAddr.equals(other.getNapDtlAddr()))) && - ((this.napDzipAddr==null && other.getNapDzipAddr()==null) || - (this.napDzipAddr!=null && - this.napDzipAddr.equals(other.getNapDzipAddr()))) && - ((this.napDzipCd==null && other.getNapDzipCd()==null) || - (this.napDzipCd!=null && - this.napDzipCd.equals(other.getNapDzipCd()))) && - ((this.napEmail==null && other.getNapEmail()==null) || - (this.napEmail!=null && - this.napEmail.equals(other.getNapEmail()))) && - ((this.napGubun==null && other.getNapGubun()==null) || - (this.napGubun!=null && - this.napGubun.equals(other.getNapGubun()))) && - ((this.napId==null && other.getNapId()==null) || - (this.napId!=null && - this.napId.equals(other.getNapId()))) && - ((this.napMobilNo==null && other.getNapMobilNo()==null) || - (this.napMobilNo!=null && - this.napMobilNo.equals(other.getNapMobilNo()))) && - ((this.napNm==null && other.getNapNm()==null) || - (this.napNm!=null && - this.napNm.equals(other.getNapNm()))) && - ((this.napTelNo==null && other.getNapTelNo()==null) || - (this.napTelNo!=null && - this.napTelNo.equals(other.getNapTelNo()))) && - ((this.napUndYn==null && other.getNapUndYn()==null) || - (this.napUndYn!=null && - this.napUndYn.equals(other.getNapUndYn()))) && - ((this.napZipAddr==null && other.getNapZipAddr()==null) || - (this.napZipAddr!=null && - this.napZipAddr.equals(other.getNapZipAddr()))) && - ((this.napZipCd==null && other.getNapZipCd()==null) || - (this.napZipCd!=null && - this.napZipCd.equals(other.getNapZipCd()))) && - ((this.napbuYmd==null && other.getNapbuYmd()==null) || - (this.napbuYmd!=null && - this.napbuYmd.equals(other.getNapbuYmd()))) && - ((this.napgiAftYmd==null && other.getNapgiAftYmd()==null) || - (this.napgiAftYmd!=null && - this.napgiAftYmd.equals(other.getNapgiAftYmd()))) && - ((this.napgiYmd==null && other.getNapgiYmd()==null) || - (this.napgiYmd!=null && - this.napgiYmd.equals(other.getNapgiYmd()))) && - ((this.ocrBuseoCd==null && other.getOcrBuseoCd()==null) || - (this.ocrBuseoCd!=null && - this.ocrBuseoCd.equals(other.getOcrBuseoCd()))) && - ((this.ocrSiguCd==null && other.getOcrSiguCd()==null) || - (this.ocrSiguCd!=null && - this.ocrSiguCd.equals(other.getOcrSiguCd()))) && - ((this.resideStatus==null && other.getResideStatus()==null) || - (this.resideStatus!=null && - this.resideStatus.equals(other.getResideStatus()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.semokCd==null && other.getSemokCd()==null) || - (this.semokCd!=null && - this.semokCd.equals(other.getSemokCd()))) && - ((this.sendYmd==null && other.getSendYmd()==null) || - (this.sendYmd!=null && - this.sendYmd.equals(other.getSendYmd()))) && - ((this.sidoCd==null && other.getSidoCd()==null) || - (this.sidoCd!=null && - this.sidoCd.equals(other.getSidoCd()))) && - ((this.siguCd==null && other.getSiguCd()==null) || - (this.siguCd!=null && - this.siguCd.equals(other.getSiguCd()))) && + equals(this.hangmok1, other.getHangmok1()) && + equals(this.hangmok2, other.getHangmok2()) && + equals(this.hangmok3, other.getHangmok3()) && + equals(this.hangmok4, other.getHangmok4()) && + equals(this.hangmok5, other.getHangmok5()) && + equals(this.hangmok6, other.getHangmok6()) && + equals(this.hdongCd, other.getHdongCd()) && + equals(this.lastWorkDate, other.getLastWorkDate()) && + equals(this.lastWorkId, other.getLastWorkId()) && + equals(this.mulAptNm, other.getMulAptNm()) && + equals(this.mulBan, other.getMulBan()) && + equals(this.mulBdongriCd, other.getMulBdongriCd()) && + equals(this.mulBon, other.getMulBon()) && + equals(this.mulBu, other.getMulBu()) && + equals(this.mulDong, other.getMulDong()) && + equals(this.mulDtlAddr, other.getMulDtlAddr()) && + equals(this.mulGubun, other.getMulGubun()) && + equals(this.mulHosu, other.getMulHosu()) && + equals(this.mulNm, other.getMulNm()) && + equals(this.mulOcrSiguCd, other.getMulOcrSiguCd()) && + equals(this.mulSpcCd, other.getMulSpcCd()) && + equals(this.mulTong, other.getMulTong()) && + equals(this.mulZipAddr, other.getMulZipAddr()) && + equals(this.mulZipCd, other.getMulZipCd()) && + equals(this.napBldBon, other.getNapBldBon()) && + equals(this.napBldBu, other.getNapBldBu()) && + equals(this.napDdtlAddr, other.getNapDdtlAddr()) && + equals(this.napDoroAddr, other.getNapDoroAddr()) && + equals(this.napDoroCd, other.getNapDoroCd()) && + equals(this.napDrefAddr, other.getNapDrefAddr()) && + equals(this.napDtlAddr, other.getNapDtlAddr()) && + equals(this.napDzipAddr, other.getNapDzipAddr()) && + equals(this.napDzipCd, other.getNapDzipCd()) && + equals(this.napEmail, other.getNapEmail()) && + equals(this.napGubun, other.getNapGubun()) && + equals(this.napId, other.getNapId()) && + equals(this.napMobilNo, other.getNapMobilNo()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napTelNo, other.getNapTelNo()) && + equals(this.napUndYn, other.getNapUndYn()) && + equals(this.napZipAddr, other.getNapZipAddr()) && + equals(this.napZipCd, other.getNapZipCd()) && + equals(this.napbuYmd, other.getNapbuYmd()) && + equals(this.napgiAftYmd, other.getNapgiAftYmd()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.ocrBuseoCd, other.getOcrBuseoCd()) && + equals(this.ocrSiguCd, other.getOcrSiguCd()) && + equals(this.resideStatus, other.getResideStatus()) && + equals(this.rowStatus, other.getRowStatus()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.sendYmd, other.getSendYmd()) && + equals(this.sidoCd, other.getSidoCd()) && + equals(this.siguCd, other.getSiguCd()) && this.sise == other.getSise() && this.siseGasanAmt == other.getSiseGasanAmt() && this.siseIja == other.getSiseIja() && - ((this.sokwanBuseoCd==null && other.getSokwanBuseoCd()==null) || - (this.sokwanBuseoCd!=null && - this.sokwanBuseoCd.equals(other.getSokwanBuseoCd()))) && - ((this.sokwanMgrNm==null && other.getSokwanMgrNm()==null) || - (this.sokwanMgrNm!=null && - this.sokwanMgrNm.equals(other.getSokwanMgrNm()))) && - ((this.sokwanTelNo==null && other.getSokwanTelNo()==null) || - (this.sokwanTelNo!=null && - this.sokwanTelNo.equals(other.getSokwanTelNo()))) && + equals(this.sokwanBuseoCd, other.getSokwanBuseoCd()) && + equals(this.sokwanMgrNm, other.getSokwanMgrNm()) && + equals(this.sokwanTelNo, other.getSokwanTelNo()) && this.specialRate == other.getSpecialRate() && this.specialRateApplyCnt == other.getSpecialRateApplyCnt() && - ((this.specialRateApplySayu==null && other.getSpecialRateApplySayu()==null) || - (this.specialRateApplySayu!=null && - this.specialRateApplySayu.equals(other.getSpecialRateApplySayu()))) && + equals(this.specialRateApplySayu, other.getSpecialRateApplySayu()) && this.specialRateHighRate == other.getSpecialRateHighRate() && - ((this.suBuseoCd==null && other.getSuBuseoCd()==null) || - (this.suBuseoCd!=null && - this.suBuseoCd.equals(other.getSuBuseoCd()))) && - ((this.sysGubun==null && other.getSysGubun()==null) || - (this.sysGubun!=null && - this.sysGubun.equals(other.getSysGubun()))) && + equals(this.suBuseoCd, other.getSuBuseoCd()) && + equals(this.sysGubun, other.getSysGubun()) && this.taxAmt == other.getTaxAmt() && - ((this.taxGubun==null && other.getTaxGubun()==null) || - (this.taxGubun!=null && - this.taxGubun.equals(other.getTaxGubun()))) && - ((this.taxNo==null && other.getTaxNo()==null) || - (this.taxNo!=null && - this.taxNo.equals(other.getTaxNo()))) && - ((this.taxYm==null && other.getTaxYm()==null) || - (this.taxYm!=null && - this.taxYm.equals(other.getTaxYm()))) && - ((this.taxYmd==null && other.getTaxYmd()==null) || - (this.taxYmd!=null && - this.taxYmd.equals(other.getTaxYmd()))) && + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()) && + equals(this.taxYmd, other.getTaxYmd()) && this.vatAmt == other.getVatAmt(); __equalsCalc = null; return _equals; @@ -1843,326 +1731,191 @@ public class Bu04BugaWSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - if (getBigo() != null) { - _hashCode += getBigo().hashCode(); - } - if (getBookNo() != null) { - _hashCode += getBookNo().hashCode(); - } - _hashCode += Long.valueOf(getBunhalCnt()).hashCode(); - if (getBuseoCd() != null) { - _hashCode += getBuseoCd().hashCode(); - } - if (getEtc1() != null) { - _hashCode += getEtc1().hashCode(); - } - if (getGasanAmtSkipGubun() != null) { - _hashCode += getGasanAmtSkipGubun().hashCode(); - } - if (getGasanRateGubun() != null) { - _hashCode += getGasanRateGubun().hashCode(); - } - _hashCode += Long.valueOf(getGigum()).hashCode(); - _hashCode += Long.valueOf(getGigumGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getGigumIja()).hashCode(); - _hashCode += Long.valueOf(getGukse()).hashCode(); - _hashCode += Long.valueOf(getGukseGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getGukseIja()).hashCode(); - _hashCode += Long.valueOf(getGuse()).hashCode(); - _hashCode += Long.valueOf(getGuseGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getGuseIja()).hashCode(); - if (getHangmok1() != null) { - _hashCode += getHangmok1().hashCode(); - } - if (getHangmok2() != null) { - _hashCode += getHangmok2().hashCode(); - } - if (getHangmok3() != null) { - _hashCode += getHangmok3().hashCode(); - } - if (getHangmok4() != null) { - _hashCode += getHangmok4().hashCode(); - } - if (getHangmok5() != null) { - _hashCode += getHangmok5().hashCode(); - } - if (getHangmok6() != null) { - _hashCode += getHangmok6().hashCode(); - } - if (getHdongCd() != null) { - _hashCode += getHdongCd().hashCode(); - } - if (getLastWorkDate() != null) { - _hashCode += getLastWorkDate().hashCode(); - } - if (getLastWorkId() != null) { - _hashCode += getLastWorkId().hashCode(); - } - if (getMulAptNm() != null) { - _hashCode += getMulAptNm().hashCode(); - } - if (getMulBan() != null) { - _hashCode += getMulBan().hashCode(); - } - if (getMulBdongriCd() != null) { - _hashCode += getMulBdongriCd().hashCode(); - } - if (getMulBon() != null) { - _hashCode += getMulBon().hashCode(); - } - if (getMulBu() != null) { - _hashCode += getMulBu().hashCode(); - } - if (getMulDong() != null) { - _hashCode += getMulDong().hashCode(); - } - if (getMulDtlAddr() != null) { - _hashCode += getMulDtlAddr().hashCode(); - } - if (getMulGubun() != null) { - _hashCode += getMulGubun().hashCode(); - } - if (getMulHosu() != null) { - _hashCode += getMulHosu().hashCode(); - } - if (getMulNm() != null) { - _hashCode += getMulNm().hashCode(); - } - if (getMulOcrSiguCd() != null) { - _hashCode += getMulOcrSiguCd().hashCode(); - } - if (getMulSpcCd() != null) { - _hashCode += getMulSpcCd().hashCode(); - } - if (getMulTong() != null) { - _hashCode += getMulTong().hashCode(); - } - if (getMulZipAddr() != null) { - _hashCode += getMulZipAddr().hashCode(); - } - if (getMulZipCd() != null) { - _hashCode += getMulZipCd().hashCode(); - } - if (getNapBldBon() != null) { - _hashCode += getNapBldBon().hashCode(); - } - if (getNapBldBu() != null) { - _hashCode += getNapBldBu().hashCode(); - } - if (getNapDdtlAddr() != null) { - _hashCode += getNapDdtlAddr().hashCode(); - } - if (getNapDoroAddr() != null) { - _hashCode += getNapDoroAddr().hashCode(); - } - if (getNapDoroCd() != null) { - _hashCode += getNapDoroCd().hashCode(); - } - if (getNapDrefAddr() != null) { - _hashCode += getNapDrefAddr().hashCode(); - } - if (getNapDtlAddr() != null) { - _hashCode += getNapDtlAddr().hashCode(); - } - if (getNapDzipAddr() != null) { - _hashCode += getNapDzipAddr().hashCode(); - } - if (getNapDzipCd() != null) { - _hashCode += getNapDzipCd().hashCode(); - } - if (getNapEmail() != null) { - _hashCode += getNapEmail().hashCode(); - } - if (getNapGubun() != null) { - _hashCode += getNapGubun().hashCode(); - } - if (getNapId() != null) { - _hashCode += getNapId().hashCode(); - } - if (getNapMobilNo() != null) { - _hashCode += getNapMobilNo().hashCode(); - } - if (getNapNm() != null) { - _hashCode += getNapNm().hashCode(); - } - if (getNapTelNo() != null) { - _hashCode += getNapTelNo().hashCode(); - } - if (getNapUndYn() != null) { - _hashCode += getNapUndYn().hashCode(); - } - if (getNapZipAddr() != null) { - _hashCode += getNapZipAddr().hashCode(); - } - if (getNapZipCd() != null) { - _hashCode += getNapZipCd().hashCode(); - } - if (getNapbuYmd() != null) { - _hashCode += getNapbuYmd().hashCode(); - } - if (getNapgiAftYmd() != null) { - _hashCode += getNapgiAftYmd().hashCode(); - } - if (getNapgiYmd() != null) { - _hashCode += getNapgiYmd().hashCode(); - } - if (getOcrBuseoCd() != null) { - _hashCode += getOcrBuseoCd().hashCode(); - } - if (getOcrSiguCd() != null) { - _hashCode += getOcrSiguCd().hashCode(); - } - if (getResideStatus() != null) { - _hashCode += getResideStatus().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSemokCd() != null) { - _hashCode += getSemokCd().hashCode(); - } - if (getSendYmd() != null) { - _hashCode += getSendYmd().hashCode(); - } - if (getSidoCd() != null) { - _hashCode += getSidoCd().hashCode(); - } - if (getSiguCd() != null) { - _hashCode += getSiguCd().hashCode(); - } - _hashCode += Long.valueOf(getSise()).hashCode(); - _hashCode += Long.valueOf(getSiseGasanAmt()).hashCode(); - _hashCode += Long.valueOf(getSiseIja()).hashCode(); - if (getSokwanBuseoCd() != null) { - _hashCode += getSokwanBuseoCd().hashCode(); - } - if (getSokwanMgrNm() != null) { - _hashCode += getSokwanMgrNm().hashCode(); - } - if (getSokwanTelNo() != null) { - _hashCode += getSokwanTelNo().hashCode(); - } - _hashCode += Double.valueOf(getSpecialRate()).hashCode(); - _hashCode += Long.valueOf(getSpecialRateApplyCnt()).hashCode(); - if (getSpecialRateApplySayu() != null) { - _hashCode += getSpecialRateApplySayu().hashCode(); - } - _hashCode += Double.valueOf(getSpecialRateHighRate()).hashCode(); - if (getSuBuseoCd() != null) { - _hashCode += getSuBuseoCd().hashCode(); - } - if (getSysGubun() != null) { - _hashCode += getSysGubun().hashCode(); - } - _hashCode += Long.valueOf(getTaxAmt()).hashCode(); - if (getTaxGubun() != null) { - _hashCode += getTaxGubun().hashCode(); - } - if (getTaxNo() != null) { - _hashCode += getTaxNo().hashCode(); - } - if (getTaxYm() != null) { - _hashCode += getTaxYm().hashCode(); - } - if (getTaxYmd() != null) { - _hashCode += getTaxYmd().hashCode(); - } - _hashCode += Long.valueOf(getVatAmt()).hashCode(); + int _hashCode = hashCode( + getBigo(), + getBookNo(), + Long.valueOf(getBunhalCnt()), + getBuseoCd(), + getEtc1(), + getGasanAmtSkipGubun(), + getGasanRateGubun(), + Long.valueOf(getGigum()), + Long.valueOf(getGigumGasanAmt()), + Long.valueOf(getGigumIja()), + Long.valueOf(getGukse()), + Long.valueOf(getGukseGasanAmt()), + Long.valueOf(getGukseIja()), + Long.valueOf(getGuse()), + Long.valueOf(getGuseGasanAmt()), + Long.valueOf(getGuseIja()), + getHangmok1(), + getHangmok2(), + getHangmok3(), + getHangmok4(), + getHangmok5(), + getHangmok6(), + getHdongCd(), + getLastWorkDate(), + getLastWorkId(), + getMulAptNm(), + getMulBan(), + getMulBdongriCd(), + getMulBon(), + getMulBu(), + getMulDong(), + getMulDtlAddr(), + getMulGubun(), + getMulHosu(), + getMulNm(), + getMulOcrSiguCd(), + getMulSpcCd(), + getMulTong(), + getMulZipAddr(), + getMulZipCd(), + getNapBldBon(), + getNapBldBu(), + getNapDdtlAddr(), + getNapDoroAddr(), + getNapDoroCd(), + getNapDrefAddr(), + getNapDtlAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapEmail(), + getNapGubun(), + getNapId(), + getNapMobilNo(), + getNapNm(), + getNapTelNo(), + getNapUndYn(), + getNapZipAddr(), + getNapZipCd(), + getNapbuYmd(), + getNapgiAftYmd(), + getNapgiYmd(), + getOcrBuseoCd(), + getOcrSiguCd(), + getResideStatus(), + getRowStatus(), + getSemokCd(), + getSendYmd(), + getSidoCd(), + getSiguCd(), + Long.valueOf(getSise()), + Long.valueOf(getSiseGasanAmt()), + Long.valueOf(getSiseIja()), + getSokwanBuseoCd(), + getSokwanMgrNm(), + getSokwanTelNo(), + Double.valueOf(getSpecialRate()), + Long.valueOf(getSpecialRateApplyCnt()), + getSpecialRateApplySayu(), + Double.valueOf(getSpecialRateHighRate()), + getSuBuseoCd(), + getSysGubun(), + Long.valueOf(getTaxAmt()), + getTaxGubun(), + getTaxNo(), + getTaxYm(), + getTaxYmd(), + Long.valueOf(getVatAmt()).hashCode() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04BugaWSDTO.class, - Descriptor.field("bigo", "string", true), - Descriptor.field("bookNo", "string", true), - Descriptor.field("bunhalCnt", "long", false), - Descriptor.field("buseoCd", "string", true), - Descriptor.field("etc1", "string", true), - Descriptor.field("gasanAmtSkipGubun", "string", true), - Descriptor.field("gasanRateGubun", "string", true), - Descriptor.field("gigum", "long", false), - Descriptor.field("gigumGasanAmt", "long", false), - Descriptor.field("gigumIja", "long", false), - Descriptor.field("gukse", "long", false), - Descriptor.field("gukseGasanAmt", "long", false), - Descriptor.field("gukseIja", "long", false), - Descriptor.field("guse", "long", false), - Descriptor.field("guseGasanAmt", "long", false), - Descriptor.field("guseIja", "long", false), - Descriptor.field("hangmok1", "string", true), - Descriptor.field("hangmok2", "string", true), - Descriptor.field("hangmok3", "string", true), - Descriptor.field("hangmok4", "string", true), - Descriptor.field("hangmok5", "string", true), - Descriptor.field("hangmok6", "string", true), - Descriptor.field("hdongCd", "string", true), - Descriptor.field("lastWorkDate", "string", true), - Descriptor.field("lastWorkId", "string", true), - Descriptor.field("mulAptNm", "string", true), - Descriptor.field("mulBan", "string", true), - Descriptor.field("mulBdongriCd", "string", true), - Descriptor.field("mulBon", "string", true), - Descriptor.field("mulBu", "string", true), - Descriptor.field("mulDong", "string", true), - Descriptor.field("mulDtlAddr", "string", true), - Descriptor.field("mulGubun", "string", true), - Descriptor.field("mulHosu", "string", true), - Descriptor.field("mulNm", "string", true), - Descriptor.field("mulOcrSiguCd", "string", true), - Descriptor.field("mulSpcCd", "string", true), - Descriptor.field("mulTong", "string", true), - Descriptor.field("mulZipAddr", "string", true), - Descriptor.field("mulZipCd", "string", true), - Descriptor.field("napBldBon", "string", true), - Descriptor.field("napBldBu", "string", true), - Descriptor.field("napDdtlAddr", "string", true), - Descriptor.field("napDoroAddr", "string", true), - Descriptor.field("napDoroCd", "string", true), - Descriptor.field("napDrefAddr", "string", true), - Descriptor.field("napDtlAddr", "string", true), - Descriptor.field("napDzipAddr", "string", true), - Descriptor.field("napDzipCd", "string", true), - Descriptor.field("napEmail", "string", true), - Descriptor.field("napGubun", "string", true), - Descriptor.field("napId", "string", true), - Descriptor.field("napMobilNo", "string", true), - Descriptor.field("napNm", "string", true), - Descriptor.field("napTelNo", "string", true), - Descriptor.field("napUndYn", "string", true), - Descriptor.field("napZipAddr", "string", true), - Descriptor.field("napZipCd", "string", true), - Descriptor.field("napbuYmd", "string", true), - Descriptor.field("napgiAftYmd", "string", true), - Descriptor.field("napgiYmd", "string", true), - Descriptor.field("ocrBuseoCd", "string", true), - Descriptor.field("ocrSiguCd", "string", true), - Descriptor.field("resideStatus", "string", true), - Descriptor.field("rowStatus", "string", true), - Descriptor.field("semokCd", "string", true), - Descriptor.field("sendYmd", "string", true), - Descriptor.field("sidoCd", "string", true), - Descriptor.field("siguCd", "string", true), - Descriptor.field("sise", "long", false), - Descriptor.field("siseGasanAmt", "long", false), - Descriptor.field("siseIja", "long", false), - Descriptor.field("sokwanBuseoCd", "string", true), - Descriptor.field("sokwanMgrNm", "string", true), - Descriptor.field("sokwanTelNo", "string", true), - Descriptor.field("specialRate", "double", false), - Descriptor.field("specialRateApplyCnt", "long", false), - Descriptor.field("specialRateApplySayu", "string", true), - Descriptor.field("specialRateHighRate", "double", false), - Descriptor.field("suBuseoCd", "string", true), - Descriptor.field("sysGubun", "string", true), - Descriptor.field("taxAmt", "long", false), - Descriptor.field("taxGubun", "string", true), - Descriptor.field("taxNo", "string", true), - Descriptor.field("taxYm", "string", true), - Descriptor.field("taxYmd", "string", true), - Descriptor.field("vatAmt", "long", false) + desc -> new ElementDesc[] { + desc.field("bigo", "string", true), + desc.field("bookNo", "string", true), + desc.field("bunhalCnt", "long", false), + desc.field("buseoCd", "string", true), + desc.field("etc1", "string", true), + desc.field("gasanAmtSkipGubun", "string", true), + desc.field("gasanRateGubun", "string", true), + desc.field("gigum", "long", false), + desc.field("gigumGasanAmt", "long", false), + desc.field("gigumIja", "long", false), + desc.field("gukse", "long", false), + desc.field("gukseGasanAmt", "long", false), + desc.field("gukseIja", "long", false), + desc.field("guse", "long", false), + desc.field("guseGasanAmt", "long", false), + desc.field("guseIja", "long", false), + desc.field("hangmok1", "string", true), + desc.field("hangmok2", "string", true), + desc.field("hangmok3", "string", true), + desc.field("hangmok4", "string", true), + desc.field("hangmok5", "string", true), + desc.field("hangmok6", "string", true), + desc.field("hdongCd", "string", true), + desc.field("lastWorkDate", "string", true), + desc.field("lastWorkId", "string", true), + desc.field("mulAptNm", "string", true), + desc.field("mulBan", "string", true), + desc.field("mulBdongriCd", "string", true), + desc.field("mulBon", "string", true), + desc.field("mulBu", "string", true), + desc.field("mulDong", "string", true), + desc.field("mulDtlAddr", "string", true), + desc.field("mulGubun", "string", true), + desc.field("mulHosu", "string", true), + desc.field("mulNm", "string", true), + desc.field("mulOcrSiguCd", "string", true), + desc.field("mulSpcCd", "string", true), + desc.field("mulTong", "string", true), + desc.field("mulZipAddr", "string", true), + desc.field("mulZipCd", "string", true), + desc.field("napBldBon", "string", true), + desc.field("napBldBu", "string", true), + desc.field("napDdtlAddr", "string", true), + desc.field("napDoroAddr", "string", true), + desc.field("napDoroCd", "string", true), + desc.field("napDrefAddr", "string", true), + desc.field("napDtlAddr", "string", true), + desc.field("napDzipAddr", "string", true), + desc.field("napDzipCd", "string", true), + desc.field("napEmail", "string", true), + desc.field("napGubun", "string", true), + desc.field("napId", "string", true), + desc.field("napMobilNo", "string", true), + desc.field("napNm", "string", true), + desc.field("napTelNo", "string", true), + desc.field("napUndYn", "string", true), + desc.field("napZipAddr", "string", true), + desc.field("napZipCd", "string", true), + desc.field("napbuYmd", "string", true), + desc.field("napgiAftYmd", "string", true), + desc.field("napgiYmd", "string", true), + desc.field("ocrBuseoCd", "string", true), + desc.field("ocrSiguCd", "string", true), + desc.field("resideStatus", "string", true), + desc.field("rowStatus", "string", true), + desc.field("semokCd", "string", true), + desc.field("sendYmd", "string", true), + desc.field("sidoCd", "string", true), + desc.field("siguCd", "string", true), + desc.field("sise", "long", false), + desc.field("siseGasanAmt", "long", false), + desc.field("siseIja", "long", false), + desc.field("sokwanBuseoCd", "string", true), + desc.field("sokwanMgrNm", "string", true), + desc.field("sokwanTelNo", "string", true), + desc.field("specialRate", "double", false), + desc.field("specialRateApplyCnt", "long", false), + desc.field("specialRateApplySayu", "string", true), + desc.field("specialRateHighRate", "double", false), + desc.field("suBuseoCd", "string", true), + desc.field("sysGubun", "string", true), + desc.field("taxAmt", "long", false), + desc.field("taxGubun", "string", true), + desc.field("taxNo", "string", true), + desc.field("taxYm", "string", true), + desc.field("taxYmd", "string", true), + desc.field("vatAmt", "long", false) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04GyuljeInfoDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04GyuljeInfoDTO.java index 763ec3e..1fc3d50 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04GyuljeInfoDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04GyuljeInfoDTO.java @@ -1,14 +1,15 @@ package cokr.xit.interfaces.sntris.buga; -import java.io.Serializable; - import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; import org.apache.axis.encoding.ser.BeanDeserializer; import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; /** * @Class Name : Bu04GyuljeInfoDTO.java * @Description : 세외수입웹서비스 dto @@ -20,7 +21,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04GyuljeInfoDTO implements Serializable { +public class Bu04GyuljeInfoDTO extends SntrisWSDTO { private static final long serialVersionUID = 1L; private String gyuleNo; @@ -108,20 +109,11 @@ public class Bu04GyuljeInfoDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.gyuleNo==null && other.getGyuleNo()==null) || - (this.gyuleNo!=null && - this.gyuleNo.equals(other.getGyuleNo()))) && - ((this.gyuleYmd==null && other.getGyuleYmd()==null) || - (this.gyuleYmd!=null && - this.gyuleYmd.equals(other.getGyuleYmd()))) && - ((this.gyuljaeGubun==null && other.getGyuljaeGubun()==null) || - (this.gyuljaeGubun!=null && - this.gyuljaeGubun.equals(other.getGyuljaeGubun()))) && - ((this.gyuljaeYmd==null && other.getGyuljaeYmd()==null) || - (this.gyuljaeYmd!=null && - this.gyuljaeYmd.equals(other.getGyuljaeYmd()))); + boolean _equals = + equals(this.gyuleNo, other.getGyuleNo()) && + equals(this.gyuleYmd, other.getGyuleYmd()) && + equals(this.gyuljaeGubun, other.getGyuljaeGubun()) && + equals(this.gyuljaeYmd, other.getGyuljaeYmd()); __equalsCalc = null; return _equals; } @@ -133,30 +125,25 @@ public class Bu04GyuljeInfoDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - if (getGyuleNo() != null) { - _hashCode += getGyuleNo().hashCode(); - } - if (getGyuleYmd() != null) { - _hashCode += getGyuleYmd().hashCode(); - } - if (getGyuljaeGubun() != null) { - _hashCode += getGyuljaeGubun().hashCode(); - } - if (getGyuljaeYmd() != null) { - _hashCode += getGyuljaeYmd().hashCode(); - } + int _hashCode = hashCode( + getGyuleNo(), + getGyuleYmd(), + getGyuljaeGubun(), + getGyuljaeYmd() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04GyuljeInfoDTO.class, - Descriptor.field("gyuleNo", "string", true), - Descriptor.field("gyuleYmd", "string", true), - Descriptor.field("gyuljaeGubun", "string", true), - Descriptor.field("gyuljaeYmd", "string", true) + desc -> new ElementDesc[] { + desc.field("gyuleNo", "string", true), + desc.field("gyuleYmd", "string", true), + desc.field("gyuljaeGubun", "string", true), + desc.field("gyuljaeYmd", "string", true) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSDTO.java index c038ffe..7cbe28b 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSDTO.java @@ -1,14 +1,15 @@ package cokr.xit.interfaces.sntris.buga; -import java.io.Serializable; - import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; import org.apache.axis.encoding.ser.BeanDeserializer; import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; /** * @Class Name : Bu04SemokWSDTO.java * @Description : 세외수입웹서비스 dto @@ -20,7 +21,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04SemokWSDTO implements Serializable { +public class Bu04SemokWSDTO extends SntrisWSDTO { private static final long serialVersionUID = 1L; private double gasanRate; @@ -193,33 +194,16 @@ public class Bu04SemokWSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && + boolean _equals = this.gasanRate == other.getGasanRate() && - ((this.gasanRateGubun==null && other.getGasanRateGubun()==null) || - (this.gasanRateGubun!=null && - this.gasanRateGubun.equals(other.getGasanRateGubun()))) && - ((this.ocrBuseoCd==null && other.getOcrBuseoCd()==null) || - (this.ocrBuseoCd!=null && - this.ocrBuseoCd.equals(other.getOcrBuseoCd()))) && - ((this.ocrSiguCd==null && other.getOcrSiguCd()==null) || - (this.ocrSiguCd!=null && - this.ocrSiguCd.equals(other.getOcrSiguCd()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.semokCd==null && other.getSemokCd()==null) || - (this.semokCd!=null && - this.semokCd.equals(other.getSemokCd()))) && - ((this.semokNm==null && other.getSemokNm()==null) || - (this.semokNm!=null && - this.semokNm.equals(other.getSemokNm()))) && - ((this.suBuseoCd==null && other.getSuBuseoCd()==null) || - (this.suBuseoCd!=null && - this.suBuseoCd.equals(other.getSuBuseoCd()))) && - ((this.vatYn==null && other.getVatYn()==null) || - (this.vatYn!=null && - this.vatYn.equals(other.getVatYn()))); + equals(this.gasanRateGubun, other.getGasanRateGubun()) && + equals(this.ocrBuseoCd, other.getOcrBuseoCd()) && + equals(this.ocrSiguCd, other.getOcrSiguCd()) && + equals(this.rowStatus, other.getRowStatus()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.semokNm, other.getSemokNm()) && + equals(this.suBuseoCd, other.getSuBuseoCd()) && + equals(this.vatYn, other.getVatYn()); __equalsCalc = null; return _equals; } @@ -231,48 +215,35 @@ public class Bu04SemokWSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - _hashCode += Double.valueOf(getGasanRate()).hashCode(); - if (getGasanRateGubun() != null) { - _hashCode += getGasanRateGubun().hashCode(); - } - if (getOcrBuseoCd() != null) { - _hashCode += getOcrBuseoCd().hashCode(); - } - if (getOcrSiguCd() != null) { - _hashCode += getOcrSiguCd().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSemokCd() != null) { - _hashCode += getSemokCd().hashCode(); - } - if (getSemokNm() != null) { - _hashCode += getSemokNm().hashCode(); - } - if (getSuBuseoCd() != null) { - _hashCode += getSuBuseoCd().hashCode(); - } - if (getVatYn() != null) { - _hashCode += getVatYn().hashCode(); - } + int _hashCode = hashCode( + Double.valueOf(getGasanRate()), + getGasanRateGubun(), + getOcrBuseoCd(), + getOcrSiguCd(), + getRowStatus(), + getSemokCd(), + getSemokNm(), + getSuBuseoCd(), + getVatYn() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04SemokWSDTO.class, - Descriptor.field("gasanRate", "double", false), - Descriptor.field("gasanRateGubun", "string", true), - Descriptor.field("ocrBuseoCd", "string", true), - Descriptor.field("ocrSiguCd", "string", true), - Descriptor.field("rowStatus", "string", true), - Descriptor.field("semokCd", "string", true), - Descriptor.field("semokNm", "string", true), - Descriptor.field("suBuseoCd", "string", true), - Descriptor.field("vatYn", "string", true) + desc -> new ElementDesc[] { + desc.field("gasanRate", "double", false), + desc.field("gasanRateGubun", "string", true), + desc.field("ocrBuseoCd", "string", true), + desc.field("ocrSiguCd", "string", true), + desc.field("rowStatus", "string", true), + desc.field("semokCd", "string", true), + desc.field("semokNm", "string", true), + desc.field("suBuseoCd", "string", true), + desc.field("vatYn", "string", true) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSRACSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSRACSDTO.java index 40cf2e7..a268e34 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSRACSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SemokWSRACSDTO.java @@ -1,9 +1,8 @@ package cokr.xit.interfaces.sntris.buga; -import java.io.Serializable; - import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; @@ -21,11 +20,9 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04SemokWSRACSDTO implements Serializable { +public class Bu04SemokWSRACSDTO extends Bu04SemokWSDTO { private static final long serialVersionUID = 1L; - private double gasanRate; - private String gasanRateGubun; private String hangmokcd1; private String hangmokcd2; private String hangmokcd3; @@ -33,13 +30,6 @@ public class Bu04SemokWSRACSDTO implements Serializable { private String hangmokcd5; private String hangmokcd6; private String napgiGubun; - private String ocrBuseoCd; - private String ocrSiguCd; - private String rowStatus; - private String semokCd; - private String semokNm; - private String suBuseoCd; - private String vatYn; public Bu04SemokWSRACSDTO() {} @@ -61,8 +51,17 @@ public class Bu04SemokWSRACSDTO implements Serializable { String suBuseoCd, String vatYn ) { - this.gasanRate = gasanRate; - this.gasanRateGubun = gasanRateGubun; + super( + gasanRate, + gasanRateGubun, + ocrBuseoCd, + ocrSiguCd, + rowStatus, + semokCd, + semokNm, + suBuseoCd, + vatYn + ); this.hangmokcd1 = hangmokcd1; this.hangmokcd2 = hangmokcd2; this.hangmokcd3 = hangmokcd3; @@ -70,41 +69,6 @@ public class Bu04SemokWSRACSDTO implements Serializable { this.hangmokcd5 = hangmokcd5; this.hangmokcd6 = hangmokcd6; this.napgiGubun = napgiGubun; - this.ocrBuseoCd = ocrBuseoCd; - this.ocrSiguCd = ocrSiguCd; - this.rowStatus = rowStatus; - this.semokCd = semokCd; - this.semokNm = semokNm; - this.suBuseoCd = suBuseoCd; - this.vatYn = vatYn; - } - - /**Gets the gasanRate value for this Bu04SemokWSRACSDTO. - * @return gasanRate - */ - public double getGasanRate() { - return gasanRate; - } - - /**Sets the gasanRate value for this Bu04SemokWSRACSDTO. - * @param gasanRate - */ - public void setGasanRate(double gasanRate) { - this.gasanRate = gasanRate; - } - - /**Gets the gasanRateGubun value for this Bu04SemokWSRACSDTO. - * @return gasanRateGubun - */ - public String getGasanRateGubun() { - return gasanRateGubun; - } - - /**Sets the gasanRateGubun value for this Bu04SemokWSRACSDTO. - * @param gasanRateGubun - */ - public void setGasanRateGubun(String gasanRateGubun) { - this.gasanRateGubun = gasanRateGubun; } /**Gets the hangmokcd1 value for this Bu04SemokWSRACSDTO. @@ -205,107 +169,10 @@ public class Bu04SemokWSRACSDTO implements Serializable { this.napgiGubun = napgiGubun; } - /**Gets the ocrBuseoCd value for this Bu04SemokWSRACSDTO. - * @return ocrBuseoCd - */ - public String getOcrBuseoCd() { - return ocrBuseoCd; - } - - /**Sets the ocrBuseoCd value for this Bu04SemokWSRACSDTO. - * @param ocrBuseoCd - */ - public void setOcrBuseoCd(String ocrBuseoCd) { - this.ocrBuseoCd = ocrBuseoCd; - } - - /**Gets the ocrSiguCd value for this Bu04SemokWSRACSDTO. - * @return ocrSiguCd - */ - public String getOcrSiguCd() { - return ocrSiguCd; - } - - /**Sets the ocrSiguCd value for this Bu04SemokWSRACSDTO. - * @param ocrSiguCd - */ - public void setOcrSiguCd(String ocrSiguCd) { - this.ocrSiguCd = ocrSiguCd; - } - - /**Gets the rowStatus value for this Bu04SemokWSRACSDTO. - * @return rowStatus - */ - public String getRowStatus() { - return rowStatus; - } - - /**Sets the rowStatus value for this Bu04SemokWSRACSDTO. - * @param rowStatus - */ - public void setRowStatus(String rowStatus) { - this.rowStatus = rowStatus; - } - - /**Gets the semokCd value for this Bu04SemokWSRACSDTO. - * @return semokCd - */ - public String getSemokCd() { - return semokCd; - } - - /**Sets the semokCd value for this Bu04SemokWSRACSDTO. - * @param semokCd - */ - public void setSemokCd(String semokCd) { - this.semokCd = semokCd; - } - - /**Gets the semokNm value for this Bu04SemokWSRACSDTO. - * @return semokNm - */ - public String getSemokNm() { - return semokNm; - } - - /**Sets the semokNm value for this Bu04SemokWSRACSDTO. - * @param semokNm - */ - public void setSemokNm(String semokNm) { - this.semokNm = semokNm; - } - - /**Gets the suBuseoCd value for this Bu04SemokWSRACSDTO. - * @return suBuseoCd - */ - public String getSuBuseoCd() { - return suBuseoCd; - } - - /**Sets the suBuseoCd value for this Bu04SemokWSRACSDTO. - * @param suBuseoCd - */ - public void setSuBuseoCd(String suBuseoCd) { - this.suBuseoCd = suBuseoCd; - } - - /**Gets the vatYn value for this Bu04SemokWSRACSDTO. - * @return vatYn - */ - public String getVatYn() { - return vatYn; - } - - /**Sets the vatYn value for this Bu04SemokWSRACSDTO. - * @param vatYn - */ - public void setVatYn(String vatYn) { - this.vatYn = vatYn; - } - private Object __equalsCalc = null; @Override public synchronized boolean equals(Object obj) { + if (!super.equals(obj)) return false; if (!(obj instanceof Bu04SemokWSRACSDTO)) return false; Bu04SemokWSRACSDTO other = (Bu04SemokWSRACSDTO) obj; if (this == obj) return true; @@ -313,54 +180,14 @@ public class Bu04SemokWSRACSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - this.gasanRate == other.getGasanRate() && - ((this.gasanRateGubun==null && other.getGasanRateGubun()==null) || - (this.gasanRateGubun!=null && - this.gasanRateGubun.equals(other.getGasanRateGubun()))) && - ((this.hangmokcd1==null && other.getHangmokcd1()==null) || - (this.hangmokcd1!=null && - this.hangmokcd1.equals(other.getHangmokcd1()))) && - ((this.hangmokcd2==null && other.getHangmokcd2()==null) || - (this.hangmokcd2!=null && - this.hangmokcd2.equals(other.getHangmokcd2()))) && - ((this.hangmokcd3==null && other.getHangmokcd3()==null) || - (this.hangmokcd3!=null && - this.hangmokcd3.equals(other.getHangmokcd3()))) && - ((this.hangmokcd4==null && other.getHangmokcd4()==null) || - (this.hangmokcd4!=null && - this.hangmokcd4.equals(other.getHangmokcd4()))) && - ((this.hangmokcd5==null && other.getHangmokcd5()==null) || - (this.hangmokcd5!=null && - this.hangmokcd5.equals(other.getHangmokcd5()))) && - ((this.hangmokcd6==null && other.getHangmokcd6()==null) || - (this.hangmokcd6!=null && - this.hangmokcd6.equals(other.getHangmokcd6()))) && - ((this.napgiGubun==null && other.getNapgiGubun()==null) || - (this.napgiGubun!=null && - this.napgiGubun.equals(other.getNapgiGubun()))) && - ((this.ocrBuseoCd==null && other.getOcrBuseoCd()==null) || - (this.ocrBuseoCd!=null && - this.ocrBuseoCd.equals(other.getOcrBuseoCd()))) && - ((this.ocrSiguCd==null && other.getOcrSiguCd()==null) || - (this.ocrSiguCd!=null && - this.ocrSiguCd.equals(other.getOcrSiguCd()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.semokCd==null && other.getSemokCd()==null) || - (this.semokCd!=null && - this.semokCd.equals(other.getSemokCd()))) && - ((this.semokNm==null && other.getSemokNm()==null) || - (this.semokNm!=null && - this.semokNm.equals(other.getSemokNm()))) && - ((this.suBuseoCd==null && other.getSuBuseoCd()==null) || - (this.suBuseoCd!=null && - this.suBuseoCd.equals(other.getSuBuseoCd()))) && - ((this.vatYn==null && other.getVatYn()==null) || - (this.vatYn!=null && - this.vatYn.equals(other.getVatYn()))); + boolean _equals = + equals(this.hangmokcd1, other.getHangmokcd1()) && + equals(this.hangmokcd2, other.getHangmokcd2()) && + equals(this.hangmokcd3, other.getHangmokcd3()) && + equals(this.hangmokcd4, other.getHangmokcd4()) && + equals(this.hangmokcd5, other.getHangmokcd5()) && + equals(this.hangmokcd6, other.getHangmokcd6()) && + equals(this.napgiGubun, other.getNapgiGubun()); __equalsCalc = null; return _equals; } @@ -372,76 +199,49 @@ public class Bu04SemokWSRACSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - _hashCode += Double.valueOf(getGasanRate()).hashCode(); - if (getGasanRateGubun() != null) { - _hashCode += getGasanRateGubun().hashCode(); - } - if (getHangmokcd1() != null) { - _hashCode += getHangmokcd1().hashCode(); - } - if (getHangmokcd2() != null) { - _hashCode += getHangmokcd2().hashCode(); - } - if (getHangmokcd3() != null) { - _hashCode += getHangmokcd3().hashCode(); - } - if (getHangmokcd4() != null) { - _hashCode += getHangmokcd4().hashCode(); - } - if (getHangmokcd5() != null) { - _hashCode += getHangmokcd5().hashCode(); - } - if (getHangmokcd6() != null) { - _hashCode += getHangmokcd6().hashCode(); - } - if (getNapgiGubun() != null) { - _hashCode += getNapgiGubun().hashCode(); - } - if (getOcrBuseoCd() != null) { - _hashCode += getOcrBuseoCd().hashCode(); - } - if (getOcrSiguCd() != null) { - _hashCode += getOcrSiguCd().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSemokCd() != null) { - _hashCode += getSemokCd().hashCode(); - } - if (getSemokNm() != null) { - _hashCode += getSemokNm().hashCode(); - } - if (getSuBuseoCd() != null) { - _hashCode += getSuBuseoCd().hashCode(); - } - if (getVatYn() != null) { - _hashCode += getVatYn().hashCode(); - } + int _hashCode = hashCode( + Double.valueOf(getGasanRate()), + getGasanRateGubun(), + getHangmokcd1(), + getHangmokcd2(), + getHangmokcd3(), + getHangmokcd4(), + getHangmokcd5(), + getHangmokcd6(), + getNapgiGubun(), + getOcrBuseoCd(), + getOcrSiguCd(), + getRowStatus(), + getSemokCd(), + getSemokNm(), + getSuBuseoCd(), + getVatYn() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04SemokWSRACSDTO.class, - Descriptor.field("gasanRate", "double", false), - Descriptor.field("gasanRateGubun", "string", true), - Descriptor.field("hangmokcd1", "string", true), - Descriptor.field("hangmokcd2", "string", true), - Descriptor.field("hangmokcd3", "string", true), - Descriptor.field("hangmokcd4", "string", true), - Descriptor.field("hangmokcd5", "string", true), - Descriptor.field("hangmokcd6", "string", true), - Descriptor.field("napgiGubun", "string", true), - Descriptor.field("ocrBuseoCd", "string", true), - Descriptor.field("ocrSiguCd", "string", true), - Descriptor.field("rowStatus", "string", true), - Descriptor.field("semokCd", "string", true), - Descriptor.field("semokNm", "string", true), - Descriptor.field("suBuseoCd", "string", true), - Descriptor.field("vatYn", "string", true) + desc -> new ElementDesc[] { + desc.field("gasanRate", "double", false), + desc.field("gasanRateGubun", "string", true), + desc.field("hangmokcd1", "string", true), + desc.field("hangmokcd2", "string", true), + desc.field("hangmokcd3", "string", true), + desc.field("hangmokcd4", "string", true), + desc.field("hangmokcd5", "string", true), + desc.field("hangmokcd6", "string", true), + desc.field("napgiGubun", "string", true), + desc.field("ocrBuseoCd", "string", true), + desc.field("ocrSiguCd", "string", true), + desc.field("rowStatus", "string", true), + desc.field("semokCd", "string", true), + desc.field("semokNm", "string", true), + desc.field("suBuseoCd", "string", true), + desc.field("vatYn", "string", true) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaETCWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaETCWSDTO.java index 075335d..198bbc0 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaETCWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaETCWSDTO.java @@ -4,12 +4,15 @@ import java.io.Serializable; import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; import org.apache.axis.encoding.ser.BeanDeserializer; import org.apache.axis.encoding.ser.BeanSerializer; +import cokr.xit.interfaces.sntris.SntrisWSDTO; + /** * @Class Name : Bu04SimpleBugaETCWSDTO.java * @Description : 세외수입웹서비스 dto @@ -21,7 +24,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04SimpleBugaETCWSDTO implements Serializable { +public class Bu04SimpleBugaETCWSDTO extends SntrisWSDTO implements Serializable { private static final long serialVersionUID = 1L; private String etc1; @@ -1078,189 +1081,68 @@ public class Bu04SimpleBugaETCWSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.etc1==null && other.getEtc1()==null) || - (this.etc1!=null && - this.etc1.equals(other.getEtc1()))) && - ((this.etc10==null && other.getEtc10()==null) || - (this.etc10!=null && - this.etc10.equals(other.getEtc10()))) && - ((this.etc11==null && other.getEtc11()==null) || - (this.etc11!=null && - this.etc11.equals(other.getEtc11()))) && - ((this.etc12==null && other.getEtc12()==null) || - (this.etc12!=null && - this.etc12.equals(other.getEtc12()))) && - ((this.etc13==null && other.getEtc13()==null) || - (this.etc13!=null && - this.etc13.equals(other.getEtc13()))) && - ((this.etc14==null && other.getEtc14()==null) || - (this.etc14!=null && - this.etc14.equals(other.getEtc14()))) && - ((this.etc15==null && other.getEtc15()==null) || - (this.etc15!=null && - this.etc15.equals(other.getEtc15()))) && - ((this.etc16==null && other.getEtc16()==null) || - (this.etc16!=null && - this.etc16.equals(other.getEtc16()))) && - ((this.etc17==null && other.getEtc17()==null) || - (this.etc17!=null && - this.etc17.equals(other.getEtc17()))) && - ((this.etc18==null && other.getEtc18()==null) || - (this.etc18!=null && - this.etc18.equals(other.getEtc18()))) && - ((this.etc19==null && other.getEtc19()==null) || - (this.etc19!=null && - this.etc19.equals(other.getEtc19()))) && - ((this.etc2==null && other.getEtc2()==null) || - (this.etc2!=null && - this.etc2.equals(other.getEtc2()))) && - ((this.etc20==null && other.getEtc20()==null) || - (this.etc20!=null && - this.etc20.equals(other.getEtc20()))) && - ((this.etc21==null && other.getEtc21()==null) || - (this.etc21!=null && - this.etc21.equals(other.getEtc21()))) && - ((this.etc22==null && other.getEtc22()==null) || - (this.etc22!=null && - this.etc22.equals(other.getEtc22()))) && - ((this.etc23==null && other.getEtc23()==null) || - (this.etc23!=null && - this.etc23.equals(other.getEtc23()))) && - ((this.etc24==null && other.getEtc24()==null) || - (this.etc24!=null && - this.etc24.equals(other.getEtc24()))) && - ((this.etc25==null && other.getEtc25()==null) || - (this.etc25!=null && - this.etc25.equals(other.getEtc25()))) && - ((this.etc26==null && other.getEtc26()==null) || - (this.etc26!=null && - this.etc26.equals(other.getEtc26()))) && - ((this.etc27==null && other.getEtc27()==null) || - (this.etc27!=null && - this.etc27.equals(other.getEtc27()))) && - ((this.etc28==null && other.getEtc28()==null) || - (this.etc28!=null && - this.etc28.equals(other.getEtc28()))) && - ((this.etc29==null && other.getEtc29()==null) || - (this.etc29!=null && - this.etc29.equals(other.getEtc29()))) && - ((this.etc3==null && other.getEtc3()==null) || - (this.etc3!=null && - this.etc3.equals(other.getEtc3()))) && - ((this.etc30==null && other.getEtc30()==null) || - (this.etc30!=null && - this.etc30.equals(other.getEtc30()))) && - ((this.etc31==null && other.getEtc31()==null) || - (this.etc31!=null && - this.etc31.equals(other.getEtc31()))) && - ((this.etc32==null && other.getEtc32()==null) || - (this.etc32!=null && - this.etc32.equals(other.getEtc32()))) && - ((this.etc33==null && other.getEtc33()==null) || - (this.etc33!=null && - this.etc33.equals(other.getEtc33()))) && - ((this.etc34==null && other.getEtc34()==null) || - (this.etc34!=null && - this.etc34.equals(other.getEtc34()))) && - ((this.etc4==null && other.getEtc4()==null) || - (this.etc4!=null && - this.etc4.equals(other.getEtc4()))) && - ((this.etc5==null && other.getEtc5()==null) || - (this.etc5!=null && - this.etc5.equals(other.getEtc5()))) && - ((this.etc6==null && other.getEtc6()==null) || - (this.etc6!=null && - this.etc6.equals(other.getEtc6()))) && - ((this.etc7==null && other.getEtc7()==null) || - (this.etc7!=null && - this.etc7.equals(other.getEtc7()))) && - ((this.etc8==null && other.getEtc8()==null) || - (this.etc8!=null && - this.etc8.equals(other.getEtc8()))) && - ((this.etc9==null && other.getEtc9()==null) || - (this.etc9!=null && - this.etc9.equals(other.getEtc9()))) && - ((this.fstTaxYmd==null && other.getFstTaxYmd()==null) || - (this.fstTaxYmd!=null && - this.fstTaxYmd.equals(other.getFstTaxYmd()))) && - ((this.gum1==null && other.getGum1()==null) || - (this.gum1!=null && - this.gum1.equals(other.getGum1()))) && - ((this.gum2==null && other.getGum2()==null) || - (this.gum2!=null && - this.gum2.equals(other.getGum2()))) && - ((this.hangmok1==null && other.getHangmok1()==null) || - (this.hangmok1!=null && - this.hangmok1.equals(other.getHangmok1()))) && - ((this.hangmok2==null && other.getHangmok2()==null) || - (this.hangmok2!=null && - this.hangmok2.equals(other.getHangmok2()))) && - ((this.hangmok3==null && other.getHangmok3()==null) || - (this.hangmok3!=null && - this.hangmok3.equals(other.getHangmok3()))) && - ((this.hangmok4==null && other.getHangmok4()==null) || - (this.hangmok4!=null && - this.hangmok4.equals(other.getHangmok4()))) && - ((this.hangmok5==null && other.getHangmok5()==null) || - (this.hangmok5!=null && - this.hangmok5.equals(other.getHangmok5()))) && - ((this.hangmok6==null && other.getHangmok6()==null) || - (this.hangmok6!=null && - this.hangmok6.equals(other.getHangmok6()))) && - ((this.napDdtlAddr==null && other.getNapDdtlAddr()==null) || - (this.napDdtlAddr!=null && - this.napDdtlAddr.equals(other.getNapDdtlAddr()))) && - ((this.napDrefAddr==null && other.getNapDrefAddr()==null) || - (this.napDrefAddr!=null && - this.napDrefAddr.equals(other.getNapDrefAddr()))) && - ((this.napDtlAddr==null && other.getNapDtlAddr()==null) || - (this.napDtlAddr!=null && - this.napDtlAddr.equals(other.getNapDtlAddr()))) && - ((this.napDzipAddr==null && other.getNapDzipAddr()==null) || - (this.napDzipAddr!=null && - this.napDzipAddr.equals(other.getNapDzipAddr()))) && - ((this.napDzipCd==null && other.getNapDzipCd()==null) || - (this.napDzipCd!=null && - this.napDzipCd.equals(other.getNapDzipCd()))) && - ((this.napId==null && other.getNapId()==null) || - (this.napId!=null && - this.napId.equals(other.getNapId()))) && - ((this.napNm==null && other.getNapNm()==null) || - (this.napNm!=null && - this.napNm.equals(other.getNapNm()))) && - ((this.napZipAddr==null && other.getNapZipAddr()==null) || - (this.napZipAddr!=null && - this.napZipAddr.equals(other.getNapZipAddr()))) && - ((this.napZipCd==null && other.getNapZipCd()==null) || - (this.napZipCd!=null && - this.napZipCd.equals(other.getNapZipCd()))) && - ((this.napgiYmd==null && other.getNapgiYmd()==null) || - (this.napgiYmd!=null && - this.napgiYmd.equals(other.getNapgiYmd()))) && - ((this.ocrBuseoCd==null && other.getOcrBuseoCd()==null) || - (this.ocrBuseoCd!=null && - this.ocrBuseoCd.equals(other.getOcrBuseoCd()))) && - ((this.ocrSiguCd==null && other.getOcrSiguCd()==null) || - (this.ocrSiguCd!=null && - this.ocrSiguCd.equals(other.getOcrSiguCd()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.semokCd==null && other.getSemokCd()==null) || - (this.semokCd!=null && - this.semokCd.equals(other.getSemokCd()))) && + boolean _equals = + equals(this.etc1, other.getEtc1()) && + equals(this.etc10, other.getEtc10()) && + equals(this.etc11, other.getEtc11()) && + equals(this.etc12, other.getEtc12()) && + equals(this.etc13, other.getEtc13()) && + equals(this.etc14, other.getEtc14()) && + equals(this.etc15, other.getEtc15()) && + equals(this.etc16, other.getEtc16()) && + equals(this.etc17, other.getEtc17()) && + equals(this.etc18, other.getEtc18()) && + equals(this.etc19, other.getEtc19()) && + equals(this.etc2, other.getEtc2()) && + equals(this.etc20, other.getEtc20()) && + equals(this.etc21, other.getEtc21()) && + equals(this.etc22, other.getEtc22()) && + equals(this.etc23, other.getEtc23()) && + equals(this.etc24, other.getEtc24()) && + equals(this.etc25, other.getEtc25()) && + equals(this.etc26, other.getEtc26()) && + equals(this.etc27, other.getEtc27()) && + equals(this.etc28, other.getEtc28()) && + equals(this.etc29, other.getEtc29()) && + equals(this.etc3, other.getEtc3()) && + equals(this.etc30, other.getEtc30()) && + equals(this.etc31, other.getEtc31()) && + equals(this.etc32, other.getEtc32()) && + equals(this.etc33, other.getEtc33()) && + equals(this.etc34, other.getEtc34()) && + equals(this.etc4, other.getEtc4()) && + equals(this.etc5, other.getEtc5()) && + equals(this.etc6, other.getEtc6()) && + equals(this.etc7, other.getEtc7()) && + equals(this.etc8, other.getEtc8()) && + equals(this.etc9, other.getEtc9()) && + equals(this.fstTaxYmd, other.getFstTaxYmd()) && + equals(this.gum1, other.getGum1()) && + equals(this.gum2, other.getGum2()) && + equals(this.hangmok1, other.getHangmok1()) && + equals(this.hangmok2, other.getHangmok2()) && + equals(this.hangmok3, other.getHangmok3()) && + equals(this.hangmok4, other.getHangmok4()) && + equals(this.hangmok5, other.getHangmok5()) && + equals(this.hangmok6, other.getHangmok6()) && + equals(this.napDdtlAddr, other.getNapDdtlAddr()) && + equals(this.napDrefAddr, other.getNapDrefAddr()) && + equals(this.napDtlAddr, other.getNapDtlAddr()) && + equals(this.napDzipAddr, other.getNapDzipAddr()) && + equals(this.napDzipCd, other.getNapDzipCd()) && + equals(this.napId, other.getNapId()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napZipAddr, other.getNapZipAddr()) && + equals(this.napZipCd, other.getNapZipCd()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.ocrBuseoCd, other.getOcrBuseoCd()) && + equals(this.ocrSiguCd, other.getOcrSiguCd()) && + equals(this.rowStatus, other.getRowStatus()) && + equals(this.semokCd, other.getSemokCd()) && this.taxAmt == other.getTaxAmt() && - ((this.taxGubun==null && other.getTaxGubun()==null) || - (this.taxGubun!=null && - this.taxGubun.equals(other.getTaxGubun()))) && - ((this.taxNo==null && other.getTaxNo()==null) || - (this.taxNo!=null && - this.taxNo.equals(other.getTaxNo()))) && - ((this.taxYm==null && other.getTaxYm()==null) || - (this.taxYm!=null && - this.taxYm.equals(other.getTaxYm()))); + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()); __equalsCalc = null; return _equals; } @@ -1272,256 +1154,139 @@ public class Bu04SimpleBugaETCWSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - if (getEtc1() != null) { - _hashCode += getEtc1().hashCode(); - } - if (getEtc10() != null) { - _hashCode += getEtc10().hashCode(); - } - if (getEtc11() != null) { - _hashCode += getEtc11().hashCode(); - } - if (getEtc12() != null) { - _hashCode += getEtc12().hashCode(); - } - if (getEtc13() != null) { - _hashCode += getEtc13().hashCode(); - } - if (getEtc14() != null) { - _hashCode += getEtc14().hashCode(); - } - if (getEtc15() != null) { - _hashCode += getEtc15().hashCode(); - } - if (getEtc16() != null) { - _hashCode += getEtc16().hashCode(); - } - if (getEtc17() != null) { - _hashCode += getEtc17().hashCode(); - } - if (getEtc18() != null) { - _hashCode += getEtc18().hashCode(); - } - if (getEtc19() != null) { - _hashCode += getEtc19().hashCode(); - } - if (getEtc2() != null) { - _hashCode += getEtc2().hashCode(); - } - if (getEtc20() != null) { - _hashCode += getEtc20().hashCode(); - } - if (getEtc21() != null) { - _hashCode += getEtc21().hashCode(); - } - if (getEtc22() != null) { - _hashCode += getEtc22().hashCode(); - } - if (getEtc23() != null) { - _hashCode += getEtc23().hashCode(); - } - if (getEtc24() != null) { - _hashCode += getEtc24().hashCode(); - } - if (getEtc25() != null) { - _hashCode += getEtc25().hashCode(); - } - if (getEtc26() != null) { - _hashCode += getEtc26().hashCode(); - } - if (getEtc27() != null) { - _hashCode += getEtc27().hashCode(); - } - if (getEtc28() != null) { - _hashCode += getEtc28().hashCode(); - } - if (getEtc29() != null) { - _hashCode += getEtc29().hashCode(); - } - if (getEtc3() != null) { - _hashCode += getEtc3().hashCode(); - } - if (getEtc30() != null) { - _hashCode += getEtc30().hashCode(); - } - if (getEtc31() != null) { - _hashCode += getEtc31().hashCode(); - } - if (getEtc32() != null) { - _hashCode += getEtc32().hashCode(); - } - if (getEtc33() != null) { - _hashCode += getEtc33().hashCode(); - } - if (getEtc34() != null) { - _hashCode += getEtc34().hashCode(); - } - if (getEtc4() != null) { - _hashCode += getEtc4().hashCode(); - } - if (getEtc5() != null) { - _hashCode += getEtc5().hashCode(); - } - if (getEtc6() != null) { - _hashCode += getEtc6().hashCode(); - } - if (getEtc7() != null) { - _hashCode += getEtc7().hashCode(); - } - if (getEtc8() != null) { - _hashCode += getEtc8().hashCode(); - } - if (getEtc9() != null) { - _hashCode += getEtc9().hashCode(); - } - if (getFstTaxYmd() != null) { - _hashCode += getFstTaxYmd().hashCode(); - } - if (getGum1() != null) { - _hashCode += getGum1().hashCode(); - } - if (getGum2() != null) { - _hashCode += getGum2().hashCode(); - } - if (getHangmok1() != null) { - _hashCode += getHangmok1().hashCode(); - } - if (getHangmok2() != null) { - _hashCode += getHangmok2().hashCode(); - } - if (getHangmok3() != null) { - _hashCode += getHangmok3().hashCode(); - } - if (getHangmok4() != null) { - _hashCode += getHangmok4().hashCode(); - } - if (getHangmok5() != null) { - _hashCode += getHangmok5().hashCode(); - } - if (getHangmok6() != null) { - _hashCode += getHangmok6().hashCode(); - } - if (getNapDdtlAddr() != null) { - _hashCode += getNapDdtlAddr().hashCode(); - } - if (getNapDrefAddr() != null) { - _hashCode += getNapDrefAddr().hashCode(); - } - if (getNapDtlAddr() != null) { - _hashCode += getNapDtlAddr().hashCode(); - } - if (getNapDzipAddr() != null) { - _hashCode += getNapDzipAddr().hashCode(); - } - if (getNapDzipCd() != null) { - _hashCode += getNapDzipCd().hashCode(); - } - if (getNapId() != null) { - _hashCode += getNapId().hashCode(); - } - if (getNapNm() != null) { - _hashCode += getNapNm().hashCode(); - } - if (getNapZipAddr() != null) { - _hashCode += getNapZipAddr().hashCode(); - } - if (getNapZipCd() != null) { - _hashCode += getNapZipCd().hashCode(); - } - if (getNapgiYmd() != null) { - _hashCode += getNapgiYmd().hashCode(); - } - if (getOcrBuseoCd() != null) { - _hashCode += getOcrBuseoCd().hashCode(); - } - if (getOcrSiguCd() != null) { - _hashCode += getOcrSiguCd().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSemokCd() != null) { - _hashCode += getSemokCd().hashCode(); - } - _hashCode += Long.valueOf(getTaxAmt()).hashCode(); - if (getTaxGubun() != null) { - _hashCode += getTaxGubun().hashCode(); - } - if (getTaxNo() != null) { - _hashCode += getTaxNo().hashCode(); - } - if (getTaxYm() != null) { - _hashCode += getTaxYm().hashCode(); - } + int _hashCode = hashCode( + getEtc1(), + getEtc10(), + getEtc11(), + getEtc12(), + getEtc13(), + getEtc14(), + getEtc15(), + getEtc16(), + getEtc17(), + getEtc18(), + getEtc19(), + getEtc2(), + getEtc20(), + getEtc21(), + getEtc22(), + getEtc23(), + getEtc24(), + getEtc25(), + getEtc26(), + getEtc27(), + getEtc28(), + getEtc29(), + getEtc3(), + getEtc30(), + getEtc31(), + getEtc32(), + getEtc33(), + getEtc34(), + getEtc4(), + getEtc5(), + getEtc6(), + getEtc7(), + getEtc8(), + getEtc9(), + getFstTaxYmd(), + getGum1(), + getGum2(), + getHangmok1(), + getHangmok2(), + getHangmok3(), + getHangmok4(), + getHangmok5(), + getHangmok6(), + getNapDdtlAddr(), + getNapDrefAddr(), + getNapDtlAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapId(), + getNapNm(), + getNapZipAddr(), + getNapZipCd(), + getNapgiYmd(), + getOcrBuseoCd(), + getOcrSiguCd(), + getRowStatus(), + getSemokCd(), + Long.valueOf(getTaxAmt()), + getTaxGubun(), + getTaxNo(), + getTaxYm() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04SimpleBugaETCWSDTO.class, - Descriptor.field("etc1", "string", true), - Descriptor.field("etc10", "string", true), - Descriptor.field("etc11", "string", true), - Descriptor.field("etc12", "string", true), - Descriptor.field("etc13", "string", true), - Descriptor.field("etc14", "string", true), - Descriptor.field("etc15", "string", true), - Descriptor.field("etc16", "string", true), - Descriptor.field("etc17", "string", true), - Descriptor.field("etc18", "string", true), - Descriptor.field("etc19", "string", true), - Descriptor.field("etc2", "string", true), - Descriptor.field("etc20", "string", true), - Descriptor.field("etc21", "string", true), - Descriptor.field("etc22", "string", true), - Descriptor.field("etc23", "string", true), - Descriptor.field("etc24", "string", true), - Descriptor.field("etc25", "string", true), - Descriptor.field("etc26", "string", true), - Descriptor.field("etc27", "string", true), - Descriptor.field("etc28", "string", true), - Descriptor.field("etc29", "string", true), - Descriptor.field("etc3", "string", true), - Descriptor.field("etc30", "string", true), - Descriptor.field("etc31", "string", true), - Descriptor.field("etc32", "string", true), - Descriptor.field("etc33", "string", true), - Descriptor.field("etc34", "string", true), - Descriptor.field("etc4", "string", true), - Descriptor.field("etc5", "string", true), - Descriptor.field("etc6", "string", true), - Descriptor.field("etc7", "string", true), - Descriptor.field("etc8", "string", true), - Descriptor.field("etc9", "string", true), - Descriptor.field("fstTaxYmd", "string", true), - Descriptor.field("gum1", "string", true), - Descriptor.field("gum2", "string", true), - Descriptor.field("hangmok1", "string", true), - Descriptor.field("hangmok2", "string", true), - Descriptor.field("hangmok3", "string", true), - Descriptor.field("hangmok4", "string", true), - Descriptor.field("hangmok5", "string", true), - Descriptor.field("hangmok6", "string", true), - Descriptor.field("napDdtlAddr", "string", true), - Descriptor.field("napDrefAddr", "string", true), - Descriptor.field("napDtlAddr", "string", true), - Descriptor.field("napDzipAddr", "string", true), - Descriptor.field("napDzipCd", "string", true), - Descriptor.field("napId", "string", true), - Descriptor.field("napNm", "string", true), - Descriptor.field("napZipAddr", "string", true), - Descriptor.field("napZipCd", "string", true), - Descriptor.field("napgiYmd", "string", true), - Descriptor.field("ocrBuseoCd", "string", true), - Descriptor.field("ocrSiguCd", "string", true), - Descriptor.field("rowStatus", "string", true), - Descriptor.field("semokCd", "string", true), - Descriptor.field("taxAmt", "long", false), - Descriptor.field("taxGubun", "string", true), - Descriptor.field("taxNo", "string", true), - Descriptor.field("taxYm", "string", true) + desc -> new ElementDesc[] { + desc.field("etc1", "string", true), + desc.field("etc10", "string", true), + desc.field("etc11", "string", true), + desc.field("etc12", "string", true), + desc.field("etc13", "string", true), + desc.field("etc14", "string", true), + desc.field("etc15", "string", true), + desc.field("etc16", "string", true), + desc.field("etc17", "string", true), + desc.field("etc18", "string", true), + desc.field("etc19", "string", true), + desc.field("etc2", "string", true), + desc.field("etc20", "string", true), + desc.field("etc21", "string", true), + desc.field("etc22", "string", true), + desc.field("etc23", "string", true), + desc.field("etc24", "string", true), + desc.field("etc25", "string", true), + desc.field("etc26", "string", true), + desc.field("etc27", "string", true), + desc.field("etc28", "string", true), + desc.field("etc29", "string", true), + desc.field("etc3", "string", true), + desc.field("etc30", "string", true), + desc.field("etc31", "string", true), + desc.field("etc32", "string", true), + desc.field("etc33", "string", true), + desc.field("etc34", "string", true), + desc.field("etc4", "string", true), + desc.field("etc5", "string", true), + desc.field("etc6", "string", true), + desc.field("etc7", "string", true), + desc.field("etc8", "string", true), + desc.field("etc9", "string", true), + desc.field("fstTaxYmd", "string", true), + desc.field("gum1", "string", true), + desc.field("gum2", "string", true), + desc.field("hangmok1", "string", true), + desc.field("hangmok2", "string", true), + desc.field("hangmok3", "string", true), + desc.field("hangmok4", "string", true), + desc.field("hangmok5", "string", true), + desc.field("hangmok6", "string", true), + desc.field("napDdtlAddr", "string", true), + desc.field("napDrefAddr", "string", true), + desc.field("napDtlAddr", "string", true), + desc.field("napDzipAddr", "string", true), + desc.field("napDzipCd", "string", true), + desc.field("napId", "string", true), + desc.field("napNm", "string", true), + desc.field("napZipAddr", "string", true), + desc.field("napZipCd", "string", true), + desc.field("napgiYmd", "string", true), + desc.field("ocrBuseoCd", "string", true), + desc.field("ocrSiguCd", "string", true), + desc.field("rowStatus", "string", true), + desc.field("semokCd", "string", true), + desc.field("taxAmt", "long", false), + desc.field("taxGubun", "string", true), + desc.field("taxNo", "string", true), + desc.field("taxYm", "string", true) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaWSDTO.java index 8b2252e..d0fc915 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04SimpleBugaWSDTO.java @@ -4,12 +4,15 @@ import java.io.Serializable; import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; import org.apache.axis.encoding.ser.BeanDeserializer; import org.apache.axis.encoding.ser.BeanSerializer; +import cokr.xit.interfaces.sntris.SntrisWSDTO; + /** * @Class Name : Bu04SimpleBugaWSDTO.java * @Description : 세외수입웹서비스 dto @@ -21,7 +24,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04SimpleBugaWSDTO implements Serializable { +public class Bu04SimpleBugaWSDTO extends SntrisWSDTO implements Serializable { private static final long serialVersionUID = 1L; private String fstTaxYmd; @@ -499,87 +502,34 @@ public class Bu04SimpleBugaWSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.fstTaxYmd==null && other.getFstTaxYmd()==null) || - (this.fstTaxYmd!=null && - this.fstTaxYmd.equals(other.getFstTaxYmd()))) && - ((this.gum1==null && other.getGum1()==null) || - (this.gum1!=null && - this.gum1.equals(other.getGum1()))) && - ((this.gum2==null && other.getGum2()==null) || - (this.gum2!=null && - this.gum2.equals(other.getGum2()))) && - ((this.hangmok1==null && other.getHangmok1()==null) || - (this.hangmok1!=null && - this.hangmok1.equals(other.getHangmok1()))) && - ((this.hangmok2==null && other.getHangmok2()==null) || - (this.hangmok2!=null && - this.hangmok2.equals(other.getHangmok2()))) && - ((this.hangmok3==null && other.getHangmok3()==null) || - (this.hangmok3!=null && - this.hangmok3.equals(other.getHangmok3()))) && - ((this.hangmok4==null && other.getHangmok4()==null) || - (this.hangmok4!=null && - this.hangmok4.equals(other.getHangmok4()))) && - ((this.hangmok5==null && other.getHangmok5()==null) || - (this.hangmok5!=null && - this.hangmok5.equals(other.getHangmok5()))) && - ((this.hangmok6==null && other.getHangmok6()==null) || - (this.hangmok6!=null && - this.hangmok6.equals(other.getHangmok6()))) && - ((this.napDdtlAddr==null && other.getNapDdtlAddr()==null) || - (this.napDdtlAddr!=null && - this.napDdtlAddr.equals(other.getNapDdtlAddr()))) && - ((this.napDrefAddr==null && other.getNapDrefAddr()==null) || - (this.napDrefAddr!=null && - this.napDrefAddr.equals(other.getNapDrefAddr()))) && - ((this.napDtlAddr==null && other.getNapDtlAddr()==null) || - (this.napDtlAddr!=null && - this.napDtlAddr.equals(other.getNapDtlAddr()))) && - ((this.napDzipAddr==null && other.getNapDzipAddr()==null) || - (this.napDzipAddr!=null && - this.napDzipAddr.equals(other.getNapDzipAddr()))) && - ((this.napDzipCd==null && other.getNapDzipCd()==null) || - (this.napDzipCd!=null && - this.napDzipCd.equals(other.getNapDzipCd()))) && - ((this.napId==null && other.getNapId()==null) || - (this.napId!=null && - this.napId.equals(other.getNapId()))) && - ((this.napNm==null && other.getNapNm()==null) || - (this.napNm!=null && - this.napNm.equals(other.getNapNm()))) && - ((this.napZipAddr==null && other.getNapZipAddr()==null) || - (this.napZipAddr!=null && - this.napZipAddr.equals(other.getNapZipAddr()))) && - ((this.napZipCd==null && other.getNapZipCd()==null) || - (this.napZipCd!=null && - this.napZipCd.equals(other.getNapZipCd()))) && - ((this.napgiYmd==null && other.getNapgiYmd()==null) || - (this.napgiYmd!=null && - this.napgiYmd.equals(other.getNapgiYmd()))) && - ((this.ocrBuseoCd==null && other.getOcrBuseoCd()==null) || - (this.ocrBuseoCd!=null && - this.ocrBuseoCd.equals(other.getOcrBuseoCd()))) && - ((this.ocrSiguCd==null && other.getOcrSiguCd()==null) || - (this.ocrSiguCd!=null && - this.ocrSiguCd.equals(other.getOcrSiguCd()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.semokCd==null && other.getSemokCd()==null) || - (this.semokCd!=null && - this.semokCd.equals(other.getSemokCd()))) && + boolean _equals = + equals(this.fstTaxYmd, other.getFstTaxYmd()) && + equals(this.gum1, other.getGum1()) && + equals(this.gum2, other.getGum2()) && + equals(this.hangmok1, other.getHangmok1()) && + equals(this.hangmok2, other.getHangmok2()) && + equals(this.hangmok3, other.getHangmok3()) && + equals(this.hangmok4, other.getHangmok4()) && + equals(this.hangmok5, other.getHangmok5()) && + equals(this.hangmok6, other.getHangmok6()) && + equals(this.napDdtlAddr, other.getNapDdtlAddr()) && + equals(this.napDrefAddr, other.getNapDrefAddr()) && + equals(this.napDtlAddr, other.getNapDtlAddr()) && + equals(this.napDzipAddr, other.getNapDzipAddr()) && + equals(this.napDzipCd, other.getNapDzipCd()) && + equals(this.napId, other.getNapId()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napZipAddr, other.getNapZipAddr()) && + equals(this.napZipCd, other.getNapZipCd()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.ocrBuseoCd, other.getOcrBuseoCd()) && + equals(this.ocrSiguCd, other.getOcrSiguCd()) && + equals(this.rowStatus, other.getRowStatus()) && + equals(this.semokCd, other.getSemokCd()) && this.taxAmt == other.getTaxAmt() && - ((this.taxGubun==null && other.getTaxGubun()==null) || - (this.taxGubun!=null && - this.taxGubun.equals(other.getTaxGubun()))) && - ((this.taxNo==null && other.getTaxNo()==null) || - (this.taxNo!=null && - this.taxNo.equals(other.getTaxNo()))) && - ((this.taxYm==null && other.getTaxYm()==null) || - (this.taxYm!=null && - this.taxYm.equals(other.getTaxYm()))); + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()); __equalsCalc = null; return _equals; } @@ -591,120 +541,71 @@ public class Bu04SimpleBugaWSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - if (getFstTaxYmd() != null) { - _hashCode += getFstTaxYmd().hashCode(); - } - if (getGum1() != null) { - _hashCode += getGum1().hashCode(); - } - if (getGum2() != null) { - _hashCode += getGum2().hashCode(); - } - if (getHangmok1() != null) { - _hashCode += getHangmok1().hashCode(); - } - if (getHangmok2() != null) { - _hashCode += getHangmok2().hashCode(); - } - if (getHangmok3() != null) { - _hashCode += getHangmok3().hashCode(); - } - if (getHangmok4() != null) { - _hashCode += getHangmok4().hashCode(); - } - if (getHangmok5() != null) { - _hashCode += getHangmok5().hashCode(); - } - if (getHangmok6() != null) { - _hashCode += getHangmok6().hashCode(); - } - if (getNapDdtlAddr() != null) { - _hashCode += getNapDdtlAddr().hashCode(); - } - if (getNapDrefAddr() != null) { - _hashCode += getNapDrefAddr().hashCode(); - } - if (getNapDtlAddr() != null) { - _hashCode += getNapDtlAddr().hashCode(); - } - if (getNapDzipAddr() != null) { - _hashCode += getNapDzipAddr().hashCode(); - } - if (getNapDzipCd() != null) { - _hashCode += getNapDzipCd().hashCode(); - } - if (getNapId() != null) { - _hashCode += getNapId().hashCode(); - } - if (getNapNm() != null) { - _hashCode += getNapNm().hashCode(); - } - if (getNapZipAddr() != null) { - _hashCode += getNapZipAddr().hashCode(); - } - if (getNapZipCd() != null) { - _hashCode += getNapZipCd().hashCode(); - } - if (getNapgiYmd() != null) { - _hashCode += getNapgiYmd().hashCode(); - } - if (getOcrBuseoCd() != null) { - _hashCode += getOcrBuseoCd().hashCode(); - } - if (getOcrSiguCd() != null) { - _hashCode += getOcrSiguCd().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSemokCd() != null) { - _hashCode += getSemokCd().hashCode(); - } - _hashCode += Long.valueOf(getTaxAmt()).hashCode(); - if (getTaxGubun() != null) { - _hashCode += getTaxGubun().hashCode(); - } - if (getTaxNo() != null) { - _hashCode += getTaxNo().hashCode(); - } - if (getTaxYm() != null) { - _hashCode += getTaxYm().hashCode(); - } + int _hashCode = hashCode( + getFstTaxYmd(), + getGum1(), + getGum2(), + getHangmok1(), + getHangmok2(), + getHangmok3(), + getHangmok4(), + getHangmok5(), + getHangmok6(), + getNapDdtlAddr(), + getNapDrefAddr(), + getNapDtlAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapId(), + getNapNm(), + getNapZipAddr(), + getNapZipCd(), + getNapgiYmd(), + getOcrBuseoCd(), + getOcrSiguCd(), + getRowStatus(), + getSemokCd(), + Long.valueOf(getTaxAmt()), + getTaxGubun(), + getTaxNo(), + getTaxYm() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( Bu04SimpleBugaWSDTO.class, - Descriptor.field("fstTaxYmd", "string", true), - Descriptor.field("gum1", "string", true), - Descriptor.field("gum2", "string", true), - Descriptor.field("hangmok1", "string", true), - Descriptor.field("hangmok2", "string", true), - Descriptor.field("hangmok3", "string", true), - Descriptor.field("hangmok4", "string", true), - Descriptor.field("hangmok5", "string", true), - Descriptor.field("hangmok6", "string", true), - Descriptor.field("napDdtlAddr", "string", true), - Descriptor.field("napDrefAddr", "string", true), - Descriptor.field("napDtlAddr", "string", true), - Descriptor.field("napDzipAddr", "string", true), - Descriptor.field("napDzipCd", "string", true), - Descriptor.field("napId", "string", true), - Descriptor.field("napNm", "string", true), - Descriptor.field("napZipAddr", "string", true), - Descriptor.field("napZipCd", "string", true), - Descriptor.field("napgiYmd", "string", true), - Descriptor.field("ocrBuseoCd", "string", true), - Descriptor.field("ocrSiguCd", "string", true), - Descriptor.field("rowStatus", "string", true), - Descriptor.field("semokCd", "string", true), - Descriptor.field("taxAmt", "long", false), - Descriptor.field("taxGubun", "string", true), - Descriptor.field("taxNo", "string", true), - Descriptor.field("taxYm", "string", true) + desc -> new ElementDesc[] { + desc.field("fstTaxYmd", "string", true), + desc.field("gum1", "string", true), + desc.field("gum2", "string", true), + desc.field("hangmok1", "string", true), + desc.field("hangmok2", "string", true), + desc.field("hangmok3", "string", true), + desc.field("hangmok4", "string", true), + desc.field("hangmok5", "string", true), + desc.field("hangmok6", "string", true), + desc.field("napDdtlAddr", "string", true), + desc.field("napDrefAddr", "string", true), + desc.field("napDtlAddr", "string", true), + desc.field("napDzipAddr", "string", true), + desc.field("napDzipCd", "string", true), + desc.field("napId", "string", true), + desc.field("napNm", "string", true), + desc.field("napZipAddr", "string", true), + desc.field("napZipCd", "string", true), + desc.field("napgiYmd", "string", true), + desc.field("ocrBuseoCd", "string", true), + desc.field("ocrSiguCd", "string", true), + desc.field("rowStatus", "string", true), + desc.field("semokCd", "string", true), + desc.field("taxAmt", "long", false), + desc.field("taxGubun", "string", true), + desc.field("taxNo", "string", true), + desc.field("taxYm", "string", true) + } ); /**Return type metadata object diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04UserInfoWSDTO.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04UserInfoWSDTO.java index 3e8803a..88c5d65 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04UserInfoWSDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/Bu04UserInfoWSDTO.java @@ -1,15 +1,16 @@ package cokr.xit.interfaces.sntris.buga; -import java.io.Serializable; - import javax.xml.namespace.QName; +import org.apache.axis.description.ElementDesc; import org.apache.axis.description.TypeDesc; import org.apache.axis.encoding.Deserializer; import org.apache.axis.encoding.Serializer; import org.apache.axis.encoding.ser.BeanDeserializer; import org.apache.axis.encoding.ser.BeanSerializer; +import cokr.xit.interfaces.sntris.SntrisWSDTO; + /** * @Class Name : Bu04UserInfoWSDTO.java * @Description : 세외수입웹서비스 dto @@ -21,7 +22,7 @@ import org.apache.axis.encoding.ser.BeanSerializer; * ------- ------------- ---------------------- * */ -public class Bu04UserInfoWSDTO implements Serializable { +public class Bu04UserInfoWSDTO extends SntrisWSDTO { private static final long serialVersionUID = 1L; private String buseoCd; @@ -92,17 +93,10 @@ public class Bu04UserInfoWSDTO implements Serializable { return (__equalsCalc == obj); } __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.buseoCd==null && other.getBuseoCd()==null) || - (this.buseoCd!=null && - this.buseoCd.equals(other.getBuseoCd()))) && - ((this.rowStatus==null && other.getRowStatus()==null) || - (this.rowStatus!=null && - this.rowStatus.equals(other.getRowStatus()))) && - ((this.siguCd==null && other.getSiguCd()==null) || - (this.siguCd!=null && - this.siguCd.equals(other.getSiguCd()))); + boolean _equals = + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.rowStatus, other.getRowStatus()) && + equals(this.siguCd, other.getSiguCd()); __equalsCalc = null; return _equals; } @@ -114,28 +108,32 @@ public class Bu04UserInfoWSDTO implements Serializable { return 0; } __hashCodeCalc = true; - int _hashCode = 1; - if (getBuseoCd() != null) { - _hashCode += getBuseoCd().hashCode(); - } - if (getRowStatus() != null) { - _hashCode += getRowStatus().hashCode(); - } - if (getSiguCd() != null) { - _hashCode += getSiguCd().hashCode(); - } + int _hashCode = hashCode( + getBuseoCd(), + getRowStatus(), + getSiguCd() + ); __hashCodeCalc = false; return _hashCode; } // Type metadata - private static TypeDesc typeDesc = Descriptor.type( + private static TypeDesc typeDesc = BugaWebService.descriptor().type( + Bu04UserInfoWSDTO.class, + desc -> new ElementDesc[] { + desc.field("buseoCd", "string", true), + desc.field("rowStatus", "string", true), + desc.field("siguCd", "string", true) + } + ); + +/* private static TypeDesc typeDesc = Descriptor.type( Bu04UserInfoWSDTO.class, Descriptor.field("buseoCd", "string", true), Descriptor.field("rowStatus", "string", true), Descriptor.field("siguCd", "string", true) ); - +*/ /**Return type metadata object */ public static TypeDesc getTypeDesc() { diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWS.java b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWS.java index 6a0eda7..b4b8d38 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWS.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWS.java @@ -3,6 +3,9 @@ package cokr.xit.interfaces.sntris.buga; import java.rmi.Remote; import java.rmi.RemoteException; +import cokr.xit.foundation.Assert; +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; + /** * @Class Name : BugaWS.java * @Description : 세외수입웹서비스 @@ -15,31 +18,57 @@ import java.rmi.RemoteException; * */ public interface BugaWS extends Remote { - public Bu04UserInfoWSDTO getUserInfo(String userId) throws RemoteException; + Bu04UserInfoWSDTO getUserInfo(String userId) throws RemoteException; + + Bu04SemokWSDTO[] getListSemokInfo(String siguCd, String buseoCd) throws RemoteException; + + Bu04SemokWSDTO getSemokInfo(String siguCd, String buseoCd, String semokCd) throws RemoteException; + + Bu04SemokWSRACSDTO getSemokInfoRACS(String siguCd, String buseoCd, String semokCd) throws RemoteException; + + String getNewTaxNo(String siguCd, String semokCd, String taxYm, String taxGubun) throws RemoteException; - public Bu04SemokWSDTO[] getListSemokInfo(String siguCd, String buseoCd) throws RemoteException; + Bu04SimpleBugaWSDTO[] getListSimpleBuga(String buchGubun, String sysGubun, String mulNm) throws RemoteException; - public Bu04SemokWSDTO getSemokInfo(String siguCd, String buseoCd, String semokCd) throws RemoteException; + Bu04SimpleBugaETCWSDTO getSimpleBuga(String buchGubun, String sysGubun, String siguCd, String semokCd, String taxYm, String taxGubun, String taxNo) throws RemoteException; - public Bu04SemokWSRACSDTO getSemokInfoRACS(String siguCd, String buseoCd, String semokCd) throws RemoteException; + StatusCodeWSDTO insertBugaRegist(Bu04BugaWSDTO issue) throws RemoteException; - public String getNewTaxNo(String siguCd, String semokCd, String taxYm, String taxGubun) throws RemoteException; + StatusCodeWSDTO insertBugaRegistExt(Bu04BugaExtWSDTO issue) throws RemoteException; - public Bu04SimpleBugaWSDTO[] getListSimpleBuga(String buchGubun, String sysGubun, String mulNm) throws RemoteException; + boolean isCheckBugaUpdate(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo) throws RemoteException; - public Bu04SimpleBugaETCWSDTO getSimpleBuga(String buchGubun, String sysGubun, String siguCd, String semokCd, String taxYm, String taxGubun, String taxNo) throws RemoteException; + StatusCodeWSDTO deleteBuga(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String lastWorkId, String sysGubun) throws RemoteException; - public StatusCodeWSDTO insertBugaRegist(Bu04BugaWSDTO issue) throws RemoteException; + StatusCodeWSDTO biGwaSeRegistWS(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String buDcGubun) throws RemoteException; - public StatusCodeWSDTO insertBugaRegistExt(Bu04BugaExtWSDTO issue) throws RemoteException; + Bu04GyuljeInfoDTO getGyuljeInfo(String siguCd, String semokCd, String taxYm, String taxGubun, String buseoCd, String taxNo, String lastWorkId) throws RemoteException; - public boolean isCheckBugaUpdate(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo) throws RemoteException; + StatusCodeWSDTO updateNapgiYmd(Bu04BugaWSDTO issue) throws RemoteException; - public StatusCodeWSDTO deleteBuga(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String lastWorkId, String sysGubun) throws RemoteException; + default StatusCodeWSDTO register(String userId, Bu04BugaWSDTO issue) { + try { + issue.setInfo(getUserInfo(Assert.notEmpty(userId, "userId"))); - public StatusCodeWSDTO biGwaSeRegistWS(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String buDcGubun) throws RemoteException; + String siguCd = issue.getSiguCd(), + semokCd = Assert.notEmpty(issue.getSemokCd(), "semokCd"); + issue.setInfo(getSemokInfo( + siguCd, + issue.getBuseoCd(), + semokCd + )); - public Bu04GyuljeInfoDTO getGyuljeInfo(String siguCd, String semokCd, String taxYm, String taxGubun, String buseoCd, String taxNo, String lastWorkId) throws RemoteException; + if (Assert.isEmpty(issue.getTaxNo())) + issue.setTaxNo(getNewTaxNo( + siguCd, + semokCd, + Assert.notEmpty(issue.getTaxYm(), "taxYm"), + Assert.notEmpty(issue.getTaxGubun(), "taxGubun") + )); - public StatusCodeWSDTO updateNapgiYmd(Bu04BugaWSDTO issue) throws RemoteException; + return insertBugaRegist(issue); + } catch (Exception e) { + throw Assert.runtimeException(e); + } + } } \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSProxy.java b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSProxy.java index 2eea3ce..558ba75 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSProxy.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSProxy.java @@ -6,6 +6,8 @@ import javax.xml.rpc.ServiceException; import javax.xml.rpc.Stub; import org.apache.log4j.Logger; + +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; /** * @Class Name : BugaWSProxy.java * @Description : 세외수입웹서비스 diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSSoapBindingStub.java b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSSoapBindingStub.java index 358ca62..62f5d3b 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSSoapBindingStub.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWSSoapBindingStub.java @@ -15,6 +15,7 @@ import org.apache.axis.client.Call; import org.apache.axis.client.Service; import org.apache.axis.client.Stub; import org.apache.axis.description.OperationDesc; +import org.apache.axis.description.ParameterDesc; import org.apache.axis.encoding.DeserializerFactory; import org.apache.axis.encoding.SerializerFactory; import org.apache.axis.encoding.ser.BeanDeserializerFactory; @@ -22,6 +23,9 @@ import org.apache.axis.encoding.ser.BeanSerializerFactory; import org.apache.axis.soap.SOAPConstants; import org.apache.axis.utils.JavaUtils; +import cokr.xit.interfaces.sntris.Descriptor; +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; + /** * @Class Name : BugaWSSoapBindingStub.java * @Description : 세외수입웹서비스 @@ -39,116 +43,148 @@ public class BugaWSSoapBindingStub extends Stub implements BugaWS { private Vector cachedSerFactories = new Vector<>(); private Vector cachedDeserFactories = new Vector<>(); - private static final OperationDesc[] _operations = new OperationDesc[14]; + private static final OperationDesc[] _operations; static { - _operations[0] = Descriptor.operation( - "getUserInfo", Bu04UserInfoWSDTO.class, - Descriptor.parameter("in0", String.class, true) - ); - _operations[1] = Descriptor.operation( - "isCheckBugaUpdate", boolean.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true), - Descriptor.parameter("in3", String.class, true), - Descriptor.parameter("in4", String.class, true), - Descriptor.parameter("in5", String.class, true) - ); - _operations[2] = Descriptor.operation( - "getNewTaxNo", String.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true), - Descriptor.parameter("in3", String.class, true) - ); - _operations[3] = Descriptor.operation( - "getSemokInfo", Bu04SemokWSDTO.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true) - ); - _operations[4] = Descriptor.operation( - "getListSemokInfo", Bu04SemokWSDTO[].class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true) - ); - _operations[5] = Descriptor.operation( - "insertBugaRegist", StatusCodeWSDTO.class, - Descriptor.parameter("in0", Bu04BugaWSDTO.class, true) - ); - _operations[6] = Descriptor.operation( - "insertBugaRegistExt", StatusCodeWSDTO.class, - Descriptor.parameter("in0", Bu04BugaExtWSDTO.class, true) - ); - _operations[7] = Descriptor.operation( - "deleteBuga", StatusCodeWSDTO.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true), - Descriptor.parameter("in3", String.class, true), - Descriptor.parameter("in4", String.class, true), - Descriptor.parameter("in5", String.class, true), - Descriptor.parameter("in6", String.class, true), - Descriptor.parameter("in7", String.class, true) - ); - _operations[8] = Descriptor.operation( - "getListSimpleBuga", Bu04SimpleBugaWSDTO[].class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true) - ); - _operations[9] = Descriptor.operation( - "getSimpleBuga", Bu04SimpleBugaETCWSDTO.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true), - Descriptor.parameter("in3", String.class, true), - Descriptor.parameter("in4", String.class, true), - Descriptor.parameter("in5", String.class, true), - Descriptor.parameter("in6", String.class, true) - ); - _operations[10] = Descriptor.operation( - "getSemokInfoRACS", Bu04SemokWSRACSDTO.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true) - ); - _operations[11] = Descriptor.operation( - "getGyuljeInfo", Bu04GyuljeInfoDTO.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true), - Descriptor.parameter("in3", String.class, true), - Descriptor.parameter("in4", String.class, true), - Descriptor.parameter("in5", String.class, true), - Descriptor.parameter("in6", String.class, true) - ); - _operations[12] = Descriptor.operation( - "BiGwaSeRegistWS", StatusCodeWSDTO.class, - Descriptor.parameter("in0", String.class, true), - Descriptor.parameter("in1", String.class, true), - Descriptor.parameter("in2", String.class, true), - Descriptor.parameter("in3", String.class, true), - Descriptor.parameter("in4", String.class, true), - Descriptor.parameter("in5", String.class, true), - Descriptor.parameter("in6", String.class, true) - ); - _operations[13] = Descriptor.operation( - "updateNapgiYmd", StatusCodeWSDTO.class, - Descriptor.parameter("in0", Bu04BugaWSDTO.class, true) - ); + Descriptor descriptor = BugaWebService.descriptor(); + String name = ""; + _operations = new OperationDesc[] { + descriptor.operation( + name = "getUserInfo", Bu04UserInfoWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true) + } + ), + descriptor.operation( + name = "isCheckBugaUpdate", boolean.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true), + desc.param("in3", String.class, true), + desc.param("in4", String.class, true), + desc.param("in5", String.class, true) + } + ), + descriptor.operation( + name = "getNewTaxNo", String.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true), + desc.param("in3", String.class, true) + } + ), + descriptor.operation( + name = "getSemokInfo", Bu04SemokWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true) + } + ), + descriptor.operation( + name = "getListSemokInfo", Bu04SemokWSDTO[].class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true) + } + ), + descriptor.operation( + name = "insertBugaRegist", StatusCodeWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", Bu04BugaWSDTO.class, true) + } + ), + descriptor.operation( + name = "insertBugaRegistExt", StatusCodeWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", Bu04BugaExtWSDTO.class, true) + } + ), + descriptor.operation( + name = "deleteBuga", StatusCodeWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true), + desc.param("in3", String.class, true), + desc.param("in4", String.class, true), + desc.param("in5", String.class, true), + desc.param("in6", String.class, true), + desc.param("in7", String.class, true) + } + ), + descriptor.operation( + name = "getListSimpleBuga", Bu04SimpleBugaWSDTO[].class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true) + } + ), + descriptor.operation( + name = "getSimpleBuga", Bu04SimpleBugaETCWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true), + desc.param("in3", String.class, true), + desc.param("in4", String.class, true), + desc.param("in5", String.class, true), + desc.param("in6", String.class, true) + } + ), + descriptor.operation( + name = "getSemokInfoRACS", Bu04SemokWSRACSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true) + } + ), + descriptor.operation( + name = "getGyuljeInfo", Bu04GyuljeInfoDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true), + desc.param("in3", String.class, true), + desc.param("in4", String.class, true), + desc.param("in5", String.class, true), + desc.param("in6", String.class, true) + } + ), + descriptor.operation( + name = "BiGwaSeRegistWS", StatusCodeWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", String.class, true), + desc.param("in1", String.class, true), + desc.param("in2", String.class, true), + desc.param("in3", String.class, true), + desc.param("in4", String.class, true), + desc.param("in5", String.class, true), + desc.param("in6", String.class, true) + } + ), + descriptor.operation( + name = "updateNapgiYmd", StatusCodeWSDTO.class, descriptor.qname(name + "Return"), + desc -> new ParameterDesc[] { + desc.param("in0", Bu04BugaWSDTO.class, true) + } + ) + }; } public BugaWSSoapBindingStub() throws AxisFault { this(null); } - public BugaWSSoapBindingStub(URL endpointURL, javax.xml.rpc.Service service) throws AxisFault { + public BugaWSSoapBindingStub(URL endpointURL, Service service) throws AxisFault { this(service); super.cachedEndpoint = endpointURL; } - public BugaWSSoapBindingStub(javax.xml.rpc.Service service) throws AxisFault { + public BugaWSSoapBindingStub(Service service) throws AxisFault { if (service == null) { super.service = new Service(); } else { @@ -157,13 +193,14 @@ public class BugaWSSoapBindingStub extends Stub implements BugaWS { ((Service)super.service).setTypeMappingVersion("1.2"); + Descriptor descriptor = BugaWebService.descriptor(); List.of( Bu04BugaExtWSDTO.class, Bu04BugaWSDTO.class, Bu04GyuljeInfoDTO.class, Bu04SemokWSDTO.class, Bu04SemokWSRACSDTO.class, Bu04SimpleBugaETCWSDTO.class, Bu04SimpleBugaWSDTO.class, Bu04UserInfoWSDTO.class, StatusCodeWSDTO.class ).forEach(klass -> { - cachedSerQNames.add(Descriptor.ofName(klass.getSimpleName())); + cachedSerQNames.add(descriptor.qname(klass.getSimpleName())); cachedSerClasses.add(klass); cachedSerFactories.add(BeanSerializerFactory.class); cachedDeserFactories.add(BeanDeserializerFactory.class); @@ -238,7 +275,7 @@ public class BugaWSSoapBindingStub extends Stub implements BugaWS { _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); - _call.setOperationName(Descriptor.ofName(oper.getName())); + _call.setOperationName(BugaWebService.descriptor().qname(oper.getName())); setRequestHeaders(_call); setAttachments(_call); diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebService.java b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebService.java index 57229c9..b132827 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebService.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebService.java @@ -5,6 +5,8 @@ import java.net.URL; import javax.xml.rpc.Service; import javax.xml.rpc.ServiceException; +import cokr.xit.interfaces.sntris.Descriptor; + /** * @Class Name : BugaWebService.java * @Description : 세외수입웹서비스 @@ -17,9 +19,13 @@ import javax.xml.rpc.ServiceException; * */ public interface BugaWebService extends Service { + public static Descriptor descriptor() { + return new Descriptor("BugaWebService"); + } + public String getBugaWSPortAddress(); public BugaWS getBugaWSPort() throws ServiceException; public BugaWS getBugaWSPort(URL portAddress) throws ServiceException; -} +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebServiceLocator.java b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebServiceLocator.java index 55e0cc7..56c8c41 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebServiceLocator.java +++ b/src/main/java/cokr/xit/interfaces/sntris/buga/BugaWebServiceLocator.java @@ -2,22 +2,18 @@ package cokr.xit.interfaces.sntris.buga; import java.net.URL; import java.rmi.Remote; -import java.util.HashSet; import java.util.Iterator; +import java.util.Set; import javax.xml.namespace.QName; import javax.xml.rpc.ServiceException; -import org.apache.axis.AxisFault; import org.apache.axis.EngineConfiguration; import org.apache.axis.client.Service; import org.apache.axis.client.Stub; -import org.springframework.core.io.ClassPathResource; -import cokr.xit.foundation.AbstractComponent; -import cokr.xit.foundation.data.JSON; -import lombok.Getter; -import lombok.Setter; +import cokr.xit.foundation.Assert; +import cokr.xit.interfaces.sntris.Sntris; /** * @Class Name : BugaWebServiceLocator.java @@ -47,13 +43,19 @@ public class BugaWebServiceLocator extends Service implements BugaWebService { } // Use to get a proxy class for BugaWSPort - private String BugaWSPort_address = Config.get().getNxrpImposition(); + private String BugaWSPort_address = Sntris.get().url("imposition"); @Override public String getBugaWSPortAddress() { return BugaWSPort_address; } + private static ServiceException serviceException(Throwable t) { + if (t instanceof ServiceException se) + return se; + return new ServiceException(Assert.rootCause(t)); + } + // The WSDD service name defaults to the port name. private String BugaWSPortWSDDServiceName = "BugaWSPort"; @@ -70,7 +72,7 @@ public class BugaWebServiceLocator extends Service implements BugaWebService { try { return getBugaWSPort(new URL(BugaWSPort_address)); } catch (Exception e) { - throw new ServiceException(e); + throw serviceException(e); } } @@ -80,10 +82,8 @@ public class BugaWebServiceLocator extends Service implements BugaWebService { BugaWSSoapBindingStub _stub = new BugaWSSoapBindingStub(portAddress, this); _stub.setPortName(getBugaWSPortWSDDServiceName()); return _stub; - } catch (AxisFault e) { - return null; - } catch (Exception e) { - return null; + } catch (Throwable t) { + throw serviceException(t); } } @@ -106,7 +106,7 @@ public class BugaWebServiceLocator extends Service implements BugaWebService { } throw new ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName())); } catch (Throwable t) { - throw new ServiceException(t); + throw serviceException(t); } } @@ -133,17 +133,13 @@ public class BugaWebServiceLocator extends Service implements BugaWebService { @Override public QName getServiceName() { - return new QName("urn:BugaWebService", "BugaWebService"); + return BugaWebService.descriptor().qname("BugaWebService"); } - private HashSet ports = null; + private Set ports = Set.of(BugaWebService.descriptor().qname("BugaWSPort")); @Override public Iterator getPorts() { - if (ports == null) { - ports = new HashSet(); - ports.add(new QName("urn:BugaWebService", "BugaWSPort")); - } return ports.iterator(); } @@ -163,26 +159,4 @@ public class BugaWebServiceLocator extends Service implements BugaWebService { public void setEndpointAddress(QName portName, String address) throws ServiceException { setEndpointAddress(portName.getLocalPart(), address); } - - @Getter - @Setter - public static class Config extends AbstractComponent { - private static final Config conf; - - static { - try { - conf = new JSON().parse(new ClassPathResource("intf-conf/xit-sntris.conf").getInputStream(), Config.class); - } catch (Exception e) { - throw runtimeException(e); - } - } - - public static Config get() { - return conf; - } - - private String - nxrpImposition, - nxrpSeizure; - } } \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/buga/Descriptor.java b/src/main/java/cokr/xit/interfaces/sntris/buga/Descriptor.java deleted file mode 100644 index 7593749..0000000 --- a/src/main/java/cokr/xit/interfaces/sntris/buga/Descriptor.java +++ /dev/null @@ -1,76 +0,0 @@ -package cokr.xit.interfaces.sntris.buga; - -import java.util.List; - -import javax.xml.namespace.QName; - -import org.apache.axis.constants.Style; -import org.apache.axis.constants.Use; -import org.apache.axis.description.ElementDesc; -import org.apache.axis.description.OperationDesc; -import org.apache.axis.description.ParameterDesc; -import org.apache.axis.description.TypeDesc; - -import cokr.xit.foundation.AbstractComponent; - -public class Descriptor extends AbstractComponent { - public static QName ofName(String name) { - return new QName("urn:BugaWebService", name); - } - - private static final List types = List.of("string", "int", "long", "double"); - - public static QName ofType(String typeName) { - String str = typeName.toLowerCase().replace("[]", ""); - - return types.contains(str) ? - new QName("http://www.w3.org/2001/XMLSchema", str) : - ofName(typeName); - } - - public static TypeDesc type(Class klass, ElementDesc... elements) { - TypeDesc typeDesc = new TypeDesc(klass, true); - typeDesc.setXmlType(ofName(klass.getSimpleName())); - - for (ElementDesc element: elements) - typeDesc.addFieldDesc(element); - - return typeDesc; - } - - public static ElementDesc field(String name, String type, boolean nullable) { - ElementDesc elemField = new ElementDesc(); - elemField.setFieldName(name); - elemField.setXmlName(ofName(name)); - elemField.setXmlType(ofType(type)); - elemField.setNillable(nullable); - return elemField; - } - - public static ParameterDesc parameter(String name, Class klass, boolean nullable) { - String type = klass.getSimpleName(); - if (List.of("String").contains(type)) - type = type.toLowerCase(); - - ParameterDesc param = new ParameterDesc(ofName(name), ParameterDesc.IN, ofType(type), klass, false, false); - param.setNillable(nullable); - return param; - } - - public static OperationDesc operation(String name, Class returnType, ParameterDesc... params) { - OperationDesc oper = new OperationDesc(); - oper.setName(name); - - for (ParameterDesc param: params) - oper.addParameter(param); - - String type = returnType.getSimpleName(); - oper.setReturnType(ofType(type)); - oper.setReturnClass(returnType); - oper.setReturnQName(ofName(name + "Return")); - oper.setStyle(Style.WRAPPED); - oper.setUse(Use.LITERAL); - - return oper; - } -} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/dao/SntrisMapper.java b/src/main/java/cokr/xit/interfaces/sntris/dao/SntrisMapper.java deleted file mode 100644 index 9921532..0000000 --- a/src/main/java/cokr/xit/interfaces/sntris/dao/SntrisMapper.java +++ /dev/null @@ -1,27 +0,0 @@ -package cokr.xit.interfaces.sntris.dao; - -import org.apache.ibatis.annotations.Select; -import org.egovframe.rte.psl.dataaccess.mapper.Mapper; - -import cokr.xit.foundation.component.AbstractMapper; -import cokr.xit.foundation.data.DataObject; - -@Mapper("sntrisMapper") -public interface SntrisMapper extends AbstractMapper { - @Select(""" -/* 사용자 시군구 조회(sntrisMapper.selectUserSgg) */ -SELECT B.* - FROM TB_USER A, TB_SGG B - WHERE USER_ID = #{userId} - AND ORG_ID = SGG_CD - AND NSTT_CD = INST_CD - AND B.USE_YN = 'Y'""") - DataObject selectUserSgg(String userId); - - default boolean useSeoul(String userId) { - DataObject sggInfo = selectUserSgg(ifEmpty(userId, currentUser()::getId)); - if (isEmpty(sggInfo)) - return false; - return "6110000".equals(sggInfo.get("UP_INST_CD")); - } -} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWS.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWS.java new file mode 100644 index 0000000..7873ffb --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWS.java @@ -0,0 +1,14 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import java.rmi.Remote; +import java.rmi.RemoteException; + +public interface SntrFileOfferWS extends Remote { + Ye22SunapDTO[] webGwaseInfo004(Ye22InputDTO ye22InputDTO_1) throws RemoteException; + + Ye22ChenapDTO[] webGwaseInfo005(Ye22InputDTO ye22InputDTO_1) throws RemoteException; + + Ye22GwaseInfoDTO[] webGwaseInfo006(Ye22InputDTO ye22InputDTO_1) throws RemoteException; + + Ye22NoticeInfoDTO[] webGwaseInfo007(Ye22InputDTO ye22InputDTO_1) throws RemoteException; +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSBindingStub.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSBindingStub.java new file mode 100644 index 0000000..b2a58a8 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSBindingStub.java @@ -0,0 +1,299 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import java.net.URL; +import java.rmi.RemoteException; +import java.util.Enumeration; +import java.util.List; +import java.util.Vector; + +import javax.xml.namespace.QName; + +import org.apache.axis.AxisEngine; +import org.apache.axis.AxisFault; +import org.apache.axis.NoEndPointException; +import org.apache.axis.client.Call; +import org.apache.axis.client.Service; +import org.apache.axis.client.Stub; +import org.apache.axis.description.OperationDesc; +import org.apache.axis.description.ParameterDesc; +import org.apache.axis.encoding.DeserializerFactory; +import org.apache.axis.encoding.SerializerFactory; +import org.apache.axis.encoding.ser.BeanDeserializerFactory; +import org.apache.axis.encoding.ser.BeanSerializerFactory; +import org.apache.axis.soap.SOAPConstants; +import org.apache.axis.utils.JavaUtils; + +import cokr.xit.interfaces.sntris.Descriptor; +import cokr.xit.interfaces.sntris.prenotice.SntrPreNoticeWebService; + +public class SntrFileOfferWSBindingStub extends Stub implements SntrFileOfferWS { + private Vector cachedSerQNames = new Vector<>(); + private Vector> cachedSerClasses = new Vector<>(); + private Vector cachedSerFactories = new Vector<>(); + private Vector cachedDeserFactories = new Vector<>(); + + static final OperationDesc [] _operations; + + static { + Descriptor descriptor = SntrFileOfferWebService.descriptor(); + _operations = new OperationDesc[] { + descriptor.operation( + "webGwaseInfo004", Ye22SunapDTO[].class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true) + } + ), + descriptor.operation( + "webGwaseInfo005", Ye22ChenapDTO[].class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true) + } + ), + descriptor.operation( + "webGwaseInfo006", Ye22GwaseInfoDTO[].class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true) + } + ), + descriptor.operation( + "webGwaseInfo007", Ye22NoticeInfoDTO[].class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true) + } + ) + }; + } + + public SntrFileOfferWSBindingStub() throws AxisFault { + this(null); + } + + public SntrFileOfferWSBindingStub(URL endpointURL, Service service) throws AxisFault { + this(service); + super.cachedEndpoint = endpointURL; + } + + public SntrFileOfferWSBindingStub(Service service) throws AxisFault { + if (service == null) { + super.service = new Service(); + } else { + super.service = service; + } + ((Service)super.service).setTypeMappingVersion("1.2"); + + Descriptor descriptor = SntrPreNoticeWebService.descriptor(); + List.of( + Ye22ChenapDTO.class, Ye22GwaseInfoDTO.class, Ye22InputDTO.class, + Ye22NoticeInfoDTO.class, Ye22SunapDTO.class + ).forEach(klass -> { + cachedSerQNames.add(descriptor.qname(klass.getSimpleName())); + cachedSerClasses.add(klass); + cachedSerFactories.add(BeanSerializerFactory.class); + cachedDeserFactories.add(BeanDeserializerFactory.class); + }); + } + + protected Call createCall() throws RemoteException { + try { + Call _call = super._createCall(); + if (super.maintainSessionSet) { + _call.setMaintainSession(super.maintainSession); + } + if (super.cachedUsername != null) { + _call.setUsername(super.cachedUsername); + } + if (super.cachedPassword != null) { + _call.setPassword(super.cachedPassword); + } + if (super.cachedEndpoint != null) { + _call.setTargetEndpointAddress(super.cachedEndpoint); + } + if (super.cachedTimeout != null) { + _call.setTimeout(super.cachedTimeout); + } + if (super.cachedPortName != null) { + _call.setPortName(super.cachedPortName); + } + Enumeration keys = super.cachedProperties.keys(); + while (keys.hasMoreElements()) { + String key = (String) keys.nextElement(); + _call.setProperty(key, super.cachedProperties.get(key)); + } + // All the type mapping information is registered + // when the first call is made. + // The type mapping information is actually registered in + // the TypeMappingRegistry of the service, which + // is the reason why registration is only needed for the first call. + synchronized (this) { + if (firstCall()) { + // must set encoding style before registering serializers + _call.setEncodingStyle(null); + for (int i = 0; i < cachedSerFactories.size(); ++i) { + Class cls = cachedSerClasses.get(i); + QName qName = + cachedSerQNames.get(i); + Object x = cachedSerFactories.get(i); + if (x instanceof Class) { + Class sf = (Class) + cachedSerFactories.get(i); + Class df = (Class) + cachedDeserFactories.get(i); + _call.registerTypeMapping(cls, qName, sf, df, false); + } + else if (x instanceof SerializerFactory) { + SerializerFactory sf = (SerializerFactory) + cachedSerFactories.get(i); + DeserializerFactory df = (DeserializerFactory) + cachedDeserFactories.get(i); + _call.registerTypeMapping(cls, qName, sf, df, false); + } + } + } + } + return _call; + } + catch (Throwable _t) { + throw new AxisFault("Failure trying to get the Call object", _t); + } + } + + @Override + public Ye22SunapDTO[] webGwaseInfo004(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[0]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI(""); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo004")); + + setRequestHeaders(_call); + setAttachments(_call); + try { + Object _resp = _call.invoke(new Object[] {ye22InputDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } else { + extractAttachments(_call); + try { + return (Ye22SunapDTO[]) _resp; + } catch (Exception _exception) { + return (Ye22SunapDTO[]) JavaUtils.convert(_resp, Ye22SunapDTO[].class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; + } + } + + @Override + public Ye22ChenapDTO[] webGwaseInfo005(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[1]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI(""); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo005")); + + setRequestHeaders(_call); + setAttachments(_call); + try { + Object _resp = _call.invoke(new Object[] {ye22InputDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } else { + extractAttachments(_call); + try { + return (Ye22ChenapDTO[]) _resp; + } catch (Exception _exception) { + return (Ye22ChenapDTO[]) JavaUtils.convert(_resp, Ye22ChenapDTO[].class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; + } + } + + @Override + public Ye22GwaseInfoDTO[] webGwaseInfo006(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[2]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI(""); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo006")); + + setRequestHeaders(_call); + setAttachments(_call); + try { + Object _resp = _call.invoke(new Object[] {ye22InputDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } else { + extractAttachments(_call); + try { + return (Ye22GwaseInfoDTO[]) _resp; + } catch (Exception _exception) { + return (Ye22GwaseInfoDTO[]) JavaUtils.convert(_resp, Ye22GwaseInfoDTO[].class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; + } + } + + @Override + public Ye22NoticeInfoDTO[] webGwaseInfo007(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[3]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI(""); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo007")); + + setRequestHeaders(_call); + setAttachments(_call); + try { + Object _resp = _call.invoke(new Object[] {ye22InputDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } else { + extractAttachments(_call); + try { + return (Ye22NoticeInfoDTO[]) _resp; + } catch (Exception _exception) { + return (Ye22NoticeInfoDTO[]) JavaUtils.convert(_resp, Ye22NoticeInfoDTO[].class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; + } + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSProxy.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSProxy.java new file mode 100644 index 0000000..547f29c --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWSProxy.java @@ -0,0 +1,68 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import java.rmi.RemoteException; + +import javax.xml.rpc.ServiceException; +import javax.xml.rpc.Stub; + +public class SntrFileOfferWSProxy implements SntrFileOfferWS { + private String _endpoint = null; + private SntrFileOfferWS sntrFileOfferWS = null; + + public SntrFileOfferWSProxy() { + _initSntrFileOfferWSProxy(); + } + + public SntrFileOfferWSProxy(String endpoint) { + _endpoint = endpoint; + _initSntrFileOfferWSProxy(); + } + + private void _initSntrFileOfferWSProxy() { + try { + sntrFileOfferWS = (new SntrFileOfferWebServiceLocator()).getSntrFileOfferWSPort(); + if (sntrFileOfferWS != null) { + if (_endpoint != null) + ((Stub)sntrFileOfferWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); + else + _endpoint = (String)((Stub)sntrFileOfferWS)._getProperty("javax.xml.rpc.service.endpoint.address"); + } + } catch (ServiceException serviceException) {} + } + + public String getEndpoint() { + return _endpoint; + } + + public void setEndpoint(String endpoint) { + _endpoint = endpoint; + if (sntrFileOfferWS != null) + ((Stub)sntrFileOfferWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); + } + + public SntrFileOfferWS getSntrFileOfferWS() { + if (sntrFileOfferWS == null) + _initSntrFileOfferWSProxy(); + return sntrFileOfferWS; + } + + @Override + public Ye22SunapDTO[] webGwaseInfo004(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + return getSntrFileOfferWS().webGwaseInfo004(ye22InputDTO_1); + } + + @Override + public Ye22ChenapDTO[] webGwaseInfo005(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + return getSntrFileOfferWS().webGwaseInfo005(ye22InputDTO_1); + } + + @Override + public Ye22GwaseInfoDTO[] webGwaseInfo006(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + return getSntrFileOfferWS().webGwaseInfo006(ye22InputDTO_1); + } + + @Override + public Ye22NoticeInfoDTO[] webGwaseInfo007(Ye22InputDTO ye22InputDTO_1) throws RemoteException { + return getSntrFileOfferWS().webGwaseInfo007(ye22InputDTO_1); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebService.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebService.java new file mode 100644 index 0000000..c63871d --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebService.java @@ -0,0 +1,20 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import java.net.URL; + +import javax.xml.rpc.Service; +import javax.xml.rpc.ServiceException; + +import cokr.xit.interfaces.sntris.Descriptor; + +public interface SntrFileOfferWebService extends Service { + static Descriptor descriptor() { + return new Descriptor("SntrFileOfferWebService"); + } + + String getSntrFileOfferWSPortAddress(); + + SntrFileOfferWS getSntrFileOfferWSPort() throws ServiceException; + + SntrFileOfferWS getSntrFileOfferWSPort(URL portAddress) throws ServiceException; +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebServiceLocator.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebServiceLocator.java new file mode 100644 index 0000000..482f14d --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/SntrFileOfferWebServiceLocator.java @@ -0,0 +1,154 @@ +/** + * SntrFileOfferWebServiceLocator.java + * + * This file was auto-generated from WSDL + * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. + */ + +package cokr.xit.interfaces.sntris.fileoffer; + +import java.net.MalformedURLException; +import java.net.URL; +import java.rmi.Remote; +import java.util.Iterator; +import java.util.Set; + +import javax.xml.namespace.QName; +import javax.xml.rpc.ServiceException; + +import org.apache.axis.AxisFault; +import org.apache.axis.EngineConfiguration; +import org.apache.axis.client.Service; +import org.apache.axis.client.Stub; + +import cokr.xit.interfaces.sntris.Sntris; + +public class SntrFileOfferWebServiceLocator extends Service implements SntrFileOfferWebService { + private static final long serialVersionUID = 1L; + + public SntrFileOfferWebServiceLocator() {} + + + public SntrFileOfferWebServiceLocator(EngineConfiguration config) { + super(config); + } + + public SntrFileOfferWebServiceLocator(String wsdlLoc, QName sName) throws ServiceException { + super(wsdlLoc, sName); + } + + // Use to get a proxy class for SntrFileOfferWSPort + private String SntrFileOfferWSPort_address = Sntris.get().url("fileoffer"); + + @Override + public String getSntrFileOfferWSPortAddress() { + return SntrFileOfferWSPort_address; + } + + // The WSDD service name defaults to the port name. + private String SntrFileOfferWSPortWSDDServiceName = "SntrFileOfferWSPort"; + + public String getSntrFileOfferWSPortWSDDServiceName() { + return SntrFileOfferWSPortWSDDServiceName; + } + + public void setSntrFileOfferWSPortWSDDServiceName(String name) { + SntrFileOfferWSPortWSDDServiceName = name; + } + + @Override + public SntrFileOfferWS getSntrFileOfferWSPort() throws ServiceException { + URL endpoint; + try { + endpoint = new URL(SntrFileOfferWSPort_address); + } catch (MalformedURLException e) { + throw new ServiceException(e); + } + return getSntrFileOfferWSPort(endpoint); + } + + @Override + public SntrFileOfferWS getSntrFileOfferWSPort(URL portAddress) throws ServiceException { + try { + SntrFileOfferWSBindingStub _stub = new SntrFileOfferWSBindingStub(portAddress, this); + _stub.setPortName(getSntrFileOfferWSPortWSDDServiceName()); + return _stub; + } catch (AxisFault e) { + return null; + } + } + + public void setSntrFileOfferWSPortEndpointAddress(String address) { + SntrFileOfferWSPort_address = address; + } + + /** + * For the given interface, get the stub implementation. + * If this service has no port for the given interface, + * then ServiceException is thrown. + */ + @Override + public Remote getPort(Class serviceEndpointInterface) throws ServiceException { + try { + if (SntrFileOfferWS.class.isAssignableFrom(serviceEndpointInterface)) { + SntrFileOfferWSBindingStub _stub = new SntrFileOfferWSBindingStub(new URL(SntrFileOfferWSPort_address), this); + _stub.setPortName(getSntrFileOfferWSPortWSDDServiceName()); + return _stub; + } + } catch (Throwable t) { + throw new ServiceException(t); + } + throw new ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName())); + } + + /** + * For the given interface, get the stub implementation. + * If this service has no port for the given interface, + * then ServiceException is thrown. + */ + @Override + public Remote getPort(QName portName, Class serviceEndpointInterface) throws ServiceException { + if (portName == null) { + return getPort(serviceEndpointInterface); + } + String inputPortName = portName.getLocalPart(); + if ("SntrFileOfferWSPort".equals(inputPortName)) { + return getSntrFileOfferWSPort(); + } + else { + Remote _stub = getPort(serviceEndpointInterface); + ((Stub) _stub).setPortName(portName); + return _stub; + } + } + + @Override + public QName getServiceName() { + return new QName("urn:SntrFileOfferWebService", "SntrFileOfferWebService"); + } + + private Set ports = Set.of(SntrFileOfferWebService.descriptor().qname("SntrFileOfferWSPort")); + + @Override + public Iterator getPorts() { + return ports.iterator(); + } + + /** + * Set the endpoint address for the specified port name. + */ + public void setEndpointAddress(String portName, String address) throws ServiceException { + if ("SntrFileOfferWSPort".equals(portName)) { + setSntrFileOfferWSPortEndpointAddress(address); + } else { // Unknown Port Name + throw new ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName); + } + } + + /** + * Set the endpoint address for the specified port name. + */ + public void setEndpointAddress(QName portName, String address) throws ServiceException { + setEndpointAddress(portName.getLocalPart(), address); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22ChenapDTO.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22ChenapDTO.java new file mode 100644 index 0000000..a3f197d --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22ChenapDTO.java @@ -0,0 +1,1459 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Ye22ChenapDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String CAccountNo; + private String EAccountNo; + private String FAccountNo; + private String HAccountNo; + private String IAccountNo; + private String KAccountNo; + private String NAccountNo; + private String OAccountNo; + private String PAccountNo; + private String QAccountNo; + private String SAccountNo; + private String WAccountNo; + private String bigo; + private String buAfk; + private String buseoCd; + private String curDdtlAddr; + private String curDrefAddr; + private String curDtlAddr; + private String curDzipAddr; + private String curDzipCd; + private String curTelNo; + private String curZipAddr; + private String curZipCd; + private String enapbuNo; + private String etc1; + private String etc2; + private String fstNapgiYmd; + private long gigum; + private long gigumGasanSum; + private long gigumIja; + private String gijunDate; + private long gukse; + private long gukseGasanSum; + private long gukseIja; + private long guse; + private long guseGasanSum; + private long guseIja; + private String hangmok1; + private String hangmok2; + private String hangmok3; + private String hangmok4; + private String hangmok5; + private String hangmok6; + private String jgasanJojungCnt; + private String jgasanJojungSymd; + private String jgasanJojungYmd; + private String mulGubun; + private String mulNm; + private String napGubun; + private String napId; + private String napNm; + private String napgiYmd; + private String napseNo; + private String ocrBuseoCd; + private String ocrSiguCd; + private String orgNapId; + private String preNapgiYmd; + private String semokCd; + private String sidoCd; + private String siguCd; + private long sise; + private long siseGasanSum; + private long siseIja; + private String sysGubun; + private String taxGubun; + private String taxNo; + private String taxYm; + private String taxYmd; + private long vatAmt; + + public Ye22ChenapDTO() {} + + public Ye22ChenapDTO( + String CAccountNo, + String EAccountNo, + String FAccountNo, + String HAccountNo, + String IAccountNo, + String KAccountNo, + String NAccountNo, + String OAccountNo, + String PAccountNo, + String QAccountNo, + String SAccountNo, + String WAccountNo, + String bigo, + String buAfk, + String buseoCd, + String curDdtlAddr, + String curDrefAddr, + String curDtlAddr, + String curDzipAddr, + String curDzipCd, + String curTelNo, + String curZipAddr, + String curZipCd, + String enapbuNo, + String etc1, + String etc2, + String fstNapgiYmd, + long gigum, + long gigumGasanSum, + long gigumIja, + String gijunDate, + long gukse, + long gukseGasanSum, + long gukseIja, + long guse, + long guseGasanSum, + long guseIja, + String hangmok1, + String hangmok2, + String hangmok3, + String hangmok4, + String hangmok5, + String hangmok6, + String jgasanJojungCnt, + String jgasanJojungSymd, + String jgasanJojungYmd, + String mulGubun, + String mulNm, + String napGubun, + String napId, + String napNm, + String napgiYmd, + String napseNo, + String ocrBuseoCd, + String ocrSiguCd, + String orgNapId, + String preNapgiYmd, + String semokCd, + String sidoCd, + String siguCd, + long sise, + long siseGasanSum, + long siseIja, + String sysGubun, + String taxGubun, + String taxNo, + String taxYm, + String taxYmd, + long vatAmt + ) { + this.CAccountNo = CAccountNo; + this.EAccountNo = EAccountNo; + this.FAccountNo = FAccountNo; + this.HAccountNo = HAccountNo; + this.IAccountNo = IAccountNo; + this.KAccountNo = KAccountNo; + this.NAccountNo = NAccountNo; + this.OAccountNo = OAccountNo; + this.PAccountNo = PAccountNo; + this.QAccountNo = QAccountNo; + this.SAccountNo = SAccountNo; + this.WAccountNo = WAccountNo; + this.bigo = bigo; + this.buAfk = buAfk; + this.buseoCd = buseoCd; + this.curDdtlAddr = curDdtlAddr; + this.curDrefAddr = curDrefAddr; + this.curDtlAddr = curDtlAddr; + this.curDzipAddr = curDzipAddr; + this.curDzipCd = curDzipCd; + this.curTelNo = curTelNo; + this.curZipAddr = curZipAddr; + this.curZipCd = curZipCd; + this.enapbuNo = enapbuNo; + this.etc1 = etc1; + this.etc2 = etc2; + this.fstNapgiYmd = fstNapgiYmd; + this.gigum = gigum; + this.gigumGasanSum = gigumGasanSum; + this.gigumIja = gigumIja; + this.gijunDate = gijunDate; + this.gukse = gukse; + this.gukseGasanSum = gukseGasanSum; + this.gukseIja = gukseIja; + this.guse = guse; + this.guseGasanSum = guseGasanSum; + this.guseIja = guseIja; + this.hangmok1 = hangmok1; + this.hangmok2 = hangmok2; + this.hangmok3 = hangmok3; + this.hangmok4 = hangmok4; + this.hangmok5 = hangmok5; + this.hangmok6 = hangmok6; + this.jgasanJojungCnt = jgasanJojungCnt; + this.jgasanJojungSymd = jgasanJojungSymd; + this.jgasanJojungYmd = jgasanJojungYmd; + this.mulGubun = mulGubun; + this.mulNm = mulNm; + this.napGubun = napGubun; + this.napId = napId; + this.napNm = napNm; + this.napgiYmd = napgiYmd; + this.napseNo = napseNo; + this.ocrBuseoCd = ocrBuseoCd; + this.ocrSiguCd = ocrSiguCd; + this.orgNapId = orgNapId; + this.preNapgiYmd = preNapgiYmd; + this.semokCd = semokCd; + this.sidoCd = sidoCd; + this.siguCd = siguCd; + this.sise = sise; + this.siseGasanSum = siseGasanSum; + this.siseIja = siseIja; + this.sysGubun = sysGubun; + this.taxGubun = taxGubun; + this.taxNo = taxNo; + this.taxYm = taxYm; + this.taxYmd = taxYmd; + this.vatAmt = vatAmt; + } + + /**Gets the CAccountNo value for this Ye22ChenapDTO. + * @return CAccountNo + */ + public String getCAccountNo() { + return CAccountNo; + } + + /**Sets the CAccountNo value for this Ye22ChenapDTO. + * @param CAccountNo + */ + public void setCAccountNo(String CAccountNo) { + this.CAccountNo = CAccountNo; + } + + /**Gets the EAccountNo value for this Ye22ChenapDTO. + * @return EAccountNo + */ + public String getEAccountNo() { + return EAccountNo; + } + + /**Sets the EAccountNo value for this Ye22ChenapDTO. + * @param EAccountNo + */ + public void setEAccountNo(String EAccountNo) { + this.EAccountNo = EAccountNo; + } + + /**Gets the FAccountNo value for this Ye22ChenapDTO. + * @return FAccountNo + */ + public String getFAccountNo() { + return FAccountNo; + } + + /**Sets the FAccountNo value for this Ye22ChenapDTO. + * @param FAccountNo + */ + public void setFAccountNo(String FAccountNo) { + this.FAccountNo = FAccountNo; + } + + /**Gets the HAccountNo value for this Ye22ChenapDTO. + * @return HAccountNo + */ + public String getHAccountNo() { + return HAccountNo; + } + + /**Sets the HAccountNo value for this Ye22ChenapDTO. + * @param HAccountNo + */ + public void setHAccountNo(String HAccountNo) { + this.HAccountNo = HAccountNo; + } + + /**Gets the IAccountNo value for this Ye22ChenapDTO. + * @return IAccountNo + */ + public String getIAccountNo() { + return IAccountNo; + } + + /**Sets the IAccountNo value for this Ye22ChenapDTO. + * @param IAccountNo + */ + public void setIAccountNo(String IAccountNo) { + this.IAccountNo = IAccountNo; + } + + /**Gets the KAccountNo value for this Ye22ChenapDTO. + * @return KAccountNo + */ + public String getKAccountNo() { + return KAccountNo; + } + + /**Sets the KAccountNo value for this Ye22ChenapDTO. + * @param KAccountNo + */ + public void setKAccountNo(String KAccountNo) { + this.KAccountNo = KAccountNo; + } + + /**Gets the NAccountNo value for this Ye22ChenapDTO. + * @return NAccountNo + */ + public String getNAccountNo() { + return NAccountNo; + } + + /**Sets the NAccountNo value for this Ye22ChenapDTO. + * @param NAccountNo + */ + public void setNAccountNo(String NAccountNo) { + this.NAccountNo = NAccountNo; + } + + /**Gets the OAccountNo value for this Ye22ChenapDTO. + * @return OAccountNo + */ + public String getOAccountNo() { + return OAccountNo; + } + + /**Sets the OAccountNo value for this Ye22ChenapDTO. + * @param OAccountNo + */ + public void setOAccountNo(String OAccountNo) { + this.OAccountNo = OAccountNo; + } + + /**Gets the PAccountNo value for this Ye22ChenapDTO. + * @return PAccountNo + */ + public String getPAccountNo() { + return PAccountNo; + } + + /**Sets the PAccountNo value for this Ye22ChenapDTO. + * @param PAccountNo + */ + public void setPAccountNo(String PAccountNo) { + this.PAccountNo = PAccountNo; + } + + /**Gets the QAccountNo value for this Ye22ChenapDTO. + * @return QAccountNo + */ + public String getQAccountNo() { + return QAccountNo; + } + + /**Sets the QAccountNo value for this Ye22ChenapDTO. + * @param QAccountNo + */ + public void setQAccountNo(String QAccountNo) { + this.QAccountNo = QAccountNo; + } + + /**Gets the SAccountNo value for this Ye22ChenapDTO. + * @return SAccountNo + */ + public String getSAccountNo() { + return SAccountNo; + } + + /**Sets the SAccountNo value for this Ye22ChenapDTO. + * @param SAccountNo + */ + public void setSAccountNo(String SAccountNo) { + this.SAccountNo = SAccountNo; + } + + /**Gets the WAccountNo value for this Ye22ChenapDTO. + * @return WAccountNo + */ + public String getWAccountNo() { + return WAccountNo; + } + + /**Sets the WAccountNo value for this Ye22ChenapDTO. + * @param WAccountNo + */ + public void setWAccountNo(String WAccountNo) { + this.WAccountNo = WAccountNo; + } + + /**Gets the bigo value for this Ye22ChenapDTO. + * @return bigo + */ + public String getBigo() { + return bigo; + } + + /**Sets the bigo value for this Ye22ChenapDTO. + * @param bigo + */ + public void setBigo(String bigo) { + this.bigo = bigo; + } + + /**Gets the buAfk value for this Ye22ChenapDTO. + * @return buAfk + */ + public String getBuAfk() { + return buAfk; + } + + /**Sets the buAfk value for this Ye22ChenapDTO. + * @param buAfk + */ + public void setBuAfk(String buAfk) { + this.buAfk = buAfk; + } + + /**Gets the buseoCd value for this Ye22ChenapDTO. + * @return buseoCd + */ + public String getBuseoCd() { + return buseoCd; + } + + /**Sets the buseoCd value for this Ye22ChenapDTO. + * @param buseoCd + */ + public void setBuseoCd(String buseoCd) { + this.buseoCd = buseoCd; + } + + /**Gets the curDdtlAddr value for this Ye22ChenapDTO. + * @return curDdtlAddr + */ + public String getCurDdtlAddr() { + return curDdtlAddr; + } + + /**Sets the curDdtlAddr value for this Ye22ChenapDTO. + * @param curDdtlAddr + */ + public void setCurDdtlAddr(String curDdtlAddr) { + this.curDdtlAddr = curDdtlAddr; + } + + /**Gets the curDrefAddr value for this Ye22ChenapDTO. + * @return curDrefAddr + */ + public String getCurDrefAddr() { + return curDrefAddr; + } + + /**Sets the curDrefAddr value for this Ye22ChenapDTO. + * @param curDrefAddr + */ + public void setCurDrefAddr(String curDrefAddr) { + this.curDrefAddr = curDrefAddr; + } + + /**Gets the curDtlAddr value for this Ye22ChenapDTO. + * @return curDtlAddr + */ + public String getCurDtlAddr() { + return curDtlAddr; + } + + /**Sets the curDtlAddr value for this Ye22ChenapDTO. + * @param curDtlAddr + */ + public void setCurDtlAddr(String curDtlAddr) { + this.curDtlAddr = curDtlAddr; + } + + /**Gets the curDzipAddr value for this Ye22ChenapDTO. + * @return curDzipAddr + */ + public String getCurDzipAddr() { + return curDzipAddr; + } + + /**Sets the curDzipAddr value for this Ye22ChenapDTO. + * @param curDzipAddr + */ + public void setCurDzipAddr(String curDzipAddr) { + this.curDzipAddr = curDzipAddr; + } + + /**Gets the curDzipCd value for this Ye22ChenapDTO. + * @return curDzipCd + */ + public String getCurDzipCd() { + return curDzipCd; + } + + /**Sets the curDzipCd value for this Ye22ChenapDTO. + * @param curDzipCd + */ + public void setCurDzipCd(String curDzipCd) { + this.curDzipCd = curDzipCd; + } + + /**Gets the curTelNo value for this Ye22ChenapDTO. + * @return curTelNo + */ + public String getCurTelNo() { + return curTelNo; + } + + /**Sets the curTelNo value for this Ye22ChenapDTO. + * @param curTelNo + */ + public void setCurTelNo(String curTelNo) { + this.curTelNo = curTelNo; + } + + /**Gets the curZipAddr value for this Ye22ChenapDTO. + * @return curZipAddr + */ + public String getCurZipAddr() { + return curZipAddr; + } + + /**Sets the curZipAddr value for this Ye22ChenapDTO. + * @param curZipAddr + */ + public void setCurZipAddr(String curZipAddr) { + this.curZipAddr = curZipAddr; + } + + /**Gets the curZipCd value for this Ye22ChenapDTO. + * @return curZipCd + */ + public String getCurZipCd() { + return curZipCd; + } + + /**Sets the curZipCd value for this Ye22ChenapDTO. + * @param curZipCd + */ + public void setCurZipCd(String curZipCd) { + this.curZipCd = curZipCd; + } + + /**Gets the enapbuNo value for this Ye22ChenapDTO. + * @return enapbuNo + */ + public String getEnapbuNo() { + return enapbuNo; + } + + /**Sets the enapbuNo value for this Ye22ChenapDTO. + * @param enapbuNo + */ + public void setEnapbuNo(String enapbuNo) { + this.enapbuNo = enapbuNo; + } + + /**Gets the etc1 value for this Ye22ChenapDTO. + * @return etc1 + */ + public String getEtc1() { + return etc1; + } + + /**Sets the etc1 value for this Ye22ChenapDTO. + * @param etc1 + */ + public void setEtc1(String etc1) { + this.etc1 = etc1; + } + + /**Gets the etc2 value for this Ye22ChenapDTO. + * @return etc2 + */ + public String getEtc2() { + return etc2; + } + + /**Sets the etc2 value for this Ye22ChenapDTO. + * @param etc2 + */ + public void setEtc2(String etc2) { + this.etc2 = etc2; + } + + /**Gets the fstNapgiYmd value for this Ye22ChenapDTO. + * @return fstNapgiYmd + */ + public String getFstNapgiYmd() { + return fstNapgiYmd; + } + + /**Sets the fstNapgiYmd value for this Ye22ChenapDTO. + * @param fstNapgiYmd + */ + public void setFstNapgiYmd(String fstNapgiYmd) { + this.fstNapgiYmd = fstNapgiYmd; + } + + /**Gets the gigum value for this Ye22ChenapDTO. + * @return gigum + */ + public long getGigum() { + return gigum; + } + + /**Sets the gigum value for this Ye22ChenapDTO. + * @param gigum + */ + public void setGigum(long gigum) { + this.gigum = gigum; + } + + /**Gets the gigumGasanSum value for this Ye22ChenapDTO. + * @return gigumGasanSum + */ + public long getGigumGasanSum() { + return gigumGasanSum; + } + + /**Sets the gigumGasanSum value for this Ye22ChenapDTO. + * @param gigumGasanSum + */ + public void setGigumGasanSum(long gigumGasanSum) { + this.gigumGasanSum = gigumGasanSum; + } + + /**Gets the gigumIja value for this Ye22ChenapDTO. + * @return gigumIja + */ + public long getGigumIja() { + return gigumIja; + } + + /**Sets the gigumIja value for this Ye22ChenapDTO. + * @param gigumIja + */ + public void setGigumIja(long gigumIja) { + this.gigumIja = gigumIja; + } + + /**Gets the gijunDate value for this Ye22ChenapDTO. + * @return gijunDate + */ + public String getGijunDate() { + return gijunDate; + } + + /**Sets the gijunDate value for this Ye22ChenapDTO. + * @param gijunDate + */ + public void setGijunDate(String gijunDate) { + this.gijunDate = gijunDate; + } + + /**Gets the gukse value for this Ye22ChenapDTO. + * @return gukse + */ + public long getGukse() { + return gukse; + } + + /**Sets the gukse value for this Ye22ChenapDTO. + * @param gukse + */ + public void setGukse(long gukse) { + this.gukse = gukse; + } + + /**Gets the gukseGasanSum value for this Ye22ChenapDTO. + * @return gukseGasanSum + */ + public long getGukseGasanSum() { + return gukseGasanSum; + } + + /**Sets the gukseGasanSum value for this Ye22ChenapDTO. + * @param gukseGasanSum + */ + public void setGukseGasanSum(long gukseGasanSum) { + this.gukseGasanSum = gukseGasanSum; + } + + /**Gets the gukseIja value for this Ye22ChenapDTO. + * @return gukseIja + */ + public long getGukseIja() { + return gukseIja; + } + + /**Sets the gukseIja value for this Ye22ChenapDTO. + * @param gukseIja + */ + public void setGukseIja(long gukseIja) { + this.gukseIja = gukseIja; + } + + /**Gets the guse value for this Ye22ChenapDTO. + * @return guse + */ + public long getGuse() { + return guse; + } + + /**Sets the guse value for this Ye22ChenapDTO. + * @param guse + */ + public void setGuse(long guse) { + this.guse = guse; + } + + /**Gets the guseGasanSum value for this Ye22ChenapDTO. + * @return guseGasanSum + */ + public long getGuseGasanSum() { + return guseGasanSum; + } + + /**Sets the guseGasanSum value for this Ye22ChenapDTO. + * @param guseGasanSum + */ + public void setGuseGasanSum(long guseGasanSum) { + this.guseGasanSum = guseGasanSum; + } + + /**Gets the guseIja value for this Ye22ChenapDTO. + * @return guseIja + */ + public long getGuseIja() { + return guseIja; + } + + /**Sets the guseIja value for this Ye22ChenapDTO. + * @param guseIja + */ + public void setGuseIja(long guseIja) { + this.guseIja = guseIja; + } + + /**Gets the hangmok1 value for this Ye22ChenapDTO. + * @return hangmok1 + */ + public String getHangmok1() { + return hangmok1; + } + + /**Sets the hangmok1 value for this Ye22ChenapDTO. + * @param hangmok1 + */ + public void setHangmok1(String hangmok1) { + this.hangmok1 = hangmok1; + } + + /**Gets the hangmok2 value for this Ye22ChenapDTO. + * @return hangmok2 + */ + public String getHangmok2() { + return hangmok2; + } + + /**Sets the hangmok2 value for this Ye22ChenapDTO. + * @param hangmok2 + */ + public void setHangmok2(String hangmok2) { + this.hangmok2 = hangmok2; + } + + /**Gets the hangmok3 value for this Ye22ChenapDTO. + * @return hangmok3 + */ + public String getHangmok3() { + return hangmok3; + } + + /**Sets the hangmok3 value for this Ye22ChenapDTO. + * @param hangmok3 + */ + public void setHangmok3(String hangmok3) { + this.hangmok3 = hangmok3; + } + + /**Gets the hangmok4 value for this Ye22ChenapDTO. + * @return hangmok4 + */ + public String getHangmok4() { + return hangmok4; + } + + /**Sets the hangmok4 value for this Ye22ChenapDTO. + * @param hangmok4 + */ + public void setHangmok4(String hangmok4) { + this.hangmok4 = hangmok4; + } + + /**Gets the hangmok5 value for this Ye22ChenapDTO. + * @return hangmok5 + */ + public String getHangmok5() { + return hangmok5; + } + + /**Sets the hangmok5 value for this Ye22ChenapDTO. + * @param hangmok5 + */ + public void setHangmok5(String hangmok5) { + this.hangmok5 = hangmok5; + } + + /**Gets the hangmok6 value for this Ye22ChenapDTO. + * @return hangmok6 + */ + public String getHangmok6() { + return hangmok6; + } + + /**Sets the hangmok6 value for this Ye22ChenapDTO. + * @param hangmok6 + */ + public void setHangmok6(String hangmok6) { + this.hangmok6 = hangmok6; + } + + /**Gets the jgasanJojungCnt value for this Ye22ChenapDTO. + * @return jgasanJojungCnt + */ + public String getJgasanJojungCnt() { + return jgasanJojungCnt; + } + + /**Sets the jgasanJojungCnt value for this Ye22ChenapDTO. + * @param jgasanJojungCnt + */ + public void setJgasanJojungCnt(String jgasanJojungCnt) { + this.jgasanJojungCnt = jgasanJojungCnt; + } + + /**Gets the jgasanJojungSymd value for this Ye22ChenapDTO. + * @return jgasanJojungSymd + */ + public String getJgasanJojungSymd() { + return jgasanJojungSymd; + } + + /**Sets the jgasanJojungSymd value for this Ye22ChenapDTO. + * @param jgasanJojungSymd + */ + public void setJgasanJojungSymd(String jgasanJojungSymd) { + this.jgasanJojungSymd = jgasanJojungSymd; + } + + /**Gets the jgasanJojungYmd value for this Ye22ChenapDTO. + * @return jgasanJojungYmd + */ + public String getJgasanJojungYmd() { + return jgasanJojungYmd; + } + + /**Sets the jgasanJojungYmd value for this Ye22ChenapDTO. + * @param jgasanJojungYmd + */ + public void setJgasanJojungYmd(String jgasanJojungYmd) { + this.jgasanJojungYmd = jgasanJojungYmd; + } + + /**Gets the mulGubun value for this Ye22ChenapDTO. + * @return mulGubun + */ + public String getMulGubun() { + return mulGubun; + } + + /**Sets the mulGubun value for this Ye22ChenapDTO. + * @param mulGubun + */ + public void setMulGubun(String mulGubun) { + this.mulGubun = mulGubun; + } + + /**Gets the mulNm value for this Ye22ChenapDTO. + * @return mulNm + */ + public String getMulNm() { + return mulNm; + } + + /**Sets the mulNm value for this Ye22ChenapDTO. + * @param mulNm + */ + public void setMulNm(String mulNm) { + this.mulNm = mulNm; + } + + /**Gets the napGubun value for this Ye22ChenapDTO. + * @return napGubun + */ + public String getNapGubun() { + return napGubun; + } + + /**Sets the napGubun value for this Ye22ChenapDTO. + * @param napGubun + */ + public void setNapGubun(String napGubun) { + this.napGubun = napGubun; + } + + /**Gets the napId value for this Ye22ChenapDTO. + * @return napId + */ + public String getNapId() { + return napId; + } + + /**Sets the napId value for this Ye22ChenapDTO. + * @param napId + */ + public void setNapId(String napId) { + this.napId = napId; + } + + /**Gets the napNm value for this Ye22ChenapDTO. + * @return napNm + */ + public String getNapNm() { + return napNm; + } + + /**Sets the napNm value for this Ye22ChenapDTO. + * @param napNm + */ + public void setNapNm(String napNm) { + this.napNm = napNm; + } + + /**Gets the napgiYmd value for this Ye22ChenapDTO. + * @return napgiYmd + */ + public String getNapgiYmd() { + return napgiYmd; + } + + /**Sets the napgiYmd value for this Ye22ChenapDTO. + * @param napgiYmd + */ + public void setNapgiYmd(String napgiYmd) { + this.napgiYmd = napgiYmd; + } + + /**Gets the napseNo value for this Ye22ChenapDTO. + * @return napseNo + */ + public String getNapseNo() { + return napseNo; + } + + /**Sets the napseNo value for this Ye22ChenapDTO. + * @param napseNo + */ + public void setNapseNo(String napseNo) { + this.napseNo = napseNo; + } + + /**Gets the ocrBuseoCd value for this Ye22ChenapDTO. + * @return ocrBuseoCd + */ + public String getOcrBuseoCd() { + return ocrBuseoCd; + } + + /**Sets the ocrBuseoCd value for this Ye22ChenapDTO. + * @param ocrBuseoCd + */ + public void setOcrBuseoCd(String ocrBuseoCd) { + this.ocrBuseoCd = ocrBuseoCd; + } + + /**Gets the ocrSiguCd value for this Ye22ChenapDTO. + * @return ocrSiguCd + */ + public String getOcrSiguCd() { + return ocrSiguCd; + } + + /**Sets the ocrSiguCd value for this Ye22ChenapDTO. + * @param ocrSiguCd + */ + public void setOcrSiguCd(String ocrSiguCd) { + this.ocrSiguCd = ocrSiguCd; + } + + /**Gets the orgNapId value for this Ye22ChenapDTO. + * @return orgNapId + */ + public String getOrgNapId() { + return orgNapId; + } + + /**Sets the orgNapId value for this Ye22ChenapDTO. + * @param orgNapId + */ + public void setOrgNapId(String orgNapId) { + this.orgNapId = orgNapId; + } + + /**Gets the preNapgiYmd value for this Ye22ChenapDTO. + * @return preNapgiYmd + */ + public String getPreNapgiYmd() { + return preNapgiYmd; + } + + /**Sets the preNapgiYmd value for this Ye22ChenapDTO. + * @param preNapgiYmd + */ + public void setPreNapgiYmd(String preNapgiYmd) { + this.preNapgiYmd = preNapgiYmd; + } + + /**Gets the semokCd value for this Ye22ChenapDTO. + * @return semokCd + */ + public String getSemokCd() { + return semokCd; + } + + /**Sets the semokCd value for this Ye22ChenapDTO. + * @param semokCd + */ + public void setSemokCd(String semokCd) { + this.semokCd = semokCd; + } + + /**Gets the sidoCd value for this Ye22ChenapDTO. + * @return sidoCd + */ + public String getSidoCd() { + return sidoCd; + } + + /**Sets the sidoCd value for this Ye22ChenapDTO. + * @param sidoCd + */ + public void setSidoCd(String sidoCd) { + this.sidoCd = sidoCd; + } + + /**Gets the siguCd value for this Ye22ChenapDTO. + * @return siguCd + */ + public String getSiguCd() { + return siguCd; + } + + /**Sets the siguCd value for this Ye22ChenapDTO. + * @param siguCd + */ + public void setSiguCd(String siguCd) { + this.siguCd = siguCd; + } + + /**Gets the sise value for this Ye22ChenapDTO. + * @return sise + */ + public long getSise() { + return sise; + } + + /**Sets the sise value for this Ye22ChenapDTO. + * @param sise + */ + public void setSise(long sise) { + this.sise = sise; + } + + /**Gets the siseGasanSum value for this Ye22ChenapDTO. + * @return siseGasanSum + */ + public long getSiseGasanSum() { + return siseGasanSum; + } + + /**Sets the siseGasanSum value for this Ye22ChenapDTO. + * @param siseGasanSum + */ + public void setSiseGasanSum(long siseGasanSum) { + this.siseGasanSum = siseGasanSum; + } + + /**Gets the siseIja value for this Ye22ChenapDTO. + * @return siseIja + */ + public long getSiseIja() { + return siseIja; + } + + /**Sets the siseIja value for this Ye22ChenapDTO. + * @param siseIja + */ + public void setSiseIja(long siseIja) { + this.siseIja = siseIja; + } + + /**Gets the sysGubun value for this Ye22ChenapDTO. + * @return sysGubun + */ + public String getSysGubun() { + return sysGubun; + } + + /**Sets the sysGubun value for this Ye22ChenapDTO. + * @param sysGubun + */ + public void setSysGubun(String sysGubun) { + this.sysGubun = sysGubun; + } + + /**Gets the taxGubun value for this Ye22ChenapDTO. + * @return taxGubun + */ + public String getTaxGubun() { + return taxGubun; + } + + /**Sets the taxGubun value for this Ye22ChenapDTO. + * @param taxGubun + */ + public void setTaxGubun(String taxGubun) { + this.taxGubun = taxGubun; + } + + /**Gets the taxNo value for this Ye22ChenapDTO. + * @return taxNo + */ + public String getTaxNo() { + return taxNo; + } + + /**Sets the taxNo value for this Ye22ChenapDTO. + * @param taxNo + */ + public void setTaxNo(String taxNo) { + this.taxNo = taxNo; + } + + /**Gets the taxYm value for this Ye22ChenapDTO. + * @return taxYm + */ + public String getTaxYm() { + return taxYm; + } + + /**Sets the taxYm value for this Ye22ChenapDTO. + * @param taxYm + */ + public void setTaxYm(String taxYm) { + this.taxYm = taxYm; + } + + /**Gets the taxYmd value for this Ye22ChenapDTO. + * @return taxYmd + */ + public String getTaxYmd() { + return taxYmd; + } + + /**Sets the taxYmd value for this Ye22ChenapDTO. + * @param taxYmd + */ + public void setTaxYmd(String taxYmd) { + this.taxYmd = taxYmd; + } + + /**Gets the vatAmt value for this Ye22ChenapDTO. + * @return vatAmt + */ + public long getVatAmt() { + return vatAmt; + } + + /**Sets the vatAmt value for this Ye22ChenapDTO. + * @param vatAmt + */ + public void setVatAmt(long vatAmt) { + this.vatAmt = vatAmt; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Ye22ChenapDTO)) return false; + Ye22ChenapDTO other = (Ye22ChenapDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.CAccountNo, other.getCAccountNo()) && + equals(this.EAccountNo, other.getEAccountNo()) && + equals(this.FAccountNo, other.getFAccountNo()) && + equals(this.HAccountNo, other.getHAccountNo()) && + equals(this.IAccountNo, other.getIAccountNo()) && + equals(this.KAccountNo, other.getKAccountNo()) && + equals(this.NAccountNo, other.getNAccountNo()) && + equals(this.OAccountNo, other.getOAccountNo()) && + equals(this.PAccountNo, other.getPAccountNo()) && + equals(this.QAccountNo, other.getQAccountNo()) && + equals(this.SAccountNo, other.getSAccountNo()) && + equals(this.WAccountNo, other.getWAccountNo()) && + equals(this.bigo, other.getBigo()) && + equals(this.buAfk, other.getBuAfk()) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.curDdtlAddr, other.getCurDdtlAddr()) && + equals(this.curDrefAddr, other.getCurDrefAddr()) && + equals(this.curDtlAddr, other.getCurDtlAddr()) && + equals(this.curDzipAddr, other.getCurDzipAddr()) && + equals(this.curDzipCd, other.getCurDzipCd()) && + equals(this.curTelNo, other.getCurTelNo()) && + equals(this.curZipAddr, other.getCurZipAddr()) && + equals(this.curZipCd, other.getCurZipCd()) && + equals(this.enapbuNo, other.getEnapbuNo()) && + equals(this.etc1, other.getEtc1()) && + equals(this.etc2, other.getEtc2()) && + equals(this.fstNapgiYmd, other.getFstNapgiYmd()) && + this.gigum == other.getGigum() && + this.gigumGasanSum == other.getGigumGasanSum() && + this.gigumIja == other.getGigumIja() && + equals(this.gijunDate, other.getGijunDate()) && + this.gukse == other.getGukse() && + this.gukseGasanSum == other.getGukseGasanSum() && + this.gukseIja == other.getGukseIja() && + this.guse == other.getGuse() && + this.guseGasanSum == other.getGuseGasanSum() && + this.guseIja == other.getGuseIja() && + equals(this.hangmok1, other.getHangmok1()) && + equals(this.hangmok2, other.getHangmok2()) && + equals(this.hangmok3, other.getHangmok3()) && + equals(this.hangmok4, other.getHangmok4()) && + equals(this.hangmok5, other.getHangmok5()) && + equals(this.hangmok6, other.getHangmok6()) && + equals(this.jgasanJojungCnt, other.getJgasanJojungCnt()) && + equals(this.jgasanJojungSymd, other.getJgasanJojungSymd()) && + equals(this.jgasanJojungYmd, other.getJgasanJojungYmd()) && + equals(this.mulGubun, other.getMulGubun()) && + equals(this.mulNm, other.getMulNm()) && + equals(this.napGubun, other.getNapGubun()) && + equals(this.napId, other.getNapId()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.napseNo, other.getNapseNo()) && + equals(this.ocrBuseoCd, other.getOcrBuseoCd()) && + equals(this.ocrSiguCd, other.getOcrSiguCd()) && + equals(this.orgNapId, other.getOrgNapId()) && + equals(this.preNapgiYmd, other.getPreNapgiYmd()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.sidoCd, other.getSidoCd()) && + equals(this.siguCd, other.getSiguCd()) && + this.sise == other.getSise() && + this.siseGasanSum == other.getSiseGasanSum() && + this.siseIja == other.getSiseIja() && + equals(this.sysGubun, other.getSysGubun()) && + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()) && + equals(this.taxYmd, other.getTaxYmd()) && + this.vatAmt == other.getVatAmt(); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getCAccountNo(), + getEAccountNo(), + getFAccountNo(), + getHAccountNo(), + getIAccountNo(), + getKAccountNo(), + getNAccountNo(), + getOAccountNo(), + getPAccountNo(), + getQAccountNo(), + getSAccountNo(), + getWAccountNo(), + getBigo(), + getBuAfk(), + getBuseoCd(), + getCurDdtlAddr(), + getCurDrefAddr(), + getCurDtlAddr(), + getCurDzipAddr(), + getCurDzipCd(), + getCurTelNo(), + getCurZipAddr(), + getCurZipCd(), + getEnapbuNo(), + getEtc1(), + getEtc2(), + getFstNapgiYmd(), + Long.valueOf(getGigum()), + Long.valueOf(getGigumGasanSum()), + Long.valueOf(getGigumIja()), + getGijunDate(), + Long.valueOf(getGukse()), + Long.valueOf(getGukseGasanSum()), + Long.valueOf(getGukseIja()), + Long.valueOf(getGuse()), + Long.valueOf(getGuseGasanSum()), + Long.valueOf(getGuseIja()), + getHangmok1(), + getHangmok2(), + getHangmok3(), + getHangmok4(), + getHangmok5(), + getHangmok6(), + getJgasanJojungCnt(), + getJgasanJojungSymd(), + getJgasanJojungYmd(), + getMulGubun(), + getMulNm(), + getNapGubun(), + getNapId(), + getNapNm(), + getNapgiYmd(), + getNapseNo(), + getOcrBuseoCd(), + getOcrSiguCd(), + getOrgNapId(), + getPreNapgiYmd(), + getSemokCd(), + getSidoCd(), + getSiguCd(), + Long.valueOf(getSise()), + Long.valueOf(getSiseGasanSum()), + Long.valueOf(getSiseIja()), + getSysGubun(), + getTaxGubun(), + getTaxNo(), + getTaxYm(), + getTaxYmd(), + Long.valueOf(getVatAmt()) + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrFileOfferWebService.descriptor().type( + Ye22ChenapDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "CAccountNo", desc.qname("", name), "string", true), + desc.field(name = "EAccountNo", desc.qname("", name), "string", true), + desc.field(name = "FAccountNo", desc.qname("", name), "string", true), + desc.field(name = "HAccountNo", desc.qname("", name), "string", true), + desc.field(name = "IAccountNo", desc.qname("", name), "string", true), + desc.field(name = "KAccountNo", desc.qname("", name), "string", true), + desc.field(name = "NAccountNo", desc.qname("", name), "string", true), + desc.field(name = "OAccountNo", desc.qname("", name), "string", true), + desc.field(name = "PAccountNo", desc.qname("", name), "string", true), + desc.field(name = "QAccountNo", desc.qname("", name), "string", true), + desc.field(name = "SAccountNo", desc.qname("", name), "string", true), + desc.field(name = "WAccountNo", desc.qname("", name), "string", true), + desc.field(name = "bigo", desc.qname("", name), "string", true), + desc.field(name = "buAfk", desc.qname("", name), "string", true), + desc.field(name = "buseoCd", desc.qname("", name), "string", true), + desc.field(name = "curDdtlAddr", desc.qname("", name), "string", true), + desc.field(name = "curDrefAddr", desc.qname("", name), "string", true), + desc.field(name = "curDtlAddr", desc.qname("", name), "string", true), + desc.field(name = "curDzipAddr", desc.qname("", name), "string", true), + desc.field(name = "curDzipCd", desc.qname("", name), "string", true), + desc.field(name = "curTelNo", desc.qname("", name), "string", true), + desc.field(name = "curZipAddr", desc.qname("", name), "string", true), + desc.field(name = "curZipCd", desc.qname("", name), "string", true), + desc.field(name = "enapbuNo", desc.qname("", name), "string", true), + desc.field(name = "etc1", desc.qname("", name), "string", true), + desc.field(name = "etc2", desc.qname("", name), "string", true), + desc.field(name = "fstNapgiYmd", desc.qname("", name), "string", true), + desc.field(name = "gigum", desc.qname("", name), "long", false), + desc.field(name = "gigumGasanSum", desc.qname("", name), "long", false), + desc.field(name = "gigumIja", desc.qname("", name), "long", false), + desc.field(name = "gijunDate", desc.qname("", name), "string", true), + desc.field(name = "gukse", desc.qname("", name), "long", false), + desc.field(name = "gukseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "gukseIja", desc.qname("", name), "long", false), + desc.field(name = "guse", desc.qname("", name), "long", false), + desc.field(name = "guseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "guseIja", desc.qname("", name), "long", false), + desc.field(name = "hangmok1", desc.qname("", name), "string", true), + desc.field(name = "hangmok2", desc.qname("", name), "string", true), + desc.field(name = "hangmok3", desc.qname("", name), "string", true), + desc.field(name = "hangmok4", desc.qname("", name), "string", true), + desc.field(name = "hangmok5", desc.qname("", name), "string", true), + desc.field(name = "hangmok6", desc.qname("", name), "string", true), + desc.field(name = "jgasanJojungCnt", desc.qname("", name), "string", true), + desc.field(name = "jgasanJojungSymd", desc.qname("", name), "string", true), + desc.field(name = "jgasanJojungYmd", desc.qname("", name), "string", true), + desc.field(name = "mulGubun", desc.qname("", name), "string", true), + desc.field(name = "mulNm", desc.qname("", name), "string", true), + desc.field(name = "napGubun", desc.qname("", name), "string", true), + desc.field(name = "napId", desc.qname("", name), "string", true), + desc.field(name = "napNm", desc.qname("", name), "string", true), + desc.field(name = "napgiYmd", desc.qname("", name), "string", true), + desc.field(name = "napseNo", desc.qname("", name), "string", true), + desc.field(name = "ocrBuseoCd", desc.qname("", name), "string", true), + desc.field(name = "ocrSiguCd", desc.qname("", name), "string", true), + desc.field(name = "orgNapId", desc.qname("", name), "string", true), + desc.field(name = "preNapgiYmd", desc.qname("", name), "string", true), + desc.field(name = "semokCd", desc.qname("", name), "string", true), + desc.field(name = "sidoCd", desc.qname("", name), "string", true), + desc.field(name = "siguCd", desc.qname("", name), "string", true), + desc.field(name = "sise", desc.qname("", name), "long", false), + desc.field(name = "siseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "siseIja", desc.qname("", name), "long", false), + desc.field(name = "sysGubun", desc.qname("", name), "string", true), + desc.field(name = "taxGubun", desc.qname("", name), "string", true), + desc.field(name = "taxNo", desc.qname("", name), "string", true), + desc.field(name = "taxYm", desc.qname("", name), "string", true), + desc.field(name = "taxYmd", desc.qname("", name), "string", true), + desc.field(name = "vatAmt", desc.qname("", name), "long", false) + }; + } + ); + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22GwaseInfoDTO.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22GwaseInfoDTO.java new file mode 100644 index 0000000..9ddb3b6 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22GwaseInfoDTO.java @@ -0,0 +1,1239 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Ye22GwaseInfoDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String CAccountNo; + private String FAccountNo; + private String HAccountNo; + private String IAccountNo; + private String KAccountNo; + private String NAccountNo; + private String OAccountNo; + private String PAccountNo; + private String QAccountNo; + private String SAccountNo; + private String WAccountNo; + private long buAk; + private String buStatusCd; + private String buStatusNm; + private String buseoCd; + private String buseoNm; + private long cheAmt; + private long cheGigumGasanSum; + private long cheGukseGasanSum; + private long cheGuseGasanSum; + private String cheJojungCnt; + private String cheNapgiYmd; + private long cheSiseGasanSum; + private long cheVatAmt; + private String enapbuNo; + private long gigum; + private long gigumGasanAmt; + private long gigumIja; + private long gukse; + private long gukseGasanAmt; + private long gukseIja; + private long guse; + private long guseGasanAmt; + private long guseIja; + private String mulNm; + private String napDdtlAddr; + private String napDrefAddr; + private String napDzipAddr; + private String napDzipCd; + private String napId; + private String napNm; + private String napbuYmd; + private String napgiAftYmd; + private String napgiYmd; + private String semokCd; + private String semokNm; + private String siguCd; + private String siguNm; + private long sise; + private long siseGasanAmt; + private long siseIja; + private long taxAmt; + private String taxGubun; + private String taxGubunNm; + private String taxNo; + private String taxYm; + private String taxYmd; + private long vatAmt; + + public Ye22GwaseInfoDTO() {} + + public Ye22GwaseInfoDTO( + String CAccountNo, + String FAccountNo, + String HAccountNo, + String IAccountNo, + String KAccountNo, + String NAccountNo, + String OAccountNo, + String PAccountNo, + String QAccountNo, + String SAccountNo, + String WAccountNo, + long buAk, + String buStatusCd, + String buStatusNm, + String buseoCd, + String buseoNm, + long cheAmt, + long cheGigumGasanSum, + long cheGukseGasanSum, + long cheGuseGasanSum, + String cheJojungCnt, + String cheNapgiYmd, + long cheSiseGasanSum, + long cheVatAmt, + String enapbuNo, + long gigum, + long gigumGasanAmt, + long gigumIja, + long gukse, + long gukseGasanAmt, + long gukseIja, + long guse, + long guseGasanAmt, + long guseIja, + String mulNm, + String napDdtlAddr, + String napDrefAddr, + String napDzipAddr, + String napDzipCd, + String napId, + String napNm, + String napbuYmd, + String napgiAftYmd, + String napgiYmd, + String semokCd, + String semokNm, + String siguCd, + String siguNm, + long sise, + long siseGasanAmt, + long siseIja, + long taxAmt, + String taxGubun, + String taxGubunNm, + String taxNo, + String taxYm, + String taxYmd, + long vatAmt + ) { + this.CAccountNo = CAccountNo; + this.FAccountNo = FAccountNo; + this.HAccountNo = HAccountNo; + this.IAccountNo = IAccountNo; + this.KAccountNo = KAccountNo; + this.NAccountNo = NAccountNo; + this.OAccountNo = OAccountNo; + this.PAccountNo = PAccountNo; + this.QAccountNo = QAccountNo; + this.SAccountNo = SAccountNo; + this.WAccountNo = WAccountNo; + this.buAk = buAk; + this.buStatusCd = buStatusCd; + this.buStatusNm = buStatusNm; + this.buseoCd = buseoCd; + this.buseoNm = buseoNm; + this.cheAmt = cheAmt; + this.cheGigumGasanSum = cheGigumGasanSum; + this.cheGukseGasanSum = cheGukseGasanSum; + this.cheGuseGasanSum = cheGuseGasanSum; + this.cheJojungCnt = cheJojungCnt; + this.cheNapgiYmd = cheNapgiYmd; + this.cheSiseGasanSum = cheSiseGasanSum; + this.cheVatAmt = cheVatAmt; + this.enapbuNo = enapbuNo; + this.gigum = gigum; + this.gigumGasanAmt = gigumGasanAmt; + this.gigumIja = gigumIja; + this.gukse = gukse; + this.gukseGasanAmt = gukseGasanAmt; + this.gukseIja = gukseIja; + this.guse = guse; + this.guseGasanAmt = guseGasanAmt; + this.guseIja = guseIja; + this.mulNm = mulNm; + this.napDdtlAddr = napDdtlAddr; + this.napDrefAddr = napDrefAddr; + this.napDzipAddr = napDzipAddr; + this.napDzipCd = napDzipCd; + this.napId = napId; + this.napNm = napNm; + this.napbuYmd = napbuYmd; + this.napgiAftYmd = napgiAftYmd; + this.napgiYmd = napgiYmd; + this.semokCd = semokCd; + this.semokNm = semokNm; + this.siguCd = siguCd; + this.siguNm = siguNm; + this.sise = sise; + this.siseGasanAmt = siseGasanAmt; + this.siseIja = siseIja; + this.taxAmt = taxAmt; + this.taxGubun = taxGubun; + this.taxGubunNm = taxGubunNm; + this.taxNo = taxNo; + this.taxYm = taxYm; + this.taxYmd = taxYmd; + this.vatAmt = vatAmt; + } + + /**Gets the CAccountNo value for this Ye22GwaseInfoDTO. + * @return CAccountNo + */ + public String getCAccountNo() { + return CAccountNo; + } + + /**Sets the CAccountNo value for this Ye22GwaseInfoDTO. + * @param CAccountNo + */ + public void setCAccountNo(String CAccountNo) { + this.CAccountNo = CAccountNo; + } + + /**Gets the FAccountNo value for this Ye22GwaseInfoDTO. + * @return FAccountNo + */ + public String getFAccountNo() { + return FAccountNo; + } + + /**Sets the FAccountNo value for this Ye22GwaseInfoDTO. + * @param FAccountNo + */ + public void setFAccountNo(String FAccountNo) { + this.FAccountNo = FAccountNo; + } + + /**Gets the HAccountNo value for this Ye22GwaseInfoDTO. + * @return HAccountNo + */ + public String getHAccountNo() { + return HAccountNo; + } + + /**Sets the HAccountNo value for this Ye22GwaseInfoDTO. + * @param HAccountNo + */ + public void setHAccountNo(String HAccountNo) { + this.HAccountNo = HAccountNo; + } + + /**Gets the IAccountNo value for this Ye22GwaseInfoDTO. + * @return IAccountNo + */ + public String getIAccountNo() { + return IAccountNo; + } + + /**Sets the IAccountNo value for this Ye22GwaseInfoDTO. + * @param IAccountNo + */ + public void setIAccountNo(String IAccountNo) { + this.IAccountNo = IAccountNo; + } + + /**Gets the KAccountNo value for this Ye22GwaseInfoDTO. + * @return KAccountNo + */ + public String getKAccountNo() { + return KAccountNo; + } + + /**Sets the KAccountNo value for this Ye22GwaseInfoDTO. + * @param KAccountNo + */ + public void setKAccountNo(String KAccountNo) { + this.KAccountNo = KAccountNo; + } + + /**Gets the NAccountNo value for this Ye22GwaseInfoDTO. + * @return NAccountNo + */ + public String getNAccountNo() { + return NAccountNo; + } + + /**Sets the NAccountNo value for this Ye22GwaseInfoDTO. + * @param NAccountNo + */ + public void setNAccountNo(String NAccountNo) { + this.NAccountNo = NAccountNo; + } + + /**Gets the OAccountNo value for this Ye22GwaseInfoDTO. + * @return OAccountNo + */ + public String getOAccountNo() { + return OAccountNo; + } + + /**Sets the OAccountNo value for this Ye22GwaseInfoDTO. + * @param OAccountNo + */ + public void setOAccountNo(String OAccountNo) { + this.OAccountNo = OAccountNo; + } + + /**Gets the PAccountNo value for this Ye22GwaseInfoDTO. + * @return PAccountNo + */ + public String getPAccountNo() { + return PAccountNo; + } + + /**Sets the PAccountNo value for this Ye22GwaseInfoDTO. + * @param PAccountNo + */ + public void setPAccountNo(String PAccountNo) { + this.PAccountNo = PAccountNo; + } + + /**Gets the QAccountNo value for this Ye22GwaseInfoDTO. + * @return QAccountNo + */ + public String getQAccountNo() { + return QAccountNo; + } + + /**Sets the QAccountNo value for this Ye22GwaseInfoDTO. + * @param QAccountNo + */ + public void setQAccountNo(String QAccountNo) { + this.QAccountNo = QAccountNo; + } + + /**Gets the SAccountNo value for this Ye22GwaseInfoDTO. + * @return SAccountNo + */ + public String getSAccountNo() { + return SAccountNo; + } + + /**Sets the SAccountNo value for this Ye22GwaseInfoDTO. + * @param SAccountNo + */ + public void setSAccountNo(String SAccountNo) { + this.SAccountNo = SAccountNo; + } + + /**Gets the WAccountNo value for this Ye22GwaseInfoDTO. + * @return WAccountNo + */ + public String getWAccountNo() { + return WAccountNo; + } + + /**Sets the WAccountNo value for this Ye22GwaseInfoDTO. + * @param WAccountNo + */ + public void setWAccountNo(String WAccountNo) { + this.WAccountNo = WAccountNo; + } + + /**Gets the buAk value for this Ye22GwaseInfoDTO. + * @return buAk + */ + public long getBuAk() { + return buAk; + } + + /**Sets the buAk value for this Ye22GwaseInfoDTO. + * @param buAk + */ + public void setBuAk(long buAk) { + this.buAk = buAk; + } + + /**Gets the buStatusCd value for this Ye22GwaseInfoDTO. + * @return buStatusCd + */ + public String getBuStatusCd() { + return buStatusCd; + } + + /**Sets the buStatusCd value for this Ye22GwaseInfoDTO. + * @param buStatusCd + */ + public void setBuStatusCd(String buStatusCd) { + this.buStatusCd = buStatusCd; + } + + /**Gets the buStatusNm value for this Ye22GwaseInfoDTO. + * @return buStatusNm + */ + public String getBuStatusNm() { + return buStatusNm; + } + + /**Sets the buStatusNm value for this Ye22GwaseInfoDTO. + * @param buStatusNm + */ + public void setBuStatusNm(String buStatusNm) { + this.buStatusNm = buStatusNm; + } + + /**Gets the buseoCd value for this Ye22GwaseInfoDTO. + * @return buseoCd + */ + public String getBuseoCd() { + return buseoCd; + } + + /**Sets the buseoCd value for this Ye22GwaseInfoDTO. + * @param buseoCd + */ + public void setBuseoCd(String buseoCd) { + this.buseoCd = buseoCd; + } + + /**Gets the buseoNm value for this Ye22GwaseInfoDTO. + * @return buseoNm + */ + public String getBuseoNm() { + return buseoNm; + } + + /**Sets the buseoNm value for this Ye22GwaseInfoDTO. + * @param buseoNm + */ + public void setBuseoNm(String buseoNm) { + this.buseoNm = buseoNm; + } + + /**Gets the cheAmt value for this Ye22GwaseInfoDTO. + * @return cheAmt + */ + public long getCheAmt() { + return cheAmt; + } + + /**Sets the cheAmt value for this Ye22GwaseInfoDTO. + * @param cheAmt + */ + public void setCheAmt(long cheAmt) { + this.cheAmt = cheAmt; + } + + /**Gets the cheGigumGasanSum value for this Ye22GwaseInfoDTO. + * @return cheGigumGasanSum + */ + public long getCheGigumGasanSum() { + return cheGigumGasanSum; + } + + /**Sets the cheGigumGasanSum value for this Ye22GwaseInfoDTO. + * @param cheGigumGasanSum + */ + public void setCheGigumGasanSum(long cheGigumGasanSum) { + this.cheGigumGasanSum = cheGigumGasanSum; + } + + /**Gets the cheGukseGasanSum value for this Ye22GwaseInfoDTO. + * @return cheGukseGasanSum + */ + public long getCheGukseGasanSum() { + return cheGukseGasanSum; + } + + /**Sets the cheGukseGasanSum value for this Ye22GwaseInfoDTO. + * @param cheGukseGasanSum + */ + public void setCheGukseGasanSum(long cheGukseGasanSum) { + this.cheGukseGasanSum = cheGukseGasanSum; + } + + /**Gets the cheGuseGasanSum value for this Ye22GwaseInfoDTO. + * @return cheGuseGasanSum + */ + public long getCheGuseGasanSum() { + return cheGuseGasanSum; + } + + /**Sets the cheGuseGasanSum value for this Ye22GwaseInfoDTO. + * @param cheGuseGasanSum + */ + public void setCheGuseGasanSum(long cheGuseGasanSum) { + this.cheGuseGasanSum = cheGuseGasanSum; + } + + /**Gets the cheJojungCnt value for this Ye22GwaseInfoDTO. + * @return cheJojungCnt + */ + public String getCheJojungCnt() { + return cheJojungCnt; + } + + /**Sets the cheJojungCnt value for this Ye22GwaseInfoDTO. + * @param cheJojungCnt + */ + public void setCheJojungCnt(String cheJojungCnt) { + this.cheJojungCnt = cheJojungCnt; + } + + /**Gets the cheNapgiYmd value for this Ye22GwaseInfoDTO. + * @return cheNapgiYmd + */ + public String getCheNapgiYmd() { + return cheNapgiYmd; + } + + /**Sets the cheNapgiYmd value for this Ye22GwaseInfoDTO. + * @param cheNapgiYmd + */ + public void setCheNapgiYmd(String cheNapgiYmd) { + this.cheNapgiYmd = cheNapgiYmd; + } + + /**Gets the cheSiseGasanSum value for this Ye22GwaseInfoDTO. + * @return cheSiseGasanSum + */ + public long getCheSiseGasanSum() { + return cheSiseGasanSum; + } + + /**Sets the cheSiseGasanSum value for this Ye22GwaseInfoDTO. + * @param cheSiseGasanSum + */ + public void setCheSiseGasanSum(long cheSiseGasanSum) { + this.cheSiseGasanSum = cheSiseGasanSum; + } + + /**Gets the cheVatAmt value for this Ye22GwaseInfoDTO. + * @return cheVatAmt + */ + public long getCheVatAmt() { + return cheVatAmt; + } + + /**Sets the cheVatAmt value for this Ye22GwaseInfoDTO. + * @param cheVatAmt + */ + public void setCheVatAmt(long cheVatAmt) { + this.cheVatAmt = cheVatAmt; + } + + /**Gets the enapbuNo value for this Ye22GwaseInfoDTO. + * @return enapbuNo + */ + public String getEnapbuNo() { + return enapbuNo; + } + + /**Sets the enapbuNo value for this Ye22GwaseInfoDTO. + * @param enapbuNo + */ + public void setEnapbuNo(String enapbuNo) { + this.enapbuNo = enapbuNo; + } + + /**Gets the gigum value for this Ye22GwaseInfoDTO. + * @return gigum + */ + public long getGigum() { + return gigum; + } + + /**Sets the gigum value for this Ye22GwaseInfoDTO. + * @param gigum + */ + public void setGigum(long gigum) { + this.gigum = gigum; + } + + /**Gets the gigumGasanAmt value for this Ye22GwaseInfoDTO. + * @return gigumGasanAmt + */ + public long getGigumGasanAmt() { + return gigumGasanAmt; + } + + /**Sets the gigumGasanAmt value for this Ye22GwaseInfoDTO. + * @param gigumGasanAmt + */ + public void setGigumGasanAmt(long gigumGasanAmt) { + this.gigumGasanAmt = gigumGasanAmt; + } + + /**Gets the gigumIja value for this Ye22GwaseInfoDTO. + * @return gigumIja + */ + public long getGigumIja() { + return gigumIja; + } + + /**Sets the gigumIja value for this Ye22GwaseInfoDTO. + * @param gigumIja + */ + public void setGigumIja(long gigumIja) { + this.gigumIja = gigumIja; + } + + /**Gets the gukse value for this Ye22GwaseInfoDTO. + * @return gukse + */ + public long getGukse() { + return gukse; + } + + /**Sets the gukse value for this Ye22GwaseInfoDTO. + * @param gukse + */ + public void setGukse(long gukse) { + this.gukse = gukse; + } + + /**Gets the gukseGasanAmt value for this Ye22GwaseInfoDTO. + * @return gukseGasanAmt + */ + public long getGukseGasanAmt() { + return gukseGasanAmt; + } + + /**Sets the gukseGasanAmt value for this Ye22GwaseInfoDTO. + * @param gukseGasanAmt + */ + public void setGukseGasanAmt(long gukseGasanAmt) { + this.gukseGasanAmt = gukseGasanAmt; + } + + /**Gets the gukseIja value for this Ye22GwaseInfoDTO. + * @return gukseIja + */ + public long getGukseIja() { + return gukseIja; + } + + /**Sets the gukseIja value for this Ye22GwaseInfoDTO. + * @param gukseIja + */ + public void setGukseIja(long gukseIja) { + this.gukseIja = gukseIja; + } + + /**Gets the guse value for this Ye22GwaseInfoDTO. + * @return guse + */ + public long getGuse() { + return guse; + } + + /**Sets the guse value for this Ye22GwaseInfoDTO. + * @param guse + */ + public void setGuse(long guse) { + this.guse = guse; + } + + /**Gets the guseGasanAmt value for this Ye22GwaseInfoDTO. + * @return guseGasanAmt + */ + public long getGuseGasanAmt() { + return guseGasanAmt; + } + + /**Sets the guseGasanAmt value for this Ye22GwaseInfoDTO. + * @param guseGasanAmt + */ + public void setGuseGasanAmt(long guseGasanAmt) { + this.guseGasanAmt = guseGasanAmt; + } + + /**Gets the guseIja value for this Ye22GwaseInfoDTO. + * @return guseIja + */ + public long getGuseIja() { + return guseIja; + } + + /**Sets the guseIja value for this Ye22GwaseInfoDTO. + * @param guseIja + */ + public void setGuseIja(long guseIja) { + this.guseIja = guseIja; + } + + /**Gets the mulNm value for this Ye22GwaseInfoDTO. + * @return mulNm + */ + public String getMulNm() { + return mulNm; + } + + /**Sets the mulNm value for this Ye22GwaseInfoDTO. + * @param mulNm + */ + public void setMulNm(String mulNm) { + this.mulNm = mulNm; + } + + /**Gets the napDdtlAddr value for this Ye22GwaseInfoDTO. + * @return napDdtlAddr + */ + public String getNapDdtlAddr() { + return napDdtlAddr; + } + + /**Sets the napDdtlAddr value for this Ye22GwaseInfoDTO. + * @param napDdtlAddr + */ + public void setNapDdtlAddr(String napDdtlAddr) { + this.napDdtlAddr = napDdtlAddr; + } + + /**Gets the napDrefAddr value for this Ye22GwaseInfoDTO. + * @return napDrefAddr + */ + public String getNapDrefAddr() { + return napDrefAddr; + } + + /**Sets the napDrefAddr value for this Ye22GwaseInfoDTO. + * @param napDrefAddr + */ + public void setNapDrefAddr(String napDrefAddr) { + this.napDrefAddr = napDrefAddr; + } + + /**Gets the napDzipAddr value for this Ye22GwaseInfoDTO. + * @return napDzipAddr + */ + public String getNapDzipAddr() { + return napDzipAddr; + } + + /**Sets the napDzipAddr value for this Ye22GwaseInfoDTO. + * @param napDzipAddr + */ + public void setNapDzipAddr(String napDzipAddr) { + this.napDzipAddr = napDzipAddr; + } + + /**Gets the napDzipCd value for this Ye22GwaseInfoDTO. + * @return napDzipCd + */ + public String getNapDzipCd() { + return napDzipCd; + } + + /**Sets the napDzipCd value for this Ye22GwaseInfoDTO. + * @param napDzipCd + */ + public void setNapDzipCd(String napDzipCd) { + this.napDzipCd = napDzipCd; + } + + /**Gets the napId value for this Ye22GwaseInfoDTO. + * @return napId + */ + public String getNapId() { + return napId; + } + + /**Sets the napId value for this Ye22GwaseInfoDTO. + * @param napId + */ + public void setNapId(String napId) { + this.napId = napId; + } + + /**Gets the napNm value for this Ye22GwaseInfoDTO. + * @return napNm + */ + public String getNapNm() { + return napNm; + } + + /**Sets the napNm value for this Ye22GwaseInfoDTO. + * @param napNm + */ + public void setNapNm(String napNm) { + this.napNm = napNm; + } + + /**Gets the napbuYmd value for this Ye22GwaseInfoDTO. + * @return napbuYmd + */ + public String getNapbuYmd() { + return napbuYmd; + } + + /**Sets the napbuYmd value for this Ye22GwaseInfoDTO. + * @param napbuYmd + */ + public void setNapbuYmd(String napbuYmd) { + this.napbuYmd = napbuYmd; + } + + /**Gets the napgiAftYmd value for this Ye22GwaseInfoDTO. + * @return napgiAftYmd + */ + public String getNapgiAftYmd() { + return napgiAftYmd; + } + + /**Sets the napgiAftYmd value for this Ye22GwaseInfoDTO. + * @param napgiAftYmd + */ + public void setNapgiAftYmd(String napgiAftYmd) { + this.napgiAftYmd = napgiAftYmd; + } + + /**Gets the napgiYmd value for this Ye22GwaseInfoDTO. + * @return napgiYmd + */ + public String getNapgiYmd() { + return napgiYmd; + } + + /**Sets the napgiYmd value for this Ye22GwaseInfoDTO. + * @param napgiYmd + */ + public void setNapgiYmd(String napgiYmd) { + this.napgiYmd = napgiYmd; + } + + /**Gets the semokCd value for this Ye22GwaseInfoDTO. + * @return semokCd + */ + public String getSemokCd() { + return semokCd; + } + + /**Sets the semokCd value for this Ye22GwaseInfoDTO. + * @param semokCd + */ + public void setSemokCd(String semokCd) { + this.semokCd = semokCd; + } + + /**Gets the semokNm value for this Ye22GwaseInfoDTO. + * @return semokNm + */ + public String getSemokNm() { + return semokNm; + } + + /**Sets the semokNm value for this Ye22GwaseInfoDTO. + * @param semokNm + */ + public void setSemokNm(String semokNm) { + this.semokNm = semokNm; + } + + /**Gets the siguCd value for this Ye22GwaseInfoDTO. + * @return siguCd + */ + public String getSiguCd() { + return siguCd; + } + + /**Sets the siguCd value for this Ye22GwaseInfoDTO. + * @param siguCd + */ + public void setSiguCd(String siguCd) { + this.siguCd = siguCd; + } + + /**Gets the siguNm value for this Ye22GwaseInfoDTO. + * @return siguNm + */ + public String getSiguNm() { + return siguNm; + } + + /**Sets the siguNm value for this Ye22GwaseInfoDTO. + * @param siguNm + */ + public void setSiguNm(String siguNm) { + this.siguNm = siguNm; + } + + /**Gets the sise value for this Ye22GwaseInfoDTO. + * @return sise + */ + public long getSise() { + return sise; + } + + /**Sets the sise value for this Ye22GwaseInfoDTO. + * @param sise + */ + public void setSise(long sise) { + this.sise = sise; + } + + /**Gets the siseGasanAmt value for this Ye22GwaseInfoDTO. + * @return siseGasanAmt + */ + public long getSiseGasanAmt() { + return siseGasanAmt; + } + + /**Sets the siseGasanAmt value for this Ye22GwaseInfoDTO. + * @param siseGasanAmt + */ + public void setSiseGasanAmt(long siseGasanAmt) { + this.siseGasanAmt = siseGasanAmt; + } + + /**Gets the siseIja value for this Ye22GwaseInfoDTO. + * @return siseIja + */ + public long getSiseIja() { + return siseIja; + } + + /**Sets the siseIja value for this Ye22GwaseInfoDTO. + * @param siseIja + */ + public void setSiseIja(long siseIja) { + this.siseIja = siseIja; + } + + /**Gets the taxAmt value for this Ye22GwaseInfoDTO. + * @return taxAmt + */ + public long getTaxAmt() { + return taxAmt; + } + + /**Sets the taxAmt value for this Ye22GwaseInfoDTO. + * @param taxAmt + */ + public void setTaxAmt(long taxAmt) { + this.taxAmt = taxAmt; + } + + /**Gets the taxGubun value for this Ye22GwaseInfoDTO. + * @return taxGubun + */ + public String getTaxGubun() { + return taxGubun; + } + + /**Sets the taxGubun value for this Ye22GwaseInfoDTO. + * @param taxGubun + */ + public void setTaxGubun(String taxGubun) { + this.taxGubun = taxGubun; + } + + /**Gets the taxGubunNm value for this Ye22GwaseInfoDTO. + * @return taxGubunNm + */ + public String getTaxGubunNm() { + return taxGubunNm; + } + + /**Sets the taxGubunNm value for this Ye22GwaseInfoDTO. + * @param taxGubunNm + */ + public void setTaxGubunNm(String taxGubunNm) { + this.taxGubunNm = taxGubunNm; + } + + /**Gets the taxNo value for this Ye22GwaseInfoDTO. + * @return taxNo + */ + public String getTaxNo() { + return taxNo; + } + + /**Sets the taxNo value for this Ye22GwaseInfoDTO. + * @param taxNo + */ + public void setTaxNo(String taxNo) { + this.taxNo = taxNo; + } + + /**Gets the taxYm value for this Ye22GwaseInfoDTO. + * @return taxYm + */ + public String getTaxYm() { + return taxYm; + } + + /**Sets the taxYm value for this Ye22GwaseInfoDTO. + * @param taxYm + */ + public void setTaxYm(String taxYm) { + this.taxYm = taxYm; + } + + /**Gets the taxYmd value for this Ye22GwaseInfoDTO. + * @return taxYmd + */ + public String getTaxYmd() { + return taxYmd; + } + + /**Sets the taxYmd value for this Ye22GwaseInfoDTO. + * @param taxYmd + */ + public void setTaxYmd(String taxYmd) { + this.taxYmd = taxYmd; + } + + /**Gets the vatAmt value for this Ye22GwaseInfoDTO. + * @return vatAmt + */ + public long getVatAmt() { + return vatAmt; + } + + /**Sets the vatAmt value for this Ye22GwaseInfoDTO. + * @param vatAmt + */ + public void setVatAmt(long vatAmt) { + this.vatAmt = vatAmt; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Ye22GwaseInfoDTO)) return false; + Ye22GwaseInfoDTO other = (Ye22GwaseInfoDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.CAccountNo, other.getCAccountNo()) && + equals(this.FAccountNo, other.getFAccountNo()) && + equals(this.HAccountNo, other.getHAccountNo()) && + equals(this.IAccountNo, other.getIAccountNo()) && + equals(this.KAccountNo, other.getKAccountNo()) && + equals(this.NAccountNo, other.getNAccountNo()) && + equals(this.OAccountNo, other.getOAccountNo()) && + equals(this.PAccountNo, other.getPAccountNo()) && + equals(this.QAccountNo, other.getQAccountNo()) && + equals(this.SAccountNo, other.getSAccountNo()) && + equals(this.WAccountNo, other.getWAccountNo()) && + this.buAk == other.getBuAk() && + equals(this.buStatusCd, other.getBuStatusCd()) && + equals(this.buStatusNm, other.getBuStatusNm()) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.buseoNm, other.getBuseoNm()) && + this.cheAmt == other.getCheAmt() && + this.cheGigumGasanSum == other.getCheGigumGasanSum() && + this.cheGukseGasanSum == other.getCheGukseGasanSum() && + this.cheGuseGasanSum == other.getCheGuseGasanSum() && + equals(this.cheJojungCnt, other.getCheJojungCnt()) && + equals(this.cheNapgiYmd, other.getCheNapgiYmd()) && + this.cheSiseGasanSum == other.getCheSiseGasanSum() && + this.cheVatAmt == other.getCheVatAmt() && + equals(this.enapbuNo, other.getEnapbuNo()) && + this.gigum == other.getGigum() && + this.gigumGasanAmt == other.getGigumGasanAmt() && + this.gigumIja == other.getGigumIja() && + this.gukse == other.getGukse() && + this.gukseGasanAmt == other.getGukseGasanAmt() && + this.gukseIja == other.getGukseIja() && + this.guse == other.getGuse() && + this.guseGasanAmt == other.getGuseGasanAmt() && + this.guseIja == other.getGuseIja() && + equals(this.mulNm, other.getMulNm()) && + equals(this.napDdtlAddr, other.getNapDdtlAddr()) && + equals(this.napDrefAddr, other.getNapDrefAddr()) && + equals(this.napDzipAddr, other.getNapDzipAddr()) && + equals(this.napDzipCd, other.getNapDzipCd()) && + equals(this.napId, other.getNapId()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napbuYmd, other.getNapbuYmd()) && + equals(this.napgiAftYmd, other.getNapgiAftYmd()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.semokNm, other.getSemokNm()) && + equals(this.siguCd, other.getSiguCd()) && + equals(this.siguNm, other.getSiguNm()) && + this.sise == other.getSise() && + this.siseGasanAmt == other.getSiseGasanAmt() && + this.siseIja == other.getSiseIja() && + this.taxAmt == other.getTaxAmt() && + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxGubunNm, other.getTaxGubunNm()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()) && + equals(this.taxYmd, other.getTaxYmd()) && + this.vatAmt == other.getVatAmt(); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getCAccountNo(), + getFAccountNo(), + getHAccountNo(), + getIAccountNo(), + getKAccountNo(), + getNAccountNo(), + getOAccountNo(), + getPAccountNo(), + getQAccountNo(), + getSAccountNo(), + getWAccountNo(), + Long.valueOf(getBuAk()), + getBuStatusCd(), + getBuStatusNm(), + getBuseoCd(), + getBuseoNm(), + Long.valueOf(getCheAmt()), + Long.valueOf(getCheGigumGasanSum()), + Long.valueOf(getCheGukseGasanSum()), + Long.valueOf(getCheGuseGasanSum()), + getCheJojungCnt(), + getCheNapgiYmd(), + Long.valueOf(getCheSiseGasanSum()), + Long.valueOf(getCheVatAmt()), + getEnapbuNo(), + Long.valueOf(getGigum()), + Long.valueOf(getGigumGasanAmt()), + Long.valueOf(getGigumIja()), + Long.valueOf(getGukse()), + Long.valueOf(getGukseGasanAmt()), + Long.valueOf(getGukseIja()), + Long.valueOf(getGuse()), + Long.valueOf(getGuseGasanAmt()), + Long.valueOf(getGuseIja()), + getMulNm(), + getNapDdtlAddr(), + getNapDrefAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapId(), + getNapNm(), + getNapbuYmd(), + getNapgiAftYmd(), + getNapgiYmd(), + getSemokCd(), + getSemokNm(), + getSiguCd(), + getSiguNm(), + Long.valueOf(getSise()), + Long.valueOf(getSiseGasanAmt()), + Long.valueOf(getSiseIja()), + Long.valueOf(getTaxAmt()), + getTaxGubun(), + getTaxGubunNm(), + getTaxNo(), + getTaxYm(), + getTaxYmd(), + Long.valueOf(getVatAmt()) + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrFileOfferWebService.descriptor().type( + Ye22GwaseInfoDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "CAccountNo", desc.qname("", name), "string", true), + desc.field(name = "FAccountNo", desc.qname("", name), "string", true), + desc.field(name = "HAccountNo", desc.qname("", name), "string", true), + desc.field(name = "IAccountNo", desc.qname("", name), "string", true), + desc.field(name = "KAccountNo", desc.qname("", name), "string", true), + desc.field(name = "NAccountNo", desc.qname("", name), "string", true), + desc.field(name = "OAccountNo", desc.qname("", name), "string", true), + desc.field(name = "PAccountNo", desc.qname("", name), "string", true), + desc.field(name = "QAccountNo", desc.qname("", name), "string", true), + desc.field(name = "SAccountNo", desc.qname("", name), "string", true), + desc.field(name = "WAccountNo", desc.qname("", name), "string", true), + desc.field(name = "buAk", desc.qname("", name), "long", false), + desc.field(name = "buStatusCd", desc.qname("", name), "string", true), + desc.field(name = "buStatusNm", desc.qname("", name), "string", true), + desc.field(name = "buseoCd", desc.qname("", name), "string", true), + desc.field(name = "buseoNm", desc.qname("", name), "string", true), + desc.field(name = "cheAmt", desc.qname("", name), "long", false), + desc.field(name = "cheGigumGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheGukseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheGuseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheJojungCnt", desc.qname("", name), "string", true), + desc.field(name = "cheNapgiYmd", desc.qname("", name), "string", true), + desc.field(name = "cheSiseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheVatAmt", desc.qname("", name), "long", false), + desc.field(name = "enapbuNo", desc.qname("", name), "string", true), + desc.field(name = "gigum", desc.qname("", name), "long", false), + desc.field(name = "gigumGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "gigumIja", desc.qname("", name), "long", false), + desc.field(name = "gukse", desc.qname("", name), "long", false), + desc.field(name = "gukseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "gukseIja", desc.qname("", name), "long", false), + desc.field(name = "guse", desc.qname("", name), "long", false), + desc.field(name = "guseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "guseIja", desc.qname("", name), "long", false), + desc.field(name = "mulNm", desc.qname("", name), "string", true), + desc.field(name = "napDdtlAddr", desc.qname("", name), "string", true), + desc.field(name = "napDrefAddr", desc.qname("", name), "string", true), + desc.field(name = "napDzipAddr", desc.qname("", name), "string", true), + desc.field(name = "napDzipCd", desc.qname("", name), "string", true), + desc.field(name = "napId", desc.qname("", name), "string", true), + desc.field(name = "napNm", desc.qname("", name), "string", true), + desc.field(name = "napbuYmd", desc.qname("", name), "string", true), + desc.field(name = "napgiAftYmd", desc.qname("", name), "string", true), + desc.field(name = "napgiYmd", desc.qname("", name), "string", true), + desc.field(name = "semokCd", desc.qname("", name), "string", true), + desc.field(name = "semokNm", desc.qname("", name), "string", true), + desc.field(name = "siguCd", desc.qname("", name), "string", true), + desc.field(name = "siguNm", desc.qname("", name), "string", true), + desc.field(name = "sise", desc.qname("", name), "long", false), + desc.field(name = "siseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "siseIja", desc.qname("", name), "long", false), + desc.field(name = "taxAmt", desc.qname("", name), "long", false), + desc.field(name = "taxGubun", desc.qname("", name), "string", true), + desc.field(name = "taxGubunNm", desc.qname("", name), "string", true), + desc.field(name = "taxNo", desc.qname("", name), "string", true), + desc.field(name = "taxYm", desc.qname("", name), "string", true), + desc.field(name = "taxYmd", desc.qname("", name), "string", true), + desc.field(name = "vatAmt", desc.qname("", name), "long", false) + }; + } + ); + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22InputDTO.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22InputDTO.java new file mode 100644 index 0000000..378aae9 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22InputDTO.java @@ -0,0 +1,299 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Ye22InputDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String buAk; + private String buseoCd; + private String mulNm; + private String napId; + private String napNm; + private String semokCd; + private String siguCd; + private String systemGubun; + private String taxGubun; + private String taxNo; + private String taxYm; + + public Ye22InputDTO() {} + + public Ye22InputDTO( + String buAk, + String buseoCd, + String mulNm, + String napId, + String napNm, + String semokCd, + String siguCd, + String systemGubun, + String taxGubun, + String taxNo, + String taxYm + ) { + this.buAk = buAk; + this.buseoCd = buseoCd; + this.mulNm = mulNm; + this.napId = napId; + this.napNm = napNm; + this.semokCd = semokCd; + this.siguCd = siguCd; + this.systemGubun = systemGubun; + this.taxGubun = taxGubun; + this.taxNo = taxNo; + this.taxYm = taxYm; + } + + /**Gets the buAk value for this Ye22InputDTO. + * @return buAk + */ + public String getBuAk() { + return buAk; + } + + /**Sets the buAk value for this Ye22InputDTO. + * @param buAk + */ + public void setBuAk(String buAk) { + this.buAk = buAk; + } + + /**Gets the buseoCd value for this Ye22InputDTO. + * @return buseoCd + */ + public String getBuseoCd() { + return buseoCd; + } + + /**Sets the buseoCd value for this Ye22InputDTO. + * @param buseoCd + */ + public void setBuseoCd(String buseoCd) { + this.buseoCd = buseoCd; + } + + /**Gets the mulNm value for this Ye22InputDTO. + * @return mulNm + */ + public String getMulNm() { + return mulNm; + } + + /**Sets the mulNm value for this Ye22InputDTO. + * @param mulNm + */ + public void setMulNm(String mulNm) { + this.mulNm = mulNm; + } + + /**Gets the napId value for this Ye22InputDTO. + * @return napId + */ + public String getNapId() { + return napId; + } + + /**Sets the napId value for this Ye22InputDTO. + * @param napId + */ + public void setNapId(String napId) { + this.napId = napId; + } + + /**Gets the napNm value for this Ye22InputDTO. + * @return napNm + */ + public String getNapNm() { + return napNm; + } + + /**Sets the napNm value for this Ye22InputDTO. + * @param napNm + */ + public void setNapNm(String napNm) { + this.napNm = napNm; + } + + /**Gets the semokCd value for this Ye22InputDTO. + * @return semokCd + */ + public String getSemokCd() { + return semokCd; + } + + /**Sets the semokCd value for this Ye22InputDTO. + * @param semokCd + */ + public void setSemokCd(String semokCd) { + this.semokCd = semokCd; + } + + /**Gets the siguCd value for this Ye22InputDTO. + * @return siguCd + */ + public String getSiguCd() { + return siguCd; + } + + /**Sets the siguCd value for this Ye22InputDTO. + * @param siguCd + */ + public void setSiguCd(String siguCd) { + this.siguCd = siguCd; + } + + /**Gets the systemGubun value for this Ye22InputDTO. + * @return systemGubun + */ + public String getSystemGubun() { + return systemGubun; + } + + /**Sets the systemGubun value for this Ye22InputDTO. + * @param systemGubun + */ + public void setSystemGubun(String systemGubun) { + this.systemGubun = systemGubun; + } + + /**Gets the taxGubun value for this Ye22InputDTO. + * @return taxGubun + */ + public String getTaxGubun() { + return taxGubun; + } + + /**Sets the taxGubun value for this Ye22InputDTO. + * @param taxGubun + */ + public void setTaxGubun(String taxGubun) { + this.taxGubun = taxGubun; + } + + /**Gets the taxNo value for this Ye22InputDTO. + * @return taxNo + */ + public String getTaxNo() { + return taxNo; + } + + /**Sets the taxNo value for this Ye22InputDTO. + * @param taxNo + */ + public void setTaxNo(String taxNo) { + this.taxNo = taxNo; + } + + /**Gets the taxYm value for this Ye22InputDTO. + * @return taxYm + */ + public String getTaxYm() { + return taxYm; + } + + /**Sets the taxYm value for this Ye22InputDTO. + * @param taxYm + */ + public void setTaxYm(String taxYm) { + this.taxYm = taxYm; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Ye22InputDTO)) return false; + Ye22InputDTO other = (Ye22InputDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.buAk, other.getBuAk()) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.mulNm, other.getMulNm()) && + equals(this.napId, other.getNapId()) && + equals(this.napNm, other.getNapNm()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.siguCd, other.getSiguCd()) && + equals(this.systemGubun, other.getSystemGubun()) && + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getBuAk(), + getBuseoCd(), + getMulNm(), + getNapId(), + getNapNm(), + getSemokCd(), + getSiguCd(), + getSystemGubun(), + getTaxGubun(), + getTaxNo(), + getTaxYm() + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrFileOfferWebService.descriptor().type( + Ye22InputDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "buAk", desc.qname("", name), "string", true), + desc.field(name = "buseoCd", desc.qname("", name), "string", true), + desc.field(name = "mulNm", desc.qname("", name), "string", true), + desc.field(name = "napId", desc.qname("", name), "string", true), + desc.field(name = "napNm", desc.qname("", name), "string", true), + desc.field(name = "semokCd", desc.qname("", name), "string", true), + desc.field(name = "siguCd", desc.qname("", name), "string", true), + desc.field(name = "systemGubun", desc.qname("", name), "string", true), + desc.field(name = "taxGubun", desc.qname("", name), "string", true), + desc.field(name = "taxNo", desc.qname("", name), "string", true), + desc.field(name = "taxYm", desc.qname("", name), "string", true) + }; + } + ); + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeInfoDTO.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeInfoDTO.java new file mode 100644 index 0000000..2673446 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22NoticeInfoDTO.java @@ -0,0 +1,1695 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Ye22NoticeInfoDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String CAccountNo; + private String FAccountNo; + private String HAccountNo; + private String IAccountNo; + private String KAccountNo; + private String NAccountNo; + private String OAccountNo; + private String PAccountNo; + private String QAccountNo; + private String SAccountNo; + private String WAccountNo; + private String apYmd; + private long buAk; + private String buStatusCd; + private String buStatusNm; + private String buseoCd; + private String buseoNm; + private long cheAmt; + private long cheGigumGasanSum; + private long cheGukseGasanSum; + private long cheGuseGasanSum; + private String cheJojungCnt; + private String cheNapgiYmd; + private long cheSiseGasanSum; + private long cheVatAmt; + private String dchocSendYmd; + private String enapbuNo; + private long gigum; + private long gigumGasanAmt; + private long gigumIja; + private long gukse; + private long gukseGasanAmt; + private long gukseIja; + private long guse; + private long guseGasanAmt; + private long guseIja; + private String jgasanJojungYmd; + private String mulNm; + private String napDdtlAddr; + private String napDrefAddr; + private String napDzipAddr; + private String napDzipCd; + private String napId; + private String napNm; + private String napbuYmd; + private String napgiAftYmd; + private String napgiYmd; + private String napseNo; + private String semokCd; + private String semokNm; + private String siguCd; + private String siguNm; + private long sise; + private long siseGasanAmt; + private long siseIja; + private long taxAmt; + private String taxGubun; + private String taxGubunNm; + private String taxNo; + private String taxYm; + private String taxYmd; + private long vatAmt; + + public Ye22NoticeInfoDTO() {} + + public Ye22NoticeInfoDTO( + String CAccountNo, + String FAccountNo, + String HAccountNo, + String IAccountNo, + String KAccountNo, + String NAccountNo, + String OAccountNo, + String PAccountNo, + String QAccountNo, + String SAccountNo, + String WAccountNo, + String apYmd, + long buAk, + String buStatusCd, + String buStatusNm, + String buseoCd, + String buseoNm, + long cheAmt, + long cheGigumGasanSum, + long cheGukseGasanSum, + long cheGuseGasanSum, + String cheJojungCnt, + String cheNapgiYmd, + long cheSiseGasanSum, + long cheVatAmt, + String dchocSendYmd, + String enapbuNo, + long gigum, + long gigumGasanAmt, + long gigumIja, + long gukse, + long gukseGasanAmt, + long gukseIja, + long guse, + long guseGasanAmt, + long guseIja, + String jgasanJojungYmd, + String mulNm, + String napDdtlAddr, + String napDrefAddr, + String napDzipAddr, + String napDzipCd, + String napId, + String napNm, + String napbuYmd, + String napgiAftYmd, + String napgiYmd, + String napseNo, + String semokCd, + String semokNm, + String siguCd, + String siguNm, + long sise, + long siseGasanAmt, + long siseIja, + long taxAmt, + String taxGubun, + String taxGubunNm, + String taxNo, + String taxYm, + String taxYmd, + long vatAmt + ) { + this.CAccountNo = CAccountNo; + this.FAccountNo = FAccountNo; + this.HAccountNo = HAccountNo; + this.IAccountNo = IAccountNo; + this.KAccountNo = KAccountNo; + this.NAccountNo = NAccountNo; + this.OAccountNo = OAccountNo; + this.PAccountNo = PAccountNo; + this.QAccountNo = QAccountNo; + this.SAccountNo = SAccountNo; + this.WAccountNo = WAccountNo; + this.apYmd = apYmd; + this.buAk = buAk; + this.buStatusCd = buStatusCd; + this.buStatusNm = buStatusNm; + this.buseoCd = buseoCd; + this.buseoNm = buseoNm; + this.cheAmt = cheAmt; + this.cheGigumGasanSum = cheGigumGasanSum; + this.cheGukseGasanSum = cheGukseGasanSum; + this.cheGuseGasanSum = cheGuseGasanSum; + this.cheJojungCnt = cheJojungCnt; + this.cheNapgiYmd = cheNapgiYmd; + this.cheSiseGasanSum = cheSiseGasanSum; + this.cheVatAmt = cheVatAmt; + this.dchocSendYmd = dchocSendYmd; + this.enapbuNo = enapbuNo; + this.gigum = gigum; + this.gigumGasanAmt = gigumGasanAmt; + this.gigumIja = gigumIja; + this.gukse = gukse; + this.gukseGasanAmt = gukseGasanAmt; + this.gukseIja = gukseIja; + this.guse = guse; + this.guseGasanAmt = guseGasanAmt; + this.guseIja = guseIja; + this.jgasanJojungYmd = jgasanJojungYmd; + this.mulNm = mulNm; + this.napDdtlAddr = napDdtlAddr; + this.napDrefAddr = napDrefAddr; + this.napDzipAddr = napDzipAddr; + this.napDzipCd = napDzipCd; + this.napId = napId; + this.napNm = napNm; + this.napbuYmd = napbuYmd; + this.napgiAftYmd = napgiAftYmd; + this.napgiYmd = napgiYmd; + this.napseNo = napseNo; + this.semokCd = semokCd; + this.semokNm = semokNm; + this.siguCd = siguCd; + this.siguNm = siguNm; + this.sise = sise; + this.siseGasanAmt = siseGasanAmt; + this.siseIja = siseIja; + this.taxAmt = taxAmt; + this.taxGubun = taxGubun; + this.taxGubunNm = taxGubunNm; + this.taxNo = taxNo; + this.taxYm = taxYm; + this.taxYmd = taxYmd; + this.vatAmt = vatAmt; + } + + /**Gets the CAccountNo value for this Ye22NoticeInfoDTO. + * @return CAccountNo + */ + public String getCAccountNo() { + return CAccountNo; + } + + /**Sets the CAccountNo value for this Ye22NoticeInfoDTO. + * @param CAccountNo + */ + public void setCAccountNo(String CAccountNo) { + this.CAccountNo = CAccountNo; + } + + /**Gets the FAccountNo value for this Ye22NoticeInfoDTO. + * @return FAccountNo + */ + public String getFAccountNo() { + return FAccountNo; + } + + /**Sets the FAccountNo value for this Ye22NoticeInfoDTO. + * @param FAccountNo + */ + public void setFAccountNo(String FAccountNo) { + this.FAccountNo = FAccountNo; + } + + /**Gets the HAccountNo value for this Ye22NoticeInfoDTO. + * @return HAccountNo + */ + public String getHAccountNo() { + return HAccountNo; + } + + /**Sets the HAccountNo value for this Ye22NoticeInfoDTO. + * @param HAccountNo + */ + public void setHAccountNo(String HAccountNo) { + this.HAccountNo = HAccountNo; + } + + /**Gets the IAccountNo value for this Ye22NoticeInfoDTO. + * @return IAccountNo + */ + public String getIAccountNo() { + return IAccountNo; + } + + /**Sets the IAccountNo value for this Ye22NoticeInfoDTO. + * @param IAccountNo + */ + public void setIAccountNo(String IAccountNo) { + this.IAccountNo = IAccountNo; + } + + /**Gets the KAccountNo value for this Ye22NoticeInfoDTO. + * @return KAccountNo + */ + public String getKAccountNo() { + return KAccountNo; + } + + /**Sets the KAccountNo value for this Ye22NoticeInfoDTO. + * @param KAccountNo + */ + public void setKAccountNo(String KAccountNo) { + this.KAccountNo = KAccountNo; + } + + /**Gets the NAccountNo value for this Ye22NoticeInfoDTO. + * @return NAccountNo + */ + public String getNAccountNo() { + return NAccountNo; + } + + /**Sets the NAccountNo value for this Ye22NoticeInfoDTO. + * @param NAccountNo + */ + public void setNAccountNo(String NAccountNo) { + this.NAccountNo = NAccountNo; + } + + /**Gets the OAccountNo value for this Ye22NoticeInfoDTO. + * @return OAccountNo + */ + public String getOAccountNo() { + return OAccountNo; + } + + /**Sets the OAccountNo value for this Ye22NoticeInfoDTO. + * @param OAccountNo + */ + public void setOAccountNo(String OAccountNo) { + this.OAccountNo = OAccountNo; + } + + /**Gets the PAccountNo value for this Ye22NoticeInfoDTO. + * @return PAccountNo + */ + public String getPAccountNo() { + return PAccountNo; + } + + /**Sets the PAccountNo value for this Ye22NoticeInfoDTO. + * @param PAccountNo + */ + public void setPAccountNo(String PAccountNo) { + this.PAccountNo = PAccountNo; + } + + /**Gets the QAccountNo value for this Ye22NoticeInfoDTO. + * @return QAccountNo + */ + public String getQAccountNo() { + return QAccountNo; + } + + /**Sets the QAccountNo value for this Ye22NoticeInfoDTO. + * @param QAccountNo + */ + public void setQAccountNo(String QAccountNo) { + this.QAccountNo = QAccountNo; + } + + /**Gets the SAccountNo value for this Ye22NoticeInfoDTO. + * @return SAccountNo + */ + public String getSAccountNo() { + return SAccountNo; + } + + /**Sets the SAccountNo value for this Ye22NoticeInfoDTO. + * @param SAccountNo + */ + public void setSAccountNo(String SAccountNo) { + this.SAccountNo = SAccountNo; + } + + /**Gets the WAccountNo value for this Ye22NoticeInfoDTO. + * @return WAccountNo + */ + public String getWAccountNo() { + return WAccountNo; + } + + /**Sets the WAccountNo value for this Ye22NoticeInfoDTO. + * @param WAccountNo + */ + public void setWAccountNo(String WAccountNo) { + this.WAccountNo = WAccountNo; + } + + /**Gets the apYmd value for this Ye22NoticeInfoDTO. + * @return apYmd + */ + public String getApYmd() { + return apYmd; + } + + /**Sets the apYmd value for this Ye22NoticeInfoDTO. + * @param apYmd + */ + public void setApYmd(String apYmd) { + this.apYmd = apYmd; + } + + /**Gets the buAk value for this Ye22NoticeInfoDTO. + * @return buAk + */ + public long getBuAk() { + return buAk; + } + + /**Sets the buAk value for this Ye22NoticeInfoDTO. + * @param buAk + */ + public void setBuAk(long buAk) { + this.buAk = buAk; + } + + /**Gets the buStatusCd value for this Ye22NoticeInfoDTO. + * @return buStatusCd + */ + public String getBuStatusCd() { + return buStatusCd; + } + + /**Sets the buStatusCd value for this Ye22NoticeInfoDTO. + * @param buStatusCd + */ + public void setBuStatusCd(String buStatusCd) { + this.buStatusCd = buStatusCd; + } + + /**Gets the buStatusNm value for this Ye22NoticeInfoDTO. + * @return buStatusNm + */ + public String getBuStatusNm() { + return buStatusNm; + } + + /**Sets the buStatusNm value for this Ye22NoticeInfoDTO. + * @param buStatusNm + */ + public void setBuStatusNm(String buStatusNm) { + this.buStatusNm = buStatusNm; + } + + /**Gets the buseoCd value for this Ye22NoticeInfoDTO. + * @return buseoCd + */ + public String getBuseoCd() { + return buseoCd; + } + + /**Sets the buseoCd value for this Ye22NoticeInfoDTO. + * @param buseoCd + */ + public void setBuseoCd(String buseoCd) { + this.buseoCd = buseoCd; + } + + /**Gets the buseoNm value for this Ye22NoticeInfoDTO. + * @return buseoNm + */ + public String getBuseoNm() { + return buseoNm; + } + + /**Sets the buseoNm value for this Ye22NoticeInfoDTO. + * @param buseoNm + */ + public void setBuseoNm(String buseoNm) { + this.buseoNm = buseoNm; + } + + /**Gets the cheAmt value for this Ye22NoticeInfoDTO. + * @return cheAmt + */ + public long getCheAmt() { + return cheAmt; + } + + /**Sets the cheAmt value for this Ye22NoticeInfoDTO. + * @param cheAmt + */ + public void setCheAmt(long cheAmt) { + this.cheAmt = cheAmt; + } + + /**Gets the cheGigumGasanSum value for this Ye22NoticeInfoDTO. + * @return cheGigumGasanSum + */ + public long getCheGigumGasanSum() { + return cheGigumGasanSum; + } + + /**Sets the cheGigumGasanSum value for this Ye22NoticeInfoDTO. + * @param cheGigumGasanSum + */ + public void setCheGigumGasanSum(long cheGigumGasanSum) { + this.cheGigumGasanSum = cheGigumGasanSum; + } + + /**Gets the cheGukseGasanSum value for this Ye22NoticeInfoDTO. + * @return cheGukseGasanSum + */ + public long getCheGukseGasanSum() { + return cheGukseGasanSum; + } + + /**Sets the cheGukseGasanSum value for this Ye22NoticeInfoDTO. + * @param cheGukseGasanSum + */ + public void setCheGukseGasanSum(long cheGukseGasanSum) { + this.cheGukseGasanSum = cheGukseGasanSum; + } + + /**Gets the cheGuseGasanSum value for this Ye22NoticeInfoDTO. + * @return cheGuseGasanSum + */ + public long getCheGuseGasanSum() { + return cheGuseGasanSum; + } + + /**Sets the cheGuseGasanSum value for this Ye22NoticeInfoDTO. + * @param cheGuseGasanSum + */ + public void setCheGuseGasanSum(long cheGuseGasanSum) { + this.cheGuseGasanSum = cheGuseGasanSum; + } + + /**Gets the cheJojungCnt value for this Ye22NoticeInfoDTO. + * @return cheJojungCnt + */ + public String getCheJojungCnt() { + return cheJojungCnt; + } + + /**Sets the cheJojungCnt value for this Ye22NoticeInfoDTO. + * @param cheJojungCnt + */ + public void setCheJojungCnt(String cheJojungCnt) { + this.cheJojungCnt = cheJojungCnt; + } + + /**Gets the cheNapgiYmd value for this Ye22NoticeInfoDTO. + * @return cheNapgiYmd + */ + public String getCheNapgiYmd() { + return cheNapgiYmd; + } + + /**Sets the cheNapgiYmd value for this Ye22NoticeInfoDTO. + * @param cheNapgiYmd + */ + public void setCheNapgiYmd(String cheNapgiYmd) { + this.cheNapgiYmd = cheNapgiYmd; + } + + /**Gets the cheSiseGasanSum value for this Ye22NoticeInfoDTO. + * @return cheSiseGasanSum + */ + public long getCheSiseGasanSum() { + return cheSiseGasanSum; + } + + /**Sets the cheSiseGasanSum value for this Ye22NoticeInfoDTO. + * @param cheSiseGasanSum + */ + public void setCheSiseGasanSum(long cheSiseGasanSum) { + this.cheSiseGasanSum = cheSiseGasanSum; + } + + /**Gets the cheVatAmt value for this Ye22NoticeInfoDTO. + * @return cheVatAmt + */ + public long getCheVatAmt() { + return cheVatAmt; + } + + /**Sets the cheVatAmt value for this Ye22NoticeInfoDTO. + * @param cheVatAmt + */ + public void setCheVatAmt(long cheVatAmt) { + this.cheVatAmt = cheVatAmt; + } + + /**Gets the dchocSendYmd value for this Ye22NoticeInfoDTO. + * @return dchocSendYmd + */ + public String getDchocSendYmd() { + return dchocSendYmd; + } + + /**Sets the dchocSendYmd value for this Ye22NoticeInfoDTO. + * @param dchocSendYmd + */ + public void setDchocSendYmd(String dchocSendYmd) { + this.dchocSendYmd = dchocSendYmd; + } + + /**Gets the enapbuNo value for this Ye22NoticeInfoDTO. + * @return enapbuNo + */ + public String getEnapbuNo() { + return enapbuNo; + } + + /**Sets the enapbuNo value for this Ye22NoticeInfoDTO. + * @param enapbuNo + */ + public void setEnapbuNo(String enapbuNo) { + this.enapbuNo = enapbuNo; + } + + /**Gets the gigum value for this Ye22NoticeInfoDTO. + * @return gigum + */ + public long getGigum() { + return gigum; + } + + /**Sets the gigum value for this Ye22NoticeInfoDTO. + * @param gigum + */ + public void setGigum(long gigum) { + this.gigum = gigum; + } + + /**Gets the gigumGasanAmt value for this Ye22NoticeInfoDTO. + * @return gigumGasanAmt + */ + public long getGigumGasanAmt() { + return gigumGasanAmt; + } + + /**Sets the gigumGasanAmt value for this Ye22NoticeInfoDTO. + * @param gigumGasanAmt + */ + public void setGigumGasanAmt(long gigumGasanAmt) { + this.gigumGasanAmt = gigumGasanAmt; + } + + /**Gets the gigumIja value for this Ye22NoticeInfoDTO. + * @return gigumIja + */ + public long getGigumIja() { + return gigumIja; + } + + /**Sets the gigumIja value for this Ye22NoticeInfoDTO. + * @param gigumIja + */ + public void setGigumIja(long gigumIja) { + this.gigumIja = gigumIja; + } + + /**Gets the gukse value for this Ye22NoticeInfoDTO. + * @return gukse + */ + public long getGukse() { + return gukse; + } + + /**Sets the gukse value for this Ye22NoticeInfoDTO. + * @param gukse + */ + public void setGukse(long gukse) { + this.gukse = gukse; + } + + /**Gets the gukseGasanAmt value for this Ye22NoticeInfoDTO. + * @return gukseGasanAmt + */ + public long getGukseGasanAmt() { + return gukseGasanAmt; + } + + /**Sets the gukseGasanAmt value for this Ye22NoticeInfoDTO. + * @param gukseGasanAmt + */ + public void setGukseGasanAmt(long gukseGasanAmt) { + this.gukseGasanAmt = gukseGasanAmt; + } + + /**Gets the gukseIja value for this Ye22NoticeInfoDTO. + * @return gukseIja + */ + public long getGukseIja() { + return gukseIja; + } + + /**Sets the gukseIja value for this Ye22NoticeInfoDTO. + * @param gukseIja + */ + public void setGukseIja(long gukseIja) { + this.gukseIja = gukseIja; + } + + /**Gets the guse value for this Ye22NoticeInfoDTO. + * @return guse + */ + public long getGuse() { + return guse; + } + + /**Sets the guse value for this Ye22NoticeInfoDTO. + * @param guse + */ + public void setGuse(long guse) { + this.guse = guse; + } + + /**Gets the guseGasanAmt value for this Ye22NoticeInfoDTO. + * @return guseGasanAmt + */ + public long getGuseGasanAmt() { + return guseGasanAmt; + } + + /**Sets the guseGasanAmt value for this Ye22NoticeInfoDTO. + * @param guseGasanAmt + */ + public void setGuseGasanAmt(long guseGasanAmt) { + this.guseGasanAmt = guseGasanAmt; + } + + /**Gets the guseIja value for this Ye22NoticeInfoDTO. + * @return guseIja + */ + public long getGuseIja() { + return guseIja; + } + + /**Sets the guseIja value for this Ye22NoticeInfoDTO. + * @param guseIja + */ + public void setGuseIja(long guseIja) { + this.guseIja = guseIja; + } + + /**Gets the jgasanJojungYmd value for this Ye22NoticeInfoDTO. + * @return jgasanJojungYmd + */ + public String getJgasanJojungYmd() { + return jgasanJojungYmd; + } + + /**Sets the jgasanJojungYmd value for this Ye22NoticeInfoDTO. + * @param jgasanJojungYmd + */ + public void setJgasanJojungYmd(String jgasanJojungYmd) { + this.jgasanJojungYmd = jgasanJojungYmd; + } + + /**Gets the mulNm value for this Ye22NoticeInfoDTO. + * @return mulNm + */ + public String getMulNm() { + return mulNm; + } + + /**Sets the mulNm value for this Ye22NoticeInfoDTO. + * @param mulNm + */ + public void setMulNm(String mulNm) { + this.mulNm = mulNm; + } + + /**Gets the napDdtlAddr value for this Ye22NoticeInfoDTO. + * @return napDdtlAddr + */ + public String getNapDdtlAddr() { + return napDdtlAddr; + } + + /**Sets the napDdtlAddr value for this Ye22NoticeInfoDTO. + * @param napDdtlAddr + */ + public void setNapDdtlAddr(String napDdtlAddr) { + this.napDdtlAddr = napDdtlAddr; + } + + /**Gets the napDrefAddr value for this Ye22NoticeInfoDTO. + * @return napDrefAddr + */ + public String getNapDrefAddr() { + return napDrefAddr; + } + + /**Sets the napDrefAddr value for this Ye22NoticeInfoDTO. + * @param napDrefAddr + */ + public void setNapDrefAddr(String napDrefAddr) { + this.napDrefAddr = napDrefAddr; + } + + /**Gets the napDzipAddr value for this Ye22NoticeInfoDTO. + * @return napDzipAddr + */ + public String getNapDzipAddr() { + return napDzipAddr; + } + + /**Sets the napDzipAddr value for this Ye22NoticeInfoDTO. + * @param napDzipAddr + */ + public void setNapDzipAddr(String napDzipAddr) { + this.napDzipAddr = napDzipAddr; + } + + /**Gets the napDzipCd value for this Ye22NoticeInfoDTO. + * @return napDzipCd + */ + public String getNapDzipCd() { + return napDzipCd; + } + + /**Sets the napDzipCd value for this Ye22NoticeInfoDTO. + * @param napDzipCd + */ + public void setNapDzipCd(String napDzipCd) { + this.napDzipCd = napDzipCd; + } + + /**Gets the napId value for this Ye22NoticeInfoDTO. + * @return napId + */ + public String getNapId() { + return napId; + } + + /**Sets the napId value for this Ye22NoticeInfoDTO. + * @param napId + */ + public void setNapId(String napId) { + this.napId = napId; + } + + /**Gets the napNm value for this Ye22NoticeInfoDTO. + * @return napNm + */ + public String getNapNm() { + return napNm; + } + + /**Sets the napNm value for this Ye22NoticeInfoDTO. + * @param napNm + */ + public void setNapNm(String napNm) { + this.napNm = napNm; + } + + /**Gets the napbuYmd value for this Ye22NoticeInfoDTO. + * @return napbuYmd + */ + public String getNapbuYmd() { + return napbuYmd; + } + + /**Sets the napbuYmd value for this Ye22NoticeInfoDTO. + * @param napbuYmd + */ + public void setNapbuYmd(String napbuYmd) { + this.napbuYmd = napbuYmd; + } + + /**Gets the napgiAftYmd value for this Ye22NoticeInfoDTO. + * @return napgiAftYmd + */ + public String getNapgiAftYmd() { + return napgiAftYmd; + } + + /**Sets the napgiAftYmd value for this Ye22NoticeInfoDTO. + * @param napgiAftYmd + */ + public void setNapgiAftYmd(String napgiAftYmd) { + this.napgiAftYmd = napgiAftYmd; + } + + /**Gets the napgiYmd value for this Ye22NoticeInfoDTO. + * @return napgiYmd + */ + public String getNapgiYmd() { + return napgiYmd; + } + + /**Sets the napgiYmd value for this Ye22NoticeInfoDTO. + * @param napgiYmd + */ + public void setNapgiYmd(String napgiYmd) { + this.napgiYmd = napgiYmd; + } + + /**Gets the napseNo value for this Ye22NoticeInfoDTO. + * @return napseNo + */ + public String getNapseNo() { + return napseNo; + } + + /**Sets the napseNo value for this Ye22NoticeInfoDTO. + * @param napseNo + */ + public void setNapseNo(String napseNo) { + this.napseNo = napseNo; + } + + /**Gets the semokCd value for this Ye22NoticeInfoDTO. + * @return semokCd + */ + public String getSemokCd() { + return semokCd; + } + + /**Sets the semokCd value for this Ye22NoticeInfoDTO. + * @param semokCd + */ + public void setSemokCd(String semokCd) { + this.semokCd = semokCd; + } + + /**Gets the semokNm value for this Ye22NoticeInfoDTO. + * @return semokNm + */ + public String getSemokNm() { + return semokNm; + } + + /**Sets the semokNm value for this Ye22NoticeInfoDTO. + * @param semokNm + */ + public void setSemokNm(String semokNm) { + this.semokNm = semokNm; + } + + /**Gets the siguCd value for this Ye22NoticeInfoDTO. + * @return siguCd + */ + public String getSiguCd() { + return siguCd; + } + + /**Sets the siguCd value for this Ye22NoticeInfoDTO. + * @param siguCd + */ + public void setSiguCd(String siguCd) { + this.siguCd = siguCd; + } + + /**Gets the siguNm value for this Ye22NoticeInfoDTO. + * @return siguNm + */ + public String getSiguNm() { + return siguNm; + } + + /**Sets the siguNm value for this Ye22NoticeInfoDTO. + * @param siguNm + */ + public void setSiguNm(String siguNm) { + this.siguNm = siguNm; + } + + /**Gets the sise value for this Ye22NoticeInfoDTO. + * @return sise + */ + public long getSise() { + return sise; + } + + /**Sets the sise value for this Ye22NoticeInfoDTO. + * @param sise + */ + public void setSise(long sise) { + this.sise = sise; + } + + /**Gets the siseGasanAmt value for this Ye22NoticeInfoDTO. + * @return siseGasanAmt + */ + public long getSiseGasanAmt() { + return siseGasanAmt; + } + + /**Sets the siseGasanAmt value for this Ye22NoticeInfoDTO. + * @param siseGasanAmt + */ + public void setSiseGasanAmt(long siseGasanAmt) { + this.siseGasanAmt = siseGasanAmt; + } + + /**Gets the siseIja value for this Ye22NoticeInfoDTO. + * @return siseIja + */ + public long getSiseIja() { + return siseIja; + } + + /**Sets the siseIja value for this Ye22NoticeInfoDTO. + * @param siseIja + */ + public void setSiseIja(long siseIja) { + this.siseIja = siseIja; + } + + /**Gets the taxAmt value for this Ye22NoticeInfoDTO. + * @return taxAmt + */ + public long getTaxAmt() { + return taxAmt; + } + + /**Sets the taxAmt value for this Ye22NoticeInfoDTO. + * @param taxAmt + */ + public void setTaxAmt(long taxAmt) { + this.taxAmt = taxAmt; + } + + /**Gets the taxGubun value for this Ye22NoticeInfoDTO. + * @return taxGubun + */ + public String getTaxGubun() { + return taxGubun; + } + + /**Sets the taxGubun value for this Ye22NoticeInfoDTO. + * @param taxGubun + */ + public void setTaxGubun(String taxGubun) { + this.taxGubun = taxGubun; + } + + /**Gets the taxGubunNm value for this Ye22NoticeInfoDTO. + * @return taxGubunNm + */ + public String getTaxGubunNm() { + return taxGubunNm; + } + + /**Sets the taxGubunNm value for this Ye22NoticeInfoDTO. + * @param taxGubunNm + */ + public void setTaxGubunNm(String taxGubunNm) { + this.taxGubunNm = taxGubunNm; + } + + /**Gets the taxNo value for this Ye22NoticeInfoDTO. + * @return taxNo + */ + public String getTaxNo() { + return taxNo; + } + + /**Sets the taxNo value for this Ye22NoticeInfoDTO. + * @param taxNo + */ + public void setTaxNo(String taxNo) { + this.taxNo = taxNo; + } + + /**Gets the taxYm value for this Ye22NoticeInfoDTO. + * @return taxYm + */ + public String getTaxYm() { + return taxYm; + } + + /**Sets the taxYm value for this Ye22NoticeInfoDTO. + * @param taxYm + */ + public void setTaxYm(String taxYm) { + this.taxYm = taxYm; + } + + /**Gets the taxYmd value for this Ye22NoticeInfoDTO. + * @return taxYmd + */ + public String getTaxYmd() { + return taxYmd; + } + + /**Sets the taxYmd value for this Ye22NoticeInfoDTO. + * @param taxYmd + */ + public void setTaxYmd(String taxYmd) { + this.taxYmd = taxYmd; + } + + /**Gets the vatAmt value for this Ye22NoticeInfoDTO. + * @return vatAmt + */ + public long getVatAmt() { + return vatAmt; + } + + /**Sets the vatAmt value for this Ye22NoticeInfoDTO. + * @param vatAmt + */ + public void setVatAmt(long vatAmt) { + this.vatAmt = vatAmt; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Ye22NoticeInfoDTO)) return false; + Ye22NoticeInfoDTO other = (Ye22NoticeInfoDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.CAccountNo, other.getCAccountNo()) && + equals(this.FAccountNo, other.getFAccountNo()) && + equals(this.HAccountNo, other.getHAccountNo()) && + equals(this.IAccountNo, other.getIAccountNo()) && + equals(this.KAccountNo, other.getKAccountNo()) && + equals(this.NAccountNo, other.getNAccountNo()) && + equals(this.OAccountNo, other.getOAccountNo()) && + equals(this.PAccountNo, other.getPAccountNo()) && + equals(this.QAccountNo, other.getQAccountNo()) && + equals(this.SAccountNo, other.getSAccountNo()) && + equals(this.WAccountNo, other.getWAccountNo()) && + equals(this.apYmd, other.getApYmd()) && + this.buAk == other.getBuAk() && + equals(this.buStatusCd, other.getBuStatusCd()) && + equals(this.buStatusNm, other.getBuStatusNm()) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.buseoNm, other.getBuseoNm()) && + this.cheAmt == other.getCheAmt() && + this.cheGigumGasanSum == other.getCheGigumGasanSum() && + this.cheGukseGasanSum == other.getCheGukseGasanSum() && + this.cheGuseGasanSum == other.getCheGuseGasanSum() && + equals(this.cheJojungCnt, other.getCheJojungCnt()) && + equals(this.cheNapgiYmd, other.getCheNapgiYmd()) && + this.cheSiseGasanSum == other.getCheSiseGasanSum() && + this.cheVatAmt == other.getCheVatAmt() && + equals(this.dchocSendYmd, other.getDchocSendYmd()) && + equals(this.enapbuNo, other.getEnapbuNo()) && + this.gigum == other.getGigum() && + this.gigumGasanAmt == other.getGigumGasanAmt() && + this.gigumIja == other.getGigumIja() && + this.gukse == other.getGukse() && + this.gukseGasanAmt == other.getGukseGasanAmt() && + this.gukseIja == other.getGukseIja() && + this.guse == other.getGuse() && + this.guseGasanAmt == other.getGuseGasanAmt() && + this.guseIja == other.getGuseIja() && + equals(this.jgasanJojungYmd, other.getJgasanJojungYmd()) && + equals(this.mulNm, other.getMulNm()) && + equals(this.napDdtlAddr, other.getNapDdtlAddr()) && + equals(this.napDrefAddr, other.getNapDrefAddr()) && + equals(this.napDzipAddr, other.getNapDzipAddr()) && + equals(this.napDzipCd, other.getNapDzipCd()) && + equals(this.napId, other.getNapId()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napbuYmd, other.getNapbuYmd()) && + equals(this.napgiAftYmd, other.getNapgiAftYmd()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.napseNo, other.getNapseNo()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.semokNm, other.getSemokNm()) && + equals(this.siguCd, other.getSiguCd()) && + equals(this.siguNm, other.getSiguNm()) && + this.sise == other.getSise() && + this.siseGasanAmt == other.getSiseGasanAmt() && + this.siseIja == other.getSiseIja() && + this.taxAmt == other.getTaxAmt() && + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxGubunNm, other.getTaxGubunNm()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()) && + equals(this.taxYmd, other.getTaxYmd()) && + this.vatAmt == other.getVatAmt(); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getCAccountNo(), + getFAccountNo(), + getHAccountNo(), + getIAccountNo(), + getKAccountNo(), + getNAccountNo(), + getOAccountNo(), + getPAccountNo(), + getQAccountNo(), + getSAccountNo(), + getWAccountNo(), + getApYmd(), + Long.valueOf(getBuAk()), + getBuStatusCd(), + getBuStatusNm(), + getBuseoCd(), + getBuseoNm(), + Long.valueOf(getCheAmt()), + Long.valueOf(getCheGigumGasanSum()), + Long.valueOf(getCheGukseGasanSum()), + Long.valueOf(getCheGuseGasanSum()), + getCheJojungCnt(), + getCheNapgiYmd(), + Long.valueOf(getCheSiseGasanSum()), + Long.valueOf(getCheVatAmt()), + getDchocSendYmd(), + getEnapbuNo(), + Long.valueOf(getGigum()), + Long.valueOf(getGigumGasanAmt()), + Long.valueOf(getGigumIja()), + Long.valueOf(getGukse()), + Long.valueOf(getGukseGasanAmt()), + Long.valueOf(getGukseIja()), + Long.valueOf(getGuse()), + Long.valueOf(getGuseGasanAmt()), + Long.valueOf(getGuseIja()), + getJgasanJojungYmd(), + getMulNm(), + getNapDdtlAddr(), + getNapDrefAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapId(), + getNapNm(), + getNapbuYmd(), + getNapgiAftYmd(), + getNapgiYmd(), + getNapseNo(), + getSemokCd(), + getSemokNm(), + getSiguCd(), + getSiguNm(), + Long.valueOf(getSise()), + Long.valueOf(getSiseGasanAmt()), + Long.valueOf(getSiseIja()), + Long.valueOf(getTaxAmt()), + getTaxGubun(), + getTaxGubunNm(), + getTaxNo(), + getTaxYm(), + getTaxYmd(), + Long.valueOf(getVatAmt()) + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrFileOfferWebService.descriptor().type( + Ye22NoticeInfoDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "CAccountNo", desc.qname("", name), "string", true), + desc.field(name = "FAccountNo", desc.qname("", name), "string", true), + desc.field(name = "HAccountNo", desc.qname("", name), "string", true), + desc.field(name = "IAccountNo", desc.qname("", name), "string", true), + desc.field(name = "KAccountNo", desc.qname("", name), "string", true), + desc.field(name = "NAccountNo", desc.qname("", name), "string", true), + desc.field(name = "OAccountNo", desc.qname("", name), "string", true), + desc.field(name = "PAccountNo", desc.qname("", name), "string", true), + desc.field(name = "QAccountNo", desc.qname("", name), "string", true), + desc.field(name = "SAccountNo", desc.qname("", name), "string", true), + desc.field(name = "WAccountNo", desc.qname("", name), "string", true), + desc.field(name = "apYmd", desc.qname("", name), "string", true), + desc.field(name = "buAk", desc.qname("", name), "long", false), + desc.field(name = "buStatusCd", desc.qname("", name), "string", true), + desc.field(name = "buStatusNm", desc.qname("", name), "string", true), + desc.field(name = "buseoCd", desc.qname("", name), "string", true), + desc.field(name = "buseoNm", desc.qname("", name), "string", true), + desc.field(name = "cheAmt", desc.qname("", name), "long", false), + desc.field(name = "cheGigumGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheGukseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheGuseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheJojungCnt", desc.qname("", name), "string", true), + desc.field(name = "cheNapgiYmd", desc.qname("", name), "string", true), + desc.field(name = "cheSiseGasanSum", desc.qname("", name), "long", false), + desc.field(name = "cheVatAmt", desc.qname("", name), "long", false), + desc.field(name = "dchocSendYmd", desc.qname("", name), "string", true), + desc.field(name = "enapbuNo", desc.qname("", name), "string", true), + desc.field(name = "gigum", desc.qname("", name), "long", false), + desc.field(name = "gigumGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "gigumIja", desc.qname("", name), "long", false), + desc.field(name = "gukse", desc.qname("", name), "long", false), + desc.field(name = "gukseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "gukseIja", desc.qname("", name), "long", false), + desc.field(name = "guse", desc.qname("", name), "long", false), + desc.field(name = "guseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "guseIja", desc.qname("", name), "long", false), + desc.field(name = "jgasanJojungYmd", desc.qname("", name), "string", true), + desc.field(name = "mulNm", desc.qname("", name), "string", true), + desc.field(name = "napDdtlAddr", desc.qname("", name), "string", true), + desc.field(name = "napDrefAddr", desc.qname("", name), "string", true), + desc.field(name = "napDzipAddr", desc.qname("", name), "string", true), + desc.field(name = "napDzipCd", desc.qname("", name), "string", true), + desc.field(name = "napId", desc.qname("", name), "string", true), + desc.field(name = "napNm", desc.qname("", name), "string", true), + desc.field(name = "napbuYmd", desc.qname("", name), "string", true), + desc.field(name = "napgiAftYmd", desc.qname("", name), "string", true), + desc.field(name = "napgiYmd", desc.qname("", name), "string", true), + desc.field(name = "napseNo", desc.qname("", name), "string", true), + desc.field(name = "semokCd", desc.qname("", name), "string", true), + desc.field(name = "semokNm", desc.qname("", name), "string", true), + desc.field(name = "siguCd", desc.qname("", name), "string", true), + desc.field(name = "siguNm", desc.qname("", name), "string", true), + desc.field(name = "sise", desc.qname("", name), "long", false), + desc.field(name = "siseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "siseIja", desc.qname("", name), "long", false), + desc.field(name = "taxAmt", desc.qname("", name), "long", false), + desc.field(name = "taxGubun", desc.qname("", name), "string", true), + desc.field(name = "taxGubunNm", desc.qname("", name), "string", true), + desc.field(name = "taxNo", desc.qname("", name), "string", true), + desc.field(name = "taxYm", desc.qname("", name), "string", true), + desc.field(name = "taxYmd", desc.qname("", name), "string", true), + desc.field(name = "vatAmt", desc.qname("", name), "long", false) + }; + } + ); + + static { + typeDesc.setXmlType(new javax.xml.namespace.QName("urn:SntrFileOfferWebService", "Ye22NoticeInfoDTO")); + ElementDesc elemField = new ElementDesc(); + elemField.setFieldName("CAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "CAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("FAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "FAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("HAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "HAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("IAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "IAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("KAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "KAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("NAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "NAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("OAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "OAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("PAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "PAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("QAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "QAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("SAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "SAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("WAccountNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "WAccountNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("apYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "apYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("buAk"); + elemField.setXmlName(new javax.xml.namespace.QName("", "buAk")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("buStatusCd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "buStatusCd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("buStatusNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "buStatusNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("buseoCd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "buseoCd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("buseoNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "buseoNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheGigumGasanSum"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheGigumGasanSum")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheGukseGasanSum"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheGukseGasanSum")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheGuseGasanSum"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheGuseGasanSum")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheJojungCnt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheJojungCnt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheNapgiYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheNapgiYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheSiseGasanSum"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheSiseGasanSum")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("cheVatAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "cheVatAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("dchocSendYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "dchocSendYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("enapbuNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "enapbuNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("gigum"); + elemField.setXmlName(new javax.xml.namespace.QName("", "gigum")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("gigumGasanAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "gigumGasanAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("gigumIja"); + elemField.setXmlName(new javax.xml.namespace.QName("", "gigumIja")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("gukse"); + elemField.setXmlName(new javax.xml.namespace.QName("", "gukse")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("gukseGasanAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "gukseGasanAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("gukseIja"); + elemField.setXmlName(new javax.xml.namespace.QName("", "gukseIja")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("guse"); + elemField.setXmlName(new javax.xml.namespace.QName("", "guse")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("guseGasanAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "guseGasanAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("guseIja"); + elemField.setXmlName(new javax.xml.namespace.QName("", "guseIja")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("jgasanJojungYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "jgasanJojungYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("mulNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "mulNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napDdtlAddr"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napDdtlAddr")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napDrefAddr"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napDrefAddr")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napDzipAddr"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napDzipAddr")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napDzipCd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napDzipCd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napId"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napId")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napbuYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napbuYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napgiAftYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napgiAftYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napgiYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napgiYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("napseNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "napseNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("semokCd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "semokCd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("semokNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "semokNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("siguCd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "siguCd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("siguNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "siguNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("sise"); + elemField.setXmlName(new javax.xml.namespace.QName("", "sise")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("siseGasanAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "siseGasanAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("siseIja"); + elemField.setXmlName(new javax.xml.namespace.QName("", "siseIja")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("taxAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "taxAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("taxGubun"); + elemField.setXmlName(new javax.xml.namespace.QName("", "taxGubun")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("taxGubunNm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "taxGubunNm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("taxNo"); + elemField.setXmlName(new javax.xml.namespace.QName("", "taxNo")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("taxYm"); + elemField.setXmlName(new javax.xml.namespace.QName("", "taxYm")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("taxYmd"); + elemField.setXmlName(new javax.xml.namespace.QName("", "taxYmd")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); + elemField.setNillable(true); + typeDesc.addFieldDesc(elemField); + elemField = new ElementDesc(); + elemField.setFieldName("vatAmt"); + elemField.setXmlName(new javax.xml.namespace.QName("", "vatAmt")); + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); + elemField.setNillable(false); + typeDesc.addFieldDesc(elemField); + } + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22SunapDTO.java b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22SunapDTO.java new file mode 100644 index 0000000..13a9307 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/fileoffer/Ye22SunapDTO.java @@ -0,0 +1,1499 @@ +package cokr.xit.interfaces.sntris.fileoffer; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Ye22SunapDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String bigo; + private String bookNo; + private String buseoCd; + private String dataGubun; + private String gasanAmtSkipGubun; + private String gasanRateGubun; + private long gigum; + private long gigumIja; + private String gijunDate; + private long gukse; + private long gukseIja; + private long guse; + private long guseIja; + private String hangmok1; + private String hangmok2; + private String hangmok3; + private String hangmok4; + private String hangmok5; + private String hangmok6; + private String lastWorkDate; + private String lastWorkId; + private String mulGubun; + private String mulNm; + private String napDtlAddr; + private String napGubun; + private String napId; + private String napName; + private String napNm; + private String napZipAddr; + private String napZipCd; + private String napbuYmd; + private String napgiAftYmd; + private String napgiYmd; + private String ocrBuseoCd; + private String ocrGubun; + private String ocrSiguCd; + private String orgNapId; + private String resideStatus; + private String semokCd; + private String sendYmd; + private String sidoCd; + private String siguCd; + private long sise; + private long siseIja; + private String suBuseoCd; + private String suCnt; + private long suGigum; + private long suGigumGasanAmt; + private long suGigumIja; + private String suGubun; + private long suGukse; + private long suGukseGasanAmt; + private long suGukseIja; + private long suGuse; + private long suGuseGasanAmt; + private long suGuseIja; + private String suNapbuGubun; + private String suNapbuYmd; + private String suPrcGubun; + private long suSise; + private long suSiseGasanAmt; + private long suSiseIja; + private long suVatAmt; + private String sysGubun; + private String systemDate; + private String taxAmt; + private String taxGubun; + private String taxNo; + private String taxYm; + private String taxYmd; + private long vatAmt; + + public Ye22SunapDTO() {} + + public Ye22SunapDTO( + String bigo, + String bookNo, + String buseoCd, + String dataGubun, + String gasanAmtSkipGubun, + String gasanRateGubun, + long gigum, + long gigumIja, + String gijunDate, + long gukse, + long gukseIja, + long guse, + long guseIja, + String hangmok1, + String hangmok2, + String hangmok3, + String hangmok4, + String hangmok5, + String hangmok6, + String lastWorkDate, + String lastWorkId, + String mulGubun, + String mulNm, + String napDtlAddr, + String napGubun, + String napId, + String napName, + String napNm, + String napZipAddr, + String napZipCd, + String napbuYmd, + String napgiAftYmd, + String napgiYmd, + String ocrBuseoCd, + String ocrGubun, + String ocrSiguCd, + String orgNapId, + String resideStatus, + String semokCd, + String sendYmd, + String sidoCd, + String siguCd, + long sise, + long siseIja, + String suBuseoCd, + String suCnt, + long suGigum, + long suGigumGasanAmt, + long suGigumIja, + String suGubun, + long suGukse, + long suGukseGasanAmt, + long suGukseIja, + long suGuse, + long suGuseGasanAmt, + long suGuseIja, + String suNapbuGubun, + String suNapbuYmd, + String suPrcGubun, + long suSise, + long suSiseGasanAmt, + long suSiseIja, + long suVatAmt, + String sysGubun, + String systemDate, + String taxAmt, + String taxGubun, + String taxNo, + String taxYm, + String taxYmd, + long vatAmt + ) { + this.bigo = bigo; + this.bookNo = bookNo; + this.buseoCd = buseoCd; + this.dataGubun = dataGubun; + this.gasanAmtSkipGubun = gasanAmtSkipGubun; + this.gasanRateGubun = gasanRateGubun; + this.gigum = gigum; + this.gigumIja = gigumIja; + this.gijunDate = gijunDate; + this.gukse = gukse; + this.gukseIja = gukseIja; + this.guse = guse; + this.guseIja = guseIja; + this.hangmok1 = hangmok1; + this.hangmok2 = hangmok2; + this.hangmok3 = hangmok3; + this.hangmok4 = hangmok4; + this.hangmok5 = hangmok5; + this.hangmok6 = hangmok6; + this.lastWorkDate = lastWorkDate; + this.lastWorkId = lastWorkId; + this.mulGubun = mulGubun; + this.mulNm = mulNm; + this.napDtlAddr = napDtlAddr; + this.napGubun = napGubun; + this.napId = napId; + this.napName = napName; + this.napNm = napNm; + this.napZipAddr = napZipAddr; + this.napZipCd = napZipCd; + this.napbuYmd = napbuYmd; + this.napgiAftYmd = napgiAftYmd; + this.napgiYmd = napgiYmd; + this.ocrBuseoCd = ocrBuseoCd; + this.ocrGubun = ocrGubun; + this.ocrSiguCd = ocrSiguCd; + this.orgNapId = orgNapId; + this.resideStatus = resideStatus; + this.semokCd = semokCd; + this.sendYmd = sendYmd; + this.sidoCd = sidoCd; + this.siguCd = siguCd; + this.sise = sise; + this.siseIja = siseIja; + this.suBuseoCd = suBuseoCd; + this.suCnt = suCnt; + this.suGigum = suGigum; + this.suGigumGasanAmt = suGigumGasanAmt; + this.suGigumIja = suGigumIja; + this.suGubun = suGubun; + this.suGukse = suGukse; + this.suGukseGasanAmt = suGukseGasanAmt; + this.suGukseIja = suGukseIja; + this.suGuse = suGuse; + this.suGuseGasanAmt = suGuseGasanAmt; + this.suGuseIja = suGuseIja; + this.suNapbuGubun = suNapbuGubun; + this.suNapbuYmd = suNapbuYmd; + this.suPrcGubun = suPrcGubun; + this.suSise = suSise; + this.suSiseGasanAmt = suSiseGasanAmt; + this.suSiseIja = suSiseIja; + this.suVatAmt = suVatAmt; + this.sysGubun = sysGubun; + this.systemDate = systemDate; + this.taxAmt = taxAmt; + this.taxGubun = taxGubun; + this.taxNo = taxNo; + this.taxYm = taxYm; + this.taxYmd = taxYmd; + this.vatAmt = vatAmt; + } + + /** Gets the bigo value for this Ye22SunapDTO. + * @return bigo + */ + public String getBigo() { + return bigo; + } + + /** Sets the bigo value for this Ye22SunapDTO. + * @param bigo + */ + public void setBigo(String bigo) { + this.bigo = bigo; + } + + /** Gets the bookNo value for this Ye22SunapDTO. + * @return bookNo + */ + public String getBookNo() { + return bookNo; + } + + /** Sets the bookNo value for this Ye22SunapDTO. + * @param bookNo + */ + public void setBookNo(String bookNo) { + this.bookNo = bookNo; + } + + /** Gets the buseoCd value for this Ye22SunapDTO. + * @return buseoCd + */ + public String getBuseoCd() { + return buseoCd; + } + + /** Sets the buseoCd value for this Ye22SunapDTO. + * @param buseoCd + */ + public void setBuseoCd(String buseoCd) { + this.buseoCd = buseoCd; + } + + /** Gets the dataGubun value for this Ye22SunapDTO. + * @return dataGubun + */ + public String getDataGubun() { + return dataGubun; + } + + /** Sets the dataGubun value for this Ye22SunapDTO. + * @param dataGubun + */ + public void setDataGubun(String dataGubun) { + this.dataGubun = dataGubun; + } + + /** Gets the gasanAmtSkipGubun value for this Ye22SunapDTO. + * @return gasanAmtSkipGubun + */ + public String getGasanAmtSkipGubun() { + return gasanAmtSkipGubun; + } + + /** Sets the gasanAmtSkipGubun value for this Ye22SunapDTO. + * @param gasanAmtSkipGubun + */ + public void setGasanAmtSkipGubun(String gasanAmtSkipGubun) { + this.gasanAmtSkipGubun = gasanAmtSkipGubun; + } + + /** Gets the gasanRateGubun value for this Ye22SunapDTO. + * @return gasanRateGubun + */ + public String getGasanRateGubun() { + return gasanRateGubun; + } + + /** Sets the gasanRateGubun value for this Ye22SunapDTO. + * @param gasanRateGubun + */ + public void setGasanRateGubun(String gasanRateGubun) { + this.gasanRateGubun = gasanRateGubun; + } + + /** Gets the gigum value for this Ye22SunapDTO. + * @return gigum + */ + public long getGigum() { + return gigum; + } + + /** Sets the gigum value for this Ye22SunapDTO. + * @param gigum + */ + public void setGigum(long gigum) { + this.gigum = gigum; + } + + /** Gets the gigumIja value for this Ye22SunapDTO. + * @return gigumIja + */ + public long getGigumIja() { + return gigumIja; + } + + /** Sets the gigumIja value for this Ye22SunapDTO. + * @param gigumIja + */ + public void setGigumIja(long gigumIja) { + this.gigumIja = gigumIja; + } + + /** Gets the gijunDate value for this Ye22SunapDTO. + * @return gijunDate + */ + public String getGijunDate() { + return gijunDate; + } + + /** Sets the gijunDate value for this Ye22SunapDTO. + * @param gijunDate + */ + public void setGijunDate(String gijunDate) { + this.gijunDate = gijunDate; + } + + /** Gets the gukse value for this Ye22SunapDTO. + * @return gukse + */ + public long getGukse() { + return gukse; + } + + /** Sets the gukse value for this Ye22SunapDTO. + * @param gukse + */ + public void setGukse(long gukse) { + this.gukse = gukse; + } + + /** Gets the gukseIja value for this Ye22SunapDTO. + * @return gukseIja + */ + public long getGukseIja() { + return gukseIja; + } + + /** Sets the gukseIja value for this Ye22SunapDTO. + * @param gukseIja + */ + public void setGukseIja(long gukseIja) { + this.gukseIja = gukseIja; + } + + /** Gets the guse value for this Ye22SunapDTO. + * @return guse + */ + public long getGuse() { + return guse; + } + + /** Sets the guse value for this Ye22SunapDTO. + * @param guse + */ + public void setGuse(long guse) { + this.guse = guse; + } + + /** Gets the guseIja value for this Ye22SunapDTO. + * @return guseIja + */ + public long getGuseIja() { + return guseIja; + } + + /** Sets the guseIja value for this Ye22SunapDTO. + * @param guseIja + */ + public void setGuseIja(long guseIja) { + this.guseIja = guseIja; + } + + /** Gets the hangmok1 value for this Ye22SunapDTO. + * @return hangmok1 + */ + public String getHangmok1() { + return hangmok1; + } + + /** Sets the hangmok1 value for this Ye22SunapDTO. + * @param hangmok1 + */ + public void setHangmok1(String hangmok1) { + this.hangmok1 = hangmok1; + } + + /** Gets the hangmok2 value for this Ye22SunapDTO. + * @return hangmok2 + */ + public String getHangmok2() { + return hangmok2; + } + + /** Sets the hangmok2 value for this Ye22SunapDTO. + * @param hangmok2 + */ + public void setHangmok2(String hangmok2) { + this.hangmok2 = hangmok2; + } + + /** Gets the hangmok3 value for this Ye22SunapDTO. + * @return hangmok3 + */ + public String getHangmok3() { + return hangmok3; + } + + /** Sets the hangmok3 value for this Ye22SunapDTO. + * @param hangmok3 + */ + public void setHangmok3(String hangmok3) { + this.hangmok3 = hangmok3; + } + + /** Gets the hangmok4 value for this Ye22SunapDTO. + * @return hangmok4 + */ + public String getHangmok4() { + return hangmok4; + } + + /** Sets the hangmok4 value for this Ye22SunapDTO. + * @param hangmok4 + */ + public void setHangmok4(String hangmok4) { + this.hangmok4 = hangmok4; + } + + /** Gets the hangmok5 value for this Ye22SunapDTO. + * @return hangmok5 + */ + public String getHangmok5() { + return hangmok5; + } + + /** Sets the hangmok5 value for this Ye22SunapDTO. + * @param hangmok5 + */ + public void setHangmok5(String hangmok5) { + this.hangmok5 = hangmok5; + } + + /** Gets the hangmok6 value for this Ye22SunapDTO. + * @return hangmok6 + */ + public String getHangmok6() { + return hangmok6; + } + + /** Sets the hangmok6 value for this Ye22SunapDTO. + * @param hangmok6 + */ + public void setHangmok6(String hangmok6) { + this.hangmok6 = hangmok6; + } + + /** Gets the lastWorkDate value for this Ye22SunapDTO. + * @return lastWorkDate + */ + public String getLastWorkDate() { + return lastWorkDate; + } + + /** Sets the lastWorkDate value for this Ye22SunapDTO. + * @param lastWorkDate + */ + public void setLastWorkDate(String lastWorkDate) { + this.lastWorkDate = lastWorkDate; + } + + /** Gets the lastWorkId value for this Ye22SunapDTO. + * @return lastWorkId + */ + public String getLastWorkId() { + return lastWorkId; + } + + /** Sets the lastWorkId value for this Ye22SunapDTO. + * @param lastWorkId + */ + public void setLastWorkId(String lastWorkId) { + this.lastWorkId = lastWorkId; + } + + /** Gets the mulGubun value for this Ye22SunapDTO. + * @return mulGubun + */ + public String getMulGubun() { + return mulGubun; + } + + /** Sets the mulGubun value for this Ye22SunapDTO. + * @param mulGubun + */ + public void setMulGubun(String mulGubun) { + this.mulGubun = mulGubun; + } + + /** Gets the mulNm value for this Ye22SunapDTO. + * @return mulNm + */ + public String getMulNm() { + return mulNm; + } + + /** Sets the mulNm value for this Ye22SunapDTO. + * @param mulNm + */ + public void setMulNm(String mulNm) { + this.mulNm = mulNm; + } + + /** Gets the napDtlAddr value for this Ye22SunapDTO. + * @return napDtlAddr + */ + public String getNapDtlAddr() { + return napDtlAddr; + } + + /** Sets the napDtlAddr value for this Ye22SunapDTO. + * @param napDtlAddr + */ + public void setNapDtlAddr(String napDtlAddr) { + this.napDtlAddr = napDtlAddr; + } + + /** Gets the napGubun value for this Ye22SunapDTO. + * @return napGubun + */ + public String getNapGubun() { + return napGubun; + } + + /** Sets the napGubun value for this Ye22SunapDTO. + * @param napGubun + */ + public void setNapGubun(String napGubun) { + this.napGubun = napGubun; + } + + /** Gets the napId value for this Ye22SunapDTO. + * @return napId + */ + public String getNapId() { + return napId; + } + + /** Sets the napId value for this Ye22SunapDTO. + * @param napId + */ + public void setNapId(String napId) { + this.napId = napId; + } + + /** Gets the napName value for this Ye22SunapDTO. + * @return napName + */ + public String getNapName() { + return napName; + } + + /** Sets the napName value for this Ye22SunapDTO. + * @param napName + */ + public void setNapName(String napName) { + this.napName = napName; + } + + /** Gets the napNm value for this Ye22SunapDTO. + * @return napNm + */ + public String getNapNm() { + return napNm; + } + + /** Sets the napNm value for this Ye22SunapDTO. + * @param napNm + */ + public void setNapNm(String napNm) { + this.napNm = napNm; + } + + /** Gets the napZipAddr value for this Ye22SunapDTO. + * @return napZipAddr + */ + public String getNapZipAddr() { + return napZipAddr; + } + + /** Sets the napZipAddr value for this Ye22SunapDTO. + * @param napZipAddr + */ + public void setNapZipAddr(String napZipAddr) { + this.napZipAddr = napZipAddr; + } + + /** Gets the napZipCd value for this Ye22SunapDTO. + * @return napZipCd + */ + public String getNapZipCd() { + return napZipCd; + } + + /** Sets the napZipCd value for this Ye22SunapDTO. + * @param napZipCd + */ + public void setNapZipCd(String napZipCd) { + this.napZipCd = napZipCd; + } + + /** Gets the napbuYmd value for this Ye22SunapDTO. + * @return napbuYmd + */ + public String getNapbuYmd() { + return napbuYmd; + } + + /** Sets the napbuYmd value for this Ye22SunapDTO. + * @param napbuYmd + */ + public void setNapbuYmd(String napbuYmd) { + this.napbuYmd = napbuYmd; + } + + /** Gets the napgiAftYmd value for this Ye22SunapDTO. + * @return napgiAftYmd + */ + public String getNapgiAftYmd() { + return napgiAftYmd; + } + + /** Sets the napgiAftYmd value for this Ye22SunapDTO. + * @param napgiAftYmd + */ + public void setNapgiAftYmd(String napgiAftYmd) { + this.napgiAftYmd = napgiAftYmd; + } + + /** Gets the napgiYmd value for this Ye22SunapDTO. + * @return napgiYmd + */ + public String getNapgiYmd() { + return napgiYmd; + } + + /** Sets the napgiYmd value for this Ye22SunapDTO. + * @param napgiYmd + */ + public void setNapgiYmd(String napgiYmd) { + this.napgiYmd = napgiYmd; + } + + /** Gets the ocrBuseoCd value for this Ye22SunapDTO. + * @return ocrBuseoCd + */ + public String getOcrBuseoCd() { + return ocrBuseoCd; + } + + /** Sets the ocrBuseoCd value for this Ye22SunapDTO. + * @param ocrBuseoCd + */ + public void setOcrBuseoCd(String ocrBuseoCd) { + this.ocrBuseoCd = ocrBuseoCd; + } + + /** Gets the ocrGubun value for this Ye22SunapDTO. + * @return ocrGubun + */ + public String getOcrGubun() { + return ocrGubun; + } + + /** Sets the ocrGubun value for this Ye22SunapDTO. + * @param ocrGubun + */ + public void setOcrGubun(String ocrGubun) { + this.ocrGubun = ocrGubun; + } + + /** Gets the ocrSiguCd value for this Ye22SunapDTO. + * @return ocrSiguCd + */ + public String getOcrSiguCd() { + return ocrSiguCd; + } + + /** Sets the ocrSiguCd value for this Ye22SunapDTO. + * @param ocrSiguCd + */ + public void setOcrSiguCd(String ocrSiguCd) { + this.ocrSiguCd = ocrSiguCd; + } + + /** Gets the orgNapId value for this Ye22SunapDTO. + * @return orgNapId + */ + public String getOrgNapId() { + return orgNapId; + } + + /** Sets the orgNapId value for this Ye22SunapDTO. + * @param orgNapId + */ + public void setOrgNapId(String orgNapId) { + this.orgNapId = orgNapId; + } + + /** Gets the resideStatus value for this Ye22SunapDTO. + * @return resideStatus + */ + public String getResideStatus() { + return resideStatus; + } + + /** Sets the resideStatus value for this Ye22SunapDTO. + * @param resideStatus + */ + public void setResideStatus(String resideStatus) { + this.resideStatus = resideStatus; + } + + /** Gets the semokCd value for this Ye22SunapDTO. + * @return semokCd + */ + public String getSemokCd() { + return semokCd; + } + + /** Sets the semokCd value for this Ye22SunapDTO. + * @param semokCd + */ + public void setSemokCd(String semokCd) { + this.semokCd = semokCd; + } + + /** Gets the sendYmd value for this Ye22SunapDTO. + * @return sendYmd + */ + public String getSendYmd() { + return sendYmd; + } + + /** Sets the sendYmd value for this Ye22SunapDTO. + * @param sendYmd + */ + public void setSendYmd(String sendYmd) { + this.sendYmd = sendYmd; + } + + /** Gets the sidoCd value for this Ye22SunapDTO. + * @return sidoCd + */ + public String getSidoCd() { + return sidoCd; + } + + /** Sets the sidoCd value for this Ye22SunapDTO. + * @param sidoCd + */ + public void setSidoCd(String sidoCd) { + this.sidoCd = sidoCd; + } + + /** Gets the siguCd value for this Ye22SunapDTO. + * @return siguCd + */ + public String getSiguCd() { + return siguCd; + } + + /** Sets the siguCd value for this Ye22SunapDTO. + * @param siguCd + */ + public void setSiguCd(String siguCd) { + this.siguCd = siguCd; + } + + /** Gets the sise value for this Ye22SunapDTO. + * @return sise + */ + public long getSise() { + return sise; + } + + /** Sets the sise value for this Ye22SunapDTO. + * @param sise + */ + public void setSise(long sise) { + this.sise = sise; + } + + /** Gets the siseIja value for this Ye22SunapDTO. + * @return siseIja + */ + public long getSiseIja() { + return siseIja; + } + + /** Sets the siseIja value for this Ye22SunapDTO. + * @param siseIja + */ + public void setSiseIja(long siseIja) { + this.siseIja = siseIja; + } + + /** Gets the suBuseoCd value for this Ye22SunapDTO. + * @return suBuseoCd + */ + public String getSuBuseoCd() { + return suBuseoCd; + } + + /** Sets the suBuseoCd value for this Ye22SunapDTO. + * @param suBuseoCd + */ + public void setSuBuseoCd(String suBuseoCd) { + this.suBuseoCd = suBuseoCd; + } + + /** Gets the suCnt value for this Ye22SunapDTO. + * @return suCnt + */ + public String getSuCnt() { + return suCnt; + } + + /** Sets the suCnt value for this Ye22SunapDTO. + * @param suCnt + */ + public void setSuCnt(String suCnt) { + this.suCnt = suCnt; + } + + /** Gets the suGigum value for this Ye22SunapDTO. + * @return suGigum + */ + public long getSuGigum() { + return suGigum; + } + + /** Sets the suGigum value for this Ye22SunapDTO. + * @param suGigum + */ + public void setSuGigum(long suGigum) { + this.suGigum = suGigum; + } + + /** Gets the suGigumGasanAmt value for this Ye22SunapDTO. + * @return suGigumGasanAmt + */ + public long getSuGigumGasanAmt() { + return suGigumGasanAmt; + } + + /** Sets the suGigumGasanAmt value for this Ye22SunapDTO. + * @param suGigumGasanAmt + */ + public void setSuGigumGasanAmt(long suGigumGasanAmt) { + this.suGigumGasanAmt = suGigumGasanAmt; + } + + /** Gets the suGigumIja value for this Ye22SunapDTO. + * @return suGigumIja + */ + public long getSuGigumIja() { + return suGigumIja; + } + + /** Sets the suGigumIja value for this Ye22SunapDTO. + * @param suGigumIja + */ + public void setSuGigumIja(long suGigumIja) { + this.suGigumIja = suGigumIja; + } + + /** Gets the suGubun value for this Ye22SunapDTO. + * @return suGubun + */ + public String getSuGubun() { + return suGubun; + } + + /** Sets the suGubun value for this Ye22SunapDTO. + * @param suGubun + */ + public void setSuGubun(String suGubun) { + this.suGubun = suGubun; + } + + /** Gets the suGukse value for this Ye22SunapDTO. + * @return suGukse + */ + public long getSuGukse() { + return suGukse; + } + + /** Sets the suGukse value for this Ye22SunapDTO. + * @param suGukse + */ + public void setSuGukse(long suGukse) { + this.suGukse = suGukse; + } + + /** Gets the suGukseGasanAmt value for this Ye22SunapDTO. + * @return suGukseGasanAmt + */ + public long getSuGukseGasanAmt() { + return suGukseGasanAmt; + } + + /** Sets the suGukseGasanAmt value for this Ye22SunapDTO. + * @param suGukseGasanAmt + */ + public void setSuGukseGasanAmt(long suGukseGasanAmt) { + this.suGukseGasanAmt = suGukseGasanAmt; + } + + /** Gets the suGukseIja value for this Ye22SunapDTO. + * @return suGukseIja + */ + public long getSuGukseIja() { + return suGukseIja; + } + + /** Sets the suGukseIja value for this Ye22SunapDTO. + * @param suGukseIja + */ + public void setSuGukseIja(long suGukseIja) { + this.suGukseIja = suGukseIja; + } + + /** Gets the suGuse value for this Ye22SunapDTO. + * @return suGuse + */ + public long getSuGuse() { + return suGuse; + } + + /** Sets the suGuse value for this Ye22SunapDTO. + * @param suGuse + */ + public void setSuGuse(long suGuse) { + this.suGuse = suGuse; + } + + /** Gets the suGuseGasanAmt value for this Ye22SunapDTO. + * @return suGuseGasanAmt + */ + public long getSuGuseGasanAmt() { + return suGuseGasanAmt; + } + + /** Sets the suGuseGasanAmt value for this Ye22SunapDTO. + * @param suGuseGasanAmt + */ + public void setSuGuseGasanAmt(long suGuseGasanAmt) { + this.suGuseGasanAmt = suGuseGasanAmt; + } + + /** Gets the suGuseIja value for this Ye22SunapDTO. + * @return suGuseIja + */ + public long getSuGuseIja() { + return suGuseIja; + } + + /** Sets the suGuseIja value for this Ye22SunapDTO. + * @param suGuseIja + */ + public void setSuGuseIja(long suGuseIja) { + this.suGuseIja = suGuseIja; + } + + /** Gets the suNapbuGubun value for this Ye22SunapDTO. + * @return suNapbuGubun + */ + public String getSuNapbuGubun() { + return suNapbuGubun; + } + + /** Sets the suNapbuGubun value for this Ye22SunapDTO. + * @param suNapbuGubun + */ + public void setSuNapbuGubun(String suNapbuGubun) { + this.suNapbuGubun = suNapbuGubun; + } + + /** Gets the suNapbuYmd value for this Ye22SunapDTO. + * @return suNapbuYmd + */ + public String getSuNapbuYmd() { + return suNapbuYmd; + } + + /** Sets the suNapbuYmd value for this Ye22SunapDTO. + * @param suNapbuYmd + */ + public void setSuNapbuYmd(String suNapbuYmd) { + this.suNapbuYmd = suNapbuYmd; + } + + /** Gets the suPrcGubun value for this Ye22SunapDTO. + * @return suPrcGubun + */ + public String getSuPrcGubun() { + return suPrcGubun; + } + + /** Sets the suPrcGubun value for this Ye22SunapDTO. + * @param suPrcGubun + */ + public void setSuPrcGubun(String suPrcGubun) { + this.suPrcGubun = suPrcGubun; + } + + /** Gets the suSise value for this Ye22SunapDTO. + * @return suSise + */ + public long getSuSise() { + return suSise; + } + + /** Sets the suSise value for this Ye22SunapDTO. + * @param suSise + */ + public void setSuSise(long suSise) { + this.suSise = suSise; + } + + /** Gets the suSiseGasanAmt value for this Ye22SunapDTO. + * @return suSiseGasanAmt + */ + public long getSuSiseGasanAmt() { + return suSiseGasanAmt; + } + + /** Sets the suSiseGasanAmt value for this Ye22SunapDTO. + * @param suSiseGasanAmt + */ + public void setSuSiseGasanAmt(long suSiseGasanAmt) { + this.suSiseGasanAmt = suSiseGasanAmt; + } + + /** Gets the suSiseIja value for this Ye22SunapDTO. + * @return suSiseIja + */ + public long getSuSiseIja() { + return suSiseIja; + } + + /** Sets the suSiseIja value for this Ye22SunapDTO. + * @param suSiseIja + */ + public void setSuSiseIja(long suSiseIja) { + this.suSiseIja = suSiseIja; + } + + /** Gets the suVatAmt value for this Ye22SunapDTO. + * @return suVatAmt + */ + public long getSuVatAmt() { + return suVatAmt; + } + + /** Sets the suVatAmt value for this Ye22SunapDTO. + * @param suVatAmt + */ + public void setSuVatAmt(long suVatAmt) { + this.suVatAmt = suVatAmt; + } + + /** Gets the sysGubun value for this Ye22SunapDTO. + * @return sysGubun + */ + public String getSysGubun() { + return sysGubun; + } + + /** Sets the sysGubun value for this Ye22SunapDTO. + * @param sysGubun + */ + public void setSysGubun(String sysGubun) { + this.sysGubun = sysGubun; + } + + /** Gets the systemDate value for this Ye22SunapDTO. + * @return systemDate + */ + public String getSystemDate() { + return systemDate; + } + + /** Sets the systemDate value for this Ye22SunapDTO. + * @param systemDate + */ + public void setSystemDate(String systemDate) { + this.systemDate = systemDate; + } + + /** Gets the taxAmt value for this Ye22SunapDTO. + * @return taxAmt + */ + public String getTaxAmt() { + return taxAmt; + } + + /** Sets the taxAmt value for this Ye22SunapDTO. + * @param taxAmt + */ + public void setTaxAmt(String taxAmt) { + this.taxAmt = taxAmt; + } + + /** Gets the taxGubun value for this Ye22SunapDTO. + * @return taxGubun + */ + public String getTaxGubun() { + return taxGubun; + } + + /** Sets the taxGubun value for this Ye22SunapDTO. + * @param taxGubun + */ + public void setTaxGubun(String taxGubun) { + this.taxGubun = taxGubun; + } + + /** Gets the taxNo value for this Ye22SunapDTO. + * @return taxNo + */ + public String getTaxNo() { + return taxNo; + } + + /** Sets the taxNo value for this Ye22SunapDTO. + * @param taxNo + */ + public void setTaxNo(String taxNo) { + this.taxNo = taxNo; + } + + /** Gets the taxYm value for this Ye22SunapDTO. + * @return taxYm + */ + public String getTaxYm() { + return taxYm; + } + + /** Sets the taxYm value for this Ye22SunapDTO. + * @param taxYm + */ + public void setTaxYm(String taxYm) { + this.taxYm = taxYm; + } + + /** Gets the taxYmd value for this Ye22SunapDTO. + * @return taxYmd + */ + public String getTaxYmd() { + return taxYmd; + } + + /** Sets the taxYmd value for this Ye22SunapDTO. + * @param taxYmd + */ + public void setTaxYmd(String taxYmd) { + this.taxYmd = taxYmd; + } + + /** Gets the vatAmt value for this Ye22SunapDTO. + * @return vatAmt + */ + public long getVatAmt() { + return vatAmt; + } + + /** Sets the vatAmt value for this Ye22SunapDTO. + * @param vatAmt + */ + public void setVatAmt(long vatAmt) { + this.vatAmt = vatAmt; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Ye22SunapDTO)) return false; + Ye22SunapDTO other = (Ye22SunapDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.bigo, other.getBigo()) && + equals(this.bookNo, other.getBookNo()) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.dataGubun, other.getDataGubun()) && + equals(this.gasanAmtSkipGubun, other.getGasanAmtSkipGubun()) && + equals(this.gasanRateGubun, other.getGasanRateGubun()) && + this.gigum == other.getGigum() && + this.gigumIja == other.getGigumIja() && + equals(this.gijunDate, other.getGijunDate()) && + this.gukse == other.getGukse() && + this.gukseIja == other.getGukseIja() && + this.guse == other.getGuse() && + this.guseIja == other.getGuseIja() && + equals(this.hangmok1, other.getHangmok1()) && + equals(this.hangmok2, other.getHangmok2()) && + equals(this.hangmok3, other.getHangmok3()) && + equals(this.hangmok4, other.getHangmok4()) && + equals(this.hangmok5, other.getHangmok5()) && + equals(this.hangmok6, other.getHangmok6()) && + equals(this.lastWorkDate, other.getLastWorkDate()) && + equals(this.lastWorkId, other.getLastWorkId()) && + equals(this.mulGubun, other.getMulGubun()) && + equals(this.mulNm, other.getMulNm()) && + equals(this.napDtlAddr, other.getNapDtlAddr()) && + equals(this.napGubun, other.getNapGubun()) && + equals(this.napId, other.getNapId()) && + equals(this.napName, other.getNapName()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napZipAddr, other.getNapZipAddr()) && + equals(this.napZipCd, other.getNapZipCd()) && + equals(this.napbuYmd, other.getNapbuYmd()) && + equals(this.napgiAftYmd, other.getNapgiAftYmd()) && + equals(this.napgiYmd, other.getNapgiYmd()) && + equals(this.ocrBuseoCd, other.getOcrBuseoCd()) && + equals(this.ocrGubun, other.getOcrGubun()) && + equals(this.ocrSiguCd, other.getOcrSiguCd()) && + equals(this.orgNapId, other.getOrgNapId()) && + equals(this.resideStatus, other.getResideStatus()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.sendYmd, other.getSendYmd()) && + equals(this.sidoCd, other.getSidoCd()) && + equals(this.siguCd, other.getSiguCd()) && + this.sise == other.getSise() && + this.siseIja == other.getSiseIja() && + equals(this.suBuseoCd, other.getSuBuseoCd()) && + equals(this.suCnt, other.getSuCnt()) && + this.suGigum == other.getSuGigum() && + this.suGigumGasanAmt == other.getSuGigumGasanAmt() && + this.suGigumIja == other.getSuGigumIja() && + equals(this.suGubun, other.getSuGubun()) && + this.suGukse == other.getSuGukse() && + this.suGukseGasanAmt == other.getSuGukseGasanAmt() && + this.suGukseIja == other.getSuGukseIja() && + this.suGuse == other.getSuGuse() && + this.suGuseGasanAmt == other.getSuGuseGasanAmt() && + this.suGuseIja == other.getSuGuseIja() && + equals(this.suNapbuGubun, other.getSuNapbuGubun()) && + equals(this.suNapbuYmd, other.getSuNapbuYmd()) && + equals(this.suPrcGubun, other.getSuPrcGubun()) && + this.suSise == other.getSuSise() && + this.suSiseGasanAmt == other.getSuSiseGasanAmt() && + this.suSiseIja == other.getSuSiseIja() && + this.suVatAmt == other.getSuVatAmt() && + equals(this.sysGubun, other.getSysGubun()) && + equals(this.systemDate, other.getSystemDate()) && + equals(this.taxAmt, other.getTaxAmt()) && + equals(this.taxGubun, other.getTaxGubun()) && + equals(this.taxNo, other.getTaxNo()) && + equals(this.taxYm, other.getTaxYm()) && + equals(this.taxYmd, other.getTaxYmd()) && + this.vatAmt == other.getVatAmt(); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getBigo(), + getBookNo(), + getBuseoCd(), + getDataGubun(), + getGasanAmtSkipGubun(), + getGasanRateGubun(), + Long.valueOf(getGigum()), + Long.valueOf(getGigumIja()), + getGijunDate(), + Long.valueOf(getGukse()), + Long.valueOf(getGukseIja()), + Long.valueOf(getGuse()), + Long.valueOf(getGuseIja()), + getHangmok1(), + getHangmok2(), + getHangmok3(), + getHangmok4(), + getHangmok5(), + getHangmok6(), + getLastWorkDate(), + getLastWorkId(), + getMulGubun(), + getMulNm(), + getNapDtlAddr(), + getNapGubun(), + getNapId(), + getNapName(), + getNapNm(), + getNapZipAddr(), + getNapZipCd(), + getNapbuYmd(), + getNapgiAftYmd(), + getNapgiYmd(), + getOcrBuseoCd(), + getOcrGubun(), + getOcrSiguCd(), + getOrgNapId(), + getResideStatus(), + getSemokCd(), + getSendYmd(), + getSidoCd(), + getSiguCd(), + Long.valueOf(getSise()), + Long.valueOf(getSiseIja()), + getSuBuseoCd(), + getSuCnt(), + Long.valueOf(getSuGigum()), + Long.valueOf(getSuGigumGasanAmt()), + Long.valueOf(getSuGigumIja()), + getSuGubun(), + Long.valueOf(getSuGukse()), + Long.valueOf(getSuGukseGasanAmt()), + Long.valueOf(getSuGukseIja()), + Long.valueOf(getSuGuse()), + Long.valueOf(getSuGuseGasanAmt()), + Long.valueOf(getSuGuseIja()), + getSuNapbuGubun(), + getSuNapbuYmd(), + getSuPrcGubun(), + Long.valueOf(getSuSise()), + Long.valueOf(getSuSiseGasanAmt()), + Long.valueOf(getSuSiseIja()), + Long.valueOf(getSuVatAmt()), + getSysGubun(), + getSystemDate(), + getTaxAmt(), + getTaxGubun(), + getTaxNo(), + getTaxYm(), + getTaxYmd(), + Long.valueOf(getVatAmt()) + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrFileOfferWebService.descriptor().type( + Ye22SunapDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "bigo", desc.qname("", name), "string", true), + desc.field(name = "bookNo", desc.qname("", name), "string", true), + desc.field(name = "buseoCd", desc.qname("", name), "string", true), + desc.field(name = "dataGubun", desc.qname("", name), "string", true), + desc.field(name = "gasanAmtSkipGubun", desc.qname("", name), "string", true), + desc.field(name = "gasanRateGubun", desc.qname("", name), "string", true), + desc.field(name = "gigum", desc.qname("", name), "long", false), + desc.field(name = "gigumIja", desc.qname("", name), "long", false), + desc.field(name = "gijunDate", desc.qname("", name), "string", true), + desc.field(name = "gukse", desc.qname("", name), "long", false), + desc.field(name = "gukseIja", desc.qname("", name), "long", false), + desc.field(name = "guse", desc.qname("", name), "long", false), + desc.field(name = "guseIja", desc.qname("", name), "long", false), + desc.field(name = "hangmok1", desc.qname("", name), "string", true), + desc.field(name = "hangmok2", desc.qname("", name), "string", true), + desc.field(name = "hangmok3", desc.qname("", name), "string", true), + desc.field(name = "hangmok4", desc.qname("", name), "string", true), + desc.field(name = "hangmok5", desc.qname("", name), "string", true), + desc.field(name = "hangmok6", desc.qname("", name), "string", true), + desc.field(name = "lastWorkDate", desc.qname("", name), "string", true), + desc.field(name = "lastWorkId", desc.qname("", name), "string", true), + desc.field(name = "mulGubun", desc.qname("", name), "string", true), + desc.field(name = "mulNm", desc.qname("", name), "string", true), + desc.field(name = "napDtlAddr", desc.qname("", name), "string", true), + desc.field(name = "napGubun", desc.qname("", name), "string", true), + desc.field(name = "napId", desc.qname("", name), "string", true), + desc.field(name = "napName", desc.qname("", name), "string", true), + desc.field(name = "napNm", desc.qname("", name), "string", true), + desc.field(name = "napZipAddr", desc.qname("", name), "string", true), + desc.field(name = "napZipCd", desc.qname("", name), "string", true), + desc.field(name = "napbuYmd", desc.qname("", name), "string", true), + desc.field(name = "napgiAftYmd", desc.qname("", name), "string", true), + desc.field(name = "napgiYmd", desc.qname("", name), "string", true), + desc.field(name = "ocrBuseoCd", desc.qname("", name), "string", true), + desc.field(name = "ocrGubun", desc.qname("", name), "string", true), + desc.field(name = "ocrSiguCd", desc.qname("", name), "string", true), + desc.field(name = "orgNapId", desc.qname("", name), "string", true), + desc.field(name = "resideStatus", desc.qname("", name), "string", true), + desc.field(name = "semokCd", desc.qname("", name), "string", true), + desc.field(name = "sendYmd", desc.qname("", name), "string", true), + desc.field(name = "sidoCd", desc.qname("", name), "string", true), + desc.field(name = "siguCd", desc.qname("", name), "string", true), + desc.field(name = "sise", desc.qname("", name), "long", false), + desc.field(name = "siseIja", desc.qname("", name), "long", false), + desc.field(name = "suBuseoCd", desc.qname("", name), "string", true), + desc.field(name = "suCnt", desc.qname("", name), "string", true), + desc.field(name = "suGigum", desc.qname("", name), "long", false), + desc.field(name = "suGigumGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "suGigumIja", desc.qname("", name), "long", false), + desc.field(name = "suGubun", desc.qname("", name), "string", true), + desc.field(name = "suGukse", desc.qname("", name), "long", false), + desc.field(name = "suGukseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "suGukseIja", desc.qname("", name), "long", false), + desc.field(name = "suGuse", desc.qname("", name), "long", false), + desc.field(name = "suGuseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "suGuseIja", desc.qname("", name), "long", false), + desc.field(name = "suNapbuGubun", desc.qname("", name), "string", true), + desc.field(name = "suNapbuYmd", desc.qname("", name), "string", true), + desc.field(name = "suPrcGubun", desc.qname("", name), "string", true), + desc.field(name = "suSise", desc.qname("", name), "long", false), + desc.field(name = "suSiseGasanAmt", desc.qname("", name), "long", false), + desc.field(name = "suSiseIja", desc.qname("", name), "long", false), + desc.field(name = "suVatAmt", desc.qname("", name), "long", false), + desc.field(name = "sysGubun", desc.qname("", name), "string", true), + desc.field(name = "systemDate", desc.qname("", name), "string", true), + desc.field(name = "taxAmt", desc.qname("", name), "string", true), + desc.field(name = "taxGubun", desc.qname("", name), "string", true), + desc.field(name = "taxNo", desc.qname("", name), "string", true), + desc.field(name = "taxYm", desc.qname("", name), "string", true), + desc.field(name = "taxYmd", desc.qname("", name), "string", true), + desc.field(name = "vatAmt", desc.qname("", name), "long", false) + }; + } + ); + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebPreNoticeDTO.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebPreNoticeDTO.java new file mode 100644 index 0000000..c93442e --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebPreNoticeDTO.java @@ -0,0 +1,768 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Bu18WebPreNoticeDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + /** 비고 */ + private String bigo; + /** 자료키 */ + private String bookNo; + /** 부서코드 */ + private String buseoCd; + /** 처분내용 */ + private String disposalContent; + /** 위반장소 */ + private String jukbalDtlAddr; + /** 적발담당자 */ + private String jukbalMgrNm; + /** 적발내용 */ + private String jukbalTarget; + /** 적발담당자 전화번호 */ + private String jukbalTelNo; + /** 적발년월 */ + private String jukbalYm; + /** 위반일시 */ + private String jukbalYmdHs; + /** 작업자 ID */ + private String lastWorkId; + /** 작업자 이름 */ + private String lastWorkNm; + /** 도로명 상세주소 */ + private String napDdtlAddr; + /** 도로명 참고항목 */ + private String napDrefAddr; + /** 지번 상세주소 */ + private String napDtlAddr; + /** 도로명 우편주소 */ + private String napDzipAddr; + /** 도로명 우편번호 */ + private String napDzipCd; + /** 납세자 주민번호 */ + private String napId; + /** 납세자 휴대폰 번호 */ + private String napMobilNo; + /** 납세자 이름 */ + private String napNm; + /** 납세자 전화번호 */ + private String napTelNo; + /** 지번 우편주소 */ + private String napZipAddr; + /** 지번 우편번호 */ + private String napZipCd; + /** */ + private long preTaxAmt; + /** 부과근거 */ + private String rawBasis; + /** 세목코드 */ + private String semokCd; + /** 사전통지일 */ + private String sendYmd; + /** 시도코드 */ + private String sidoCd; + /** 시구코드 */ + private String siguCd; + /** 의견제출기한 */ + private String submitYmd; + /** 시스템 구분 */ + private String sysGubun; + /** 과세금액 */ + private long taxAmt; + /** 작업일자 */ + private String workYmd; + + public Bu18WebPreNoticeDTO() {} + + public Bu18WebPreNoticeDTO( + String bigo, + String bookNo, + String buseoCd, + String disposalContent, + String jukbalDtlAddr, + String jukbalMgrNm, + String jukbalTarget, + String jukbalTelNo, + String jukbalYm, + String jukbalYmdHs, + String lastWorkId, + String lastWorkNm, + String napDdtlAddr, + String napDrefAddr, + String napDtlAddr, + String napDzipAddr, + String napDzipCd, + String napId, + String napMobilNo, + String napNm, + String napTelNo, + String napZipAddr, + String napZipCd, + long preTaxAmt, + String rawBasis, + String semokCd, + String sendYmd, + String sidoCd, + String siguCd, + String submitYmd, + String sysGubun, + long taxAmt, + String workYmd + ) { + this.bigo = bigo; + this.bookNo = bookNo; + this.buseoCd = buseoCd; + this.disposalContent = disposalContent; + this.jukbalDtlAddr = jukbalDtlAddr; + this.jukbalMgrNm = jukbalMgrNm; + this.jukbalTarget = jukbalTarget; + this.jukbalTelNo = jukbalTelNo; + this.jukbalYm = jukbalYm; + this.jukbalYmdHs = jukbalYmdHs; + this.lastWorkId = lastWorkId; + this.lastWorkNm = lastWorkNm; + this.napDdtlAddr = napDdtlAddr; + this.napDrefAddr = napDrefAddr; + this.napDtlAddr = napDtlAddr; + this.napDzipAddr = napDzipAddr; + this.napDzipCd = napDzipCd; + this.napId = napId; + this.napMobilNo = napMobilNo; + this.napNm = napNm; + this.napTelNo = napTelNo; + this.napZipAddr = napZipAddr; + this.napZipCd = napZipCd; + this.preTaxAmt = preTaxAmt; + this.rawBasis = rawBasis; + this.semokCd = semokCd; + this.sendYmd = sendYmd; + this.sidoCd = sidoCd; + this.siguCd = siguCd; + this.submitYmd = submitYmd; + this.sysGubun = sysGubun; + this.taxAmt = taxAmt; + this.workYmd = workYmd; + } + + /**Gets the bigo value for this Bu18WebPreNoticeDTO. + * @return bigo + */ + public String getBigo() { + return bigo; + } + + /**Sets the bigo value for this Bu18WebPreNoticeDTO. + * @param bigo + */ + public void setBigo(String bigo) { + this.bigo = bigo; + } + + /**Gets the bookNo value for this Bu18WebPreNoticeDTO. + * @return bookNo + */ + public String getBookNo() { + return bookNo; + } + + /**Sets the bookNo value for this Bu18WebPreNoticeDTO. + * @param bookNo + */ + public void setBookNo(String bookNo) { + this.bookNo = bookNo; + } + + /**Gets the buseoCd value for this Bu18WebPreNoticeDTO. + * @return buseoCd + */ + public String getBuseoCd() { + return buseoCd; + } + + /**Sets the buseoCd value for this Bu18WebPreNoticeDTO. + * @param buseoCd + */ + public void setBuseoCd(String buseoCd) { + this.buseoCd = buseoCd; + } + + /**Gets the disposalContent value for this Bu18WebPreNoticeDTO. + * @return disposalContent + */ + public String getDisposalContent() { + return disposalContent; + } + + /**Sets the disposalContent value for this Bu18WebPreNoticeDTO. + * @param disposalContent + */ + public void setDisposalContent(String disposalContent) { + this.disposalContent = disposalContent; + } + + /**Gets the jukbalDtlAddr value for this Bu18WebPreNoticeDTO. + * @return jukbalDtlAddr + */ + public String getJukbalDtlAddr() { + return jukbalDtlAddr; + } + + /**Sets the jukbalDtlAddr value for this Bu18WebPreNoticeDTO. + * @param jukbalDtlAddr + */ + public void setJukbalDtlAddr(String jukbalDtlAddr) { + this.jukbalDtlAddr = jukbalDtlAddr; + } + + /**Gets the jukbalMgrNm value for this Bu18WebPreNoticeDTO. + * @return jukbalMgrNm + */ + public String getJukbalMgrNm() { + return jukbalMgrNm; + } + + /**Sets the jukbalMgrNm value for this Bu18WebPreNoticeDTO. + * @param jukbalMgrNm + */ + public void setJukbalMgrNm(String jukbalMgrNm) { + this.jukbalMgrNm = jukbalMgrNm; + } + + /**Gets the jukbalTarget value for this Bu18WebPreNoticeDTO. + * @return jukbalTarget + */ + public String getJukbalTarget() { + return jukbalTarget; + } + + /**Sets the jukbalTarget value for this Bu18WebPreNoticeDTO. + * @param jukbalTarget + */ + public void setJukbalTarget(String jukbalTarget) { + this.jukbalTarget = jukbalTarget; + } + + /**Gets the jukbalTelNo value for this Bu18WebPreNoticeDTO. + * @return jukbalTelNo + */ + public String getJukbalTelNo() { + return jukbalTelNo; + } + + /**Sets the jukbalTelNo value for this Bu18WebPreNoticeDTO. + * @param jukbalTelNo + */ + public void setJukbalTelNo(String jukbalTelNo) { + this.jukbalTelNo = jukbalTelNo; + } + + /**Gets the jukbalYm value for this Bu18WebPreNoticeDTO. + * @return jukbalYm + */ + public String getJukbalYm() { + return jukbalYm; + } + + /**Sets the jukbalYm value for this Bu18WebPreNoticeDTO. + * @param jukbalYm + */ + public void setJukbalYm(String jukbalYm) { + this.jukbalYm = jukbalYm; + } + + /**Gets the jukbalYmdHs value for this Bu18WebPreNoticeDTO. + * @return jukbalYmdHs + */ + public String getJukbalYmdHs() { + return jukbalYmdHs; + } + + /**Sets the jukbalYmdHs value for this Bu18WebPreNoticeDTO. + * @param jukbalYmdHs + */ + public void setJukbalYmdHs(String jukbalYmdHs) { + this.jukbalYmdHs = jukbalYmdHs; + } + + /**Gets the lastWorkId value for this Bu18WebPreNoticeDTO. + * @return lastWorkId + */ + public String getLastWorkId() { + return lastWorkId; + } + + /**Sets the lastWorkId value for this Bu18WebPreNoticeDTO. + * @param lastWorkId + */ + public void setLastWorkId(String lastWorkId) { + this.lastWorkId = lastWorkId; + } + + /**Gets the lastWorkNm value for this Bu18WebPreNoticeDTO. + * @return lastWorkNm + */ + public String getLastWorkNm() { + return lastWorkNm; + } + + /**Sets the lastWorkNm value for this Bu18WebPreNoticeDTO. + * @param lastWorkNm + */ + public void setLastWorkNm(String lastWorkNm) { + this.lastWorkNm = lastWorkNm; + } + + /**Gets the napDdtlAddr value for this Bu18WebPreNoticeDTO. + * @return napDdtlAddr + */ + public String getNapDdtlAddr() { + return napDdtlAddr; + } + + /**Sets the napDdtlAddr value for this Bu18WebPreNoticeDTO. + * @param napDdtlAddr + */ + public void setNapDdtlAddr(String napDdtlAddr) { + this.napDdtlAddr = napDdtlAddr; + } + + /**Gets the napDrefAddr value for this Bu18WebPreNoticeDTO. + * @return napDrefAddr + */ + public String getNapDrefAddr() { + return napDrefAddr; + } + + /**Sets the napDrefAddr value for this Bu18WebPreNoticeDTO. + * + * @param napDrefAddr + */ + public void setNapDrefAddr(String napDrefAddr) { + this.napDrefAddr = napDrefAddr; + } + + /**Gets the napDtlAddr value for this Bu18WebPreNoticeDTO. + * @return napDtlAddr + */ + public String getNapDtlAddr() { + return napDtlAddr; + } + + /**Sets the napDtlAddr value for this Bu18WebPreNoticeDTO. + * @param napDtlAddr + */ + public void setNapDtlAddr(String napDtlAddr) { + this.napDtlAddr = napDtlAddr; + } + + /**Gets the napDzipAddr value for this Bu18WebPreNoticeDTO. + * @return napDzipAddr + */ + public String getNapDzipAddr() { + return napDzipAddr; + } + + /**Sets the napDzipAddr value for this Bu18WebPreNoticeDTO. + * @param napDzipAddr + */ + public void setNapDzipAddr(String napDzipAddr) { + this.napDzipAddr = napDzipAddr; + } + + /**Gets the napDzipCd value for this Bu18WebPreNoticeDTO. + * @return napDzipCd + */ + public String getNapDzipCd() { + return napDzipCd; + } + + /**Sets the napDzipCd value for this Bu18WebPreNoticeDTO. + * @param napDzipCd + */ + public void setNapDzipCd(String napDzipCd) { + this.napDzipCd = napDzipCd; + } + + /**Gets the napId value for this Bu18WebPreNoticeDTO. + * @return napId + */ + public String getNapId() { + return napId; + } + + /**Sets the napId value for this Bu18WebPreNoticeDTO. + * @param napId + */ + public void setNapId(String napId) { + this.napId = napId; + } + + /**Gets the napMobilNo value for this Bu18WebPreNoticeDTO. + * @return napMobilNo + */ + public String getNapMobilNo() { + return napMobilNo; + } + + /**Sets the napMobilNo value for this Bu18WebPreNoticeDTO. + * @param napMobilNo + */ + public void setNapMobilNo(String napMobilNo) { + this.napMobilNo = napMobilNo; + } + + /**Gets the napNm value for this Bu18WebPreNoticeDTO. + * @return napNm + */ + public String getNapNm() { + return napNm; + } + + /**Sets the napNm value for this Bu18WebPreNoticeDTO. + * @param napNm + */ + public void setNapNm(String napNm) { + this.napNm = napNm; + } + + /**Gets the napTelNo value for this Bu18WebPreNoticeDTO. + * @return napTelNo + */ + public String getNapTelNo() { + return napTelNo; + } + + /**Sets the napTelNo value for this Bu18WebPreNoticeDTO. + * @param napTelNo + */ + public void setNapTelNo(String napTelNo) { + this.napTelNo = napTelNo; + } + + /**Gets the napZipAddr value for this Bu18WebPreNoticeDTO. + * @return napZipAddr + */ + public String getNapZipAddr() { + return napZipAddr; + } + + /**Sets the napZipAddr value for this Bu18WebPreNoticeDTO. + * @param napZipAddr + */ + public void setNapZipAddr(String napZipAddr) { + this.napZipAddr = napZipAddr; + } + + /**Gets the napZipCd value for this Bu18WebPreNoticeDTO. + * @return napZipCd + */ + public String getNapZipCd() { + return napZipCd; + } + + /**Sets the napZipCd value for this Bu18WebPreNoticeDTO. + * @param napZipCd + */ + public void setNapZipCd(String napZipCd) { + this.napZipCd = napZipCd; + } + + /**Gets the preTaxAmt value for this Bu18WebPreNoticeDTO. + * @return preTaxAmt + */ + public long getPreTaxAmt() { + return preTaxAmt; + } + + /**Sets the preTaxAmt value for this Bu18WebPreNoticeDTO. + * @param preTaxAmt + */ + public void setPreTaxAmt(long preTaxAmt) { + this.preTaxAmt = preTaxAmt; + } + + /**Gets the rawBasis value for this Bu18WebPreNoticeDTO. + * @return rawBasis + */ + public String getRawBasis() { + return rawBasis; + } + + /**Sets the rawBasis value for this Bu18WebPreNoticeDTO. + * @param rawBasis + */ + public void setRawBasis(String rawBasis) { + this.rawBasis = rawBasis; + } + + /**Gets the semokCd value for this Bu18WebPreNoticeDTO. + * @return semokCd + */ + public String getSemokCd() { + return semokCd; + } + + /**Sets the semokCd value for this Bu18WebPreNoticeDTO. + * @param semokCd + */ + public void setSemokCd(String semokCd) { + this.semokCd = semokCd; + } + + /**Gets the sendYmd value for this Bu18WebPreNoticeDTO. + * @return sendYmd + */ + public String getSendYmd() { + return sendYmd; + } + + /**Sets the sendYmd value for this Bu18WebPreNoticeDTO. + * @param sendYmd + */ + public void setSendYmd(String sendYmd) { + this.sendYmd = sendYmd; + } + + /**Gets the sidoCd value for this Bu18WebPreNoticeDTO. + * @return sidoCd + */ + public String getSidoCd() { + return sidoCd; + } + + /**Sets the sidoCd value for this Bu18WebPreNoticeDTO. + * @param sidoCd + */ + public void setSidoCd(String sidoCd) { + this.sidoCd = sidoCd; + } + + /**Gets the siguCd value for this Bu18WebPreNoticeDTO. + * @return siguCd + */ + public String getSiguCd() { + return siguCd; + } + + /**Sets the siguCd value for this Bu18WebPreNoticeDTO. + * @param siguCd + */ + public void setSiguCd(String siguCd) { + this.siguCd = siguCd; + } + + /**Gets the submitYmd value for this Bu18WebPreNoticeDTO. + * @return submitYmd + */ + public String getSubmitYmd() { + return submitYmd; + } + + /**Sets the submitYmd value for this Bu18WebPreNoticeDTO. + * @param submitYmd + */ + public void setSubmitYmd(String submitYmd) { + this.submitYmd = submitYmd; + } + + /**Gets the sysGubun value for this Bu18WebPreNoticeDTO. + * @return sysGubun + */ + public String getSysGubun() { + return sysGubun; + } + + /**Sets the sysGubun value for this Bu18WebPreNoticeDTO. + * @param sysGubun + */ + public void setSysGubun(String sysGubun) { + this.sysGubun = sysGubun; + } + + /**Gets the taxAmt value for this Bu18WebPreNoticeDTO. + * @return taxAmt + */ + public long getTaxAmt() { + return taxAmt; + } + + /**Sets the taxAmt value for this Bu18WebPreNoticeDTO. + * @param taxAmt + */ + public void setTaxAmt(long taxAmt) { + this.taxAmt = taxAmt; + } + + /**Gets the workYmd value for this Bu18WebPreNoticeDTO. + * @return workYmd + */ + public String getWorkYmd() { + return workYmd; + } + + /**Sets the workYmd value for this Bu18WebPreNoticeDTO. + * @param workYmd + */ + public void setWorkYmd(String workYmd) { + this.workYmd = workYmd; + } + + private Object __equalsCalc = null; + + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Bu18WebPreNoticeDTO)) return false; + Bu18WebPreNoticeDTO other = (Bu18WebPreNoticeDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.bigo, other.getBigo()) && + equals(this.bookNo, other.getBookNo()) && + equals(this.buseoCd, other.getBuseoCd()) && + equals(this.disposalContent, other.getDisposalContent()) && + equals(this.jukbalDtlAddr, other.getJukbalDtlAddr()) && + equals(this.jukbalMgrNm, other.getJukbalMgrNm()) && + equals(this.jukbalTarget, other.getJukbalTarget()) && + equals(this.jukbalTelNo, other.getJukbalTelNo()) && + equals(this.jukbalYm, other.getJukbalYm()) && + equals(this.jukbalYmdHs, other.getJukbalYmdHs()) && + equals(this.lastWorkId, other.getLastWorkId()) && + equals(this.lastWorkNm, other.getLastWorkNm()) && + equals(this.napDdtlAddr, other.getNapDdtlAddr()) && + equals(this.napDrefAddr, other.getNapDrefAddr()) && + equals(this.napDtlAddr, other.getNapDtlAddr()) && + equals(this.napDzipAddr, other.getNapDzipAddr()) && + equals(this.napDzipCd, other.getNapDzipCd()) && + equals(this.napId, other.getNapId()) && + equals(this.napMobilNo, other.getNapMobilNo()) && + equals(this.napNm, other.getNapNm()) && + equals(this.napTelNo, other.getNapTelNo()) && + equals(this.napZipAddr, other.getNapZipAddr()) && + equals(this.napZipCd, other.getNapZipCd()) && + this.preTaxAmt == other.getPreTaxAmt() && + equals(this.rawBasis, other.getRawBasis()) && + equals(this.semokCd, other.getSemokCd()) && + equals(this.sendYmd, other.getSendYmd()) && + equals(this.sidoCd, other.getSidoCd()) && + equals(this.siguCd, other.getSiguCd()) && + equals(this.submitYmd, other.getSubmitYmd()) && + equals(this.sysGubun, other.getSysGubun()) && + this.taxAmt == other.getTaxAmt() && + equals(this.workYmd, other.getWorkYmd()); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getBigo(), + getBookNo(), + getBuseoCd(), + getDisposalContent(), + getJukbalDtlAddr(), + getJukbalMgrNm(), + getJukbalTarget(), + getJukbalTelNo(), + getJukbalYm(), + getJukbalYmdHs(), + getLastWorkId(), + getLastWorkNm(), + getNapDdtlAddr(), + getNapDrefAddr(), + getNapDtlAddr(), + getNapDzipAddr(), + getNapDzipCd(), + getNapId(), + getNapMobilNo(), + getNapNm(), + getNapTelNo(), + getNapZipAddr(), + getNapZipCd(), + Long.valueOf(getPreTaxAmt()), + getRawBasis(), + getSemokCd(), + getSendYmd(), + getSidoCd(), + getSiguCd(), + getSubmitYmd(), + getSysGubun(), + Long.valueOf(getTaxAmt()), + getWorkYmd() + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrPreNoticeWebService.descriptor().type( + Bu18WebPreNoticeDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "bigo", desc.qname("", name), "string", true), + desc.field(name = "bookNo", desc.qname("", name), "string", true), + desc.field(name = "buseoCd", desc.qname("", name), "string", true), + desc.field(name = "disposalContent", desc.qname("", name), "string", true), + desc.field(name = "jukbalDtlAddr", desc.qname("", name), "string", true), + desc.field(name = "jukbalMgrNm", desc.qname("", name), "string", true), + desc.field(name = "jukbalTarget", desc.qname("", name), "string", true), + desc.field(name = "jukbalTelNo", desc.qname("", name), "string", true), + desc.field(name = "jukbalYm", desc.qname("", name), "string", true), + desc.field(name = "jukbalYmdHs", desc.qname("", name), "string", true), + desc.field(name = "lastWorkId", desc.qname("", name), "string", true), + desc.field(name = "lastWorkNm", desc.qname("", name), "string", true), + desc.field(name = "napDdtlAddr", desc.qname("", name), "string", true), + desc.field(name = "napDrefAddr", desc.qname("", name), "string", true), + desc.field(name = "napDtlAddr", desc.qname("", name), "string", true), + desc.field(name = "napDzipAddr", desc.qname("", name), "string", true), + desc.field(name = "napDzipCd", desc.qname("", name), "string", true), + desc.field(name = "napId", desc.qname("", name), "string", true), + desc.field(name = "napMobilNo", desc.qname("", name), "string", true), + desc.field(name = "napNm", desc.qname("", name), "string", true), + desc.field(name = "napTelNo", desc.qname("", name), "string", true), + desc.field(name = "napZipAddr", desc.qname("", name), "string", true), + desc.field(name = "napZipCd", desc.qname("", name), "string", true), + desc.field(name = "preTaxAmt", desc.qname("", name), "long", false), + desc.field(name = "rawBasis", desc.qname("", name), "string", true), + desc.field(name = "semokCd", desc.qname("", name), "string", true), + desc.field(name = "sendYmd", desc.qname("", name), "string", true), + desc.field(name = "sidoCd", desc.qname("", name), "string", true), + desc.field(name = "siguCd", desc.qname("", name), "string", true), + desc.field(name = "submitYmd", desc.qname("", name), "string", true), + desc.field(name = "sysGubun", desc.qname("", name), "string", true), + desc.field(name = "taxAmt", desc.qname("", name), "long", false), + desc.field(name = "workYmd", desc.qname("", name), "string", true) + }; + } + ); + + public static org.apache.axis.description.TypeDesc getTypeDesc() { + return typeDesc; + } + + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java new file mode 100644 index 0000000..a12fb9c --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java @@ -0,0 +1,501 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Bu18WebReturnInfoDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String CAccountNo; + private String FAccountNo; + private String HAccountNo; + private String IAccountNo; + private String KAccountNo; + private String NAccountNo; + private String OAccountNo; + private String PAccountNo; + private String QAccountNo; + private String SAccountNo; + private String WAccountNo; + private String buAfk; + private String enapbuNo; + private String etcColmn1; + private String etcColmn2; + private String etcColmn3; + private String etcColmn4; + private String etcColmn5; + private String noticeAk; + private String returnCode; + private String returnMsg; + + public Bu18WebReturnInfoDTO() {} + + public Bu18WebReturnInfoDTO( + String CAccountNo, + String FAccountNo, + String HAccountNo, + String IAccountNo, + String KAccountNo, + String NAccountNo, + String OAccountNo, + String PAccountNo, + String QAccountNo, + String SAccountNo, + String WAccountNo, + String buAfk, + String enapbuNo, + String etcColmn1, + String etcColmn2, + String etcColmn3, + String etcColmn4, + String etcColmn5, + String noticeAk, + String returnCode, + String returnMsg + ) { + this.CAccountNo = CAccountNo; + this.FAccountNo = FAccountNo; + this.HAccountNo = HAccountNo; + this.IAccountNo = IAccountNo; + this.KAccountNo = KAccountNo; + this.NAccountNo = NAccountNo; + this.OAccountNo = OAccountNo; + this.PAccountNo = PAccountNo; + this.QAccountNo = QAccountNo; + this.SAccountNo = SAccountNo; + this.WAccountNo = WAccountNo; + this.buAfk = buAfk; + this.enapbuNo = enapbuNo; + this.etcColmn1 = etcColmn1; + this.etcColmn2 = etcColmn2; + this.etcColmn3 = etcColmn3; + this.etcColmn4 = etcColmn4; + this.etcColmn5 = etcColmn5; + this.noticeAk = noticeAk; + this.returnCode = returnCode; + this.returnMsg = returnMsg; + } + + /**Gets the CAccountNo value for this Bu18WebReturnInfoDTO. + * @return CAccountNo + */ + public String getCAccountNo() { + return CAccountNo; + } + + /**Sets the CAccountNo value for this Bu18WebReturnInfoDTO. + * @param CAccountNo + */ + public void setCAccountNo(String CAccountNo) { + this.CAccountNo = CAccountNo; + } + + /**Gets the FAccountNo value for this Bu18WebReturnInfoDTO. + * @return FAccountNo + */ + public String getFAccountNo() { + return FAccountNo; + } + + /**Sets the FAccountNo value for this Bu18WebReturnInfoDTO. + * @param FAccountNo + */ + public void setFAccountNo(String FAccountNo) { + this.FAccountNo = FAccountNo; + } + + /**Gets the HAccountNo value for this Bu18WebReturnInfoDTO. + * @return HAccountNo + */ + public String getHAccountNo() { + return HAccountNo; + } + + /**Sets the HAccountNo value for this Bu18WebReturnInfoDTO. + * @param HAccountNo + */ + public void setHAccountNo(String HAccountNo) { + this.HAccountNo = HAccountNo; + } + + /**Gets the IAccountNo value for this Bu18WebReturnInfoDTO. + * @return IAccountNo + */ + public String getIAccountNo() { + return IAccountNo; + } + + /**Sets the IAccountNo value for this Bu18WebReturnInfoDTO. + * @param IAccountNo + */ + public void setIAccountNo(String IAccountNo) { + this.IAccountNo = IAccountNo; + } + + /**Gets the KAccountNo value for this Bu18WebReturnInfoDTO. + * @return KAccountNo + */ + public String getKAccountNo() { + return KAccountNo; + } + + /**Sets the KAccountNo value for this Bu18WebReturnInfoDTO. + * @param KAccountNo + */ + public void setKAccountNo(String KAccountNo) { + this.KAccountNo = KAccountNo; + } + + /**Gets the NAccountNo value for this Bu18WebReturnInfoDTO. + * @return NAccountNo + */ + public String getNAccountNo() { + return NAccountNo; + } + + /**Sets the NAccountNo value for this Bu18WebReturnInfoDTO. + * @param NAccountNo + */ + public void setNAccountNo(String NAccountNo) { + this.NAccountNo = NAccountNo; + } + + /**Gets the OAccountNo value for this Bu18WebReturnInfoDTO. + * @return OAccountNo + */ + public String getOAccountNo() { + return OAccountNo; + } + + /**Sets the OAccountNo value for this Bu18WebReturnInfoDTO. + * @param OAccountNo + */ + public void setOAccountNo(String OAccountNo) { + this.OAccountNo = OAccountNo; + } + + /**Gets the PAccountNo value for this Bu18WebReturnInfoDTO. + * @return PAccountNo + */ + public String getPAccountNo() { + return PAccountNo; + } + + /**Sets the PAccountNo value for this Bu18WebReturnInfoDTO. + * @param PAccountNo + */ + public void setPAccountNo(String PAccountNo) { + this.PAccountNo = PAccountNo; + } + + /**Gets the QAccountNo value for this Bu18WebReturnInfoDTO. + * @return QAccountNo + */ + public String getQAccountNo() { + return QAccountNo; + } + + /**Sets the QAccountNo value for this Bu18WebReturnInfoDTO. + * @param QAccountNo + */ + public void setQAccountNo(String QAccountNo) { + this.QAccountNo = QAccountNo; + } + + /**Gets the SAccountNo value for this Bu18WebReturnInfoDTO. + * @return SAccountNo + */ + public String getSAccountNo() { + return SAccountNo; + } + + /**Sets the SAccountNo value for this Bu18WebReturnInfoDTO. + * @param SAccountNo + */ + public void setSAccountNo(String SAccountNo) { + this.SAccountNo = SAccountNo; + } + + /**Gets the WAccountNo value for this Bu18WebReturnInfoDTO. + * @return WAccountNo + */ + public String getWAccountNo() { + return WAccountNo; + } + + /**Sets the WAccountNo value for this Bu18WebReturnInfoDTO. + * @param WAccountNo + */ + public void setWAccountNo(String WAccountNo) { + this.WAccountNo = WAccountNo; + } + + /**Gets the buAfk value for this Bu18WebReturnInfoDTO. + * @return buAfk + */ + public String getBuAfk() { + return buAfk; + } + + /**Sets the buAfk value for this Bu18WebReturnInfoDTO. + * @param buAfk + */ + public void setBuAfk(String buAfk) { + this.buAfk = buAfk; + } + + /**Gets the enapbuNo value for this Bu18WebReturnInfoDTO. + * @return enapbuNo + */ + public String getEnapbuNo() { + return enapbuNo; + } + + /**Sets the enapbuNo value for this Bu18WebReturnInfoDTO. + * @param enapbuNo + */ + public void setEnapbuNo(String enapbuNo) { + this.enapbuNo = enapbuNo; + } + + /**Gets the etcColmn1 value for this Bu18WebReturnInfoDTO. + * @return etcColmn1 + */ + public String getEtcColmn1() { + return etcColmn1; + } + + /**Sets the etcColmn1 value for this Bu18WebReturnInfoDTO. + * @param etcColmn1 + */ + public void setEtcColmn1(String etcColmn1) { + this.etcColmn1 = etcColmn1; + } + + /**Gets the etcColmn2 value for this Bu18WebReturnInfoDTO. + * @return etcColmn2 + */ + public String getEtcColmn2() { + return etcColmn2; + } + + /**Sets the etcColmn2 value for this Bu18WebReturnInfoDTO. + * @param etcColmn2 + */ + public void setEtcColmn2(String etcColmn2) { + this.etcColmn2 = etcColmn2; + } + + /**Gets the etcColmn3 value for this Bu18WebReturnInfoDTO. + * @return etcColmn3 + */ + public String getEtcColmn3() { + return etcColmn3; + } + + /**Sets the etcColmn3 value for this Bu18WebReturnInfoDTO. + * @param etcColmn3 + */ + public void setEtcColmn3(String etcColmn3) { + this.etcColmn3 = etcColmn3; + } + + /**Gets the etcColmn4 value for this Bu18WebReturnInfoDTO. + * @return etcColmn4 + */ + public String getEtcColmn4() { + return etcColmn4; + } + + /**Sets the etcColmn4 value for this Bu18WebReturnInfoDTO. + * @param etcColmn4 + */ + public void setEtcColmn4(String etcColmn4) { + this.etcColmn4 = etcColmn4; + } + + /**Gets the etcColmn5 value for this Bu18WebReturnInfoDTO. + * @return etcColmn5 + */ + public String getEtcColmn5() { + return etcColmn5; + } + + /**Sets the etcColmn5 value for this Bu18WebReturnInfoDTO. + * @param etcColmn5 + */ + public void setEtcColmn5(String etcColmn5) { + this.etcColmn5 = etcColmn5; + } + + /**Gets the noticeAk value for this Bu18WebReturnInfoDTO. + * @return noticeAk + */ + public String getNoticeAk() { + return noticeAk; + } + + /**Sets the noticeAk value for this Bu18WebReturnInfoDTO. + * @param noticeAk + */ + public void setNoticeAk(String noticeAk) { + this.noticeAk = noticeAk; + } + + /**Gets the returnCode value for this Bu18WebReturnInfoDTO. + * @return returnCode + */ + public String getReturnCode() { + return returnCode; + } + + /**Sets the returnCode value for this Bu18WebReturnInfoDTO. + * @param returnCode + */ + public void setReturnCode(String returnCode) { + this.returnCode = returnCode; + } + + /**Gets the returnMsg value for this Bu18WebReturnInfoDTO. + * @return returnMsg + */ + public String getReturnMsg() { + return returnMsg; + } + + /**Sets the returnMsg value for this Bu18WebReturnInfoDTO. + * @param returnMsg + */ + public void setReturnMsg(String returnMsg) { + this.returnMsg = returnMsg; + } + + private Object __equalsCalc = null; + + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Bu18WebReturnInfoDTO)) return false; + Bu18WebReturnInfoDTO other = (Bu18WebReturnInfoDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.CAccountNo, other.getCAccountNo()) && + equals(this.FAccountNo, other.getFAccountNo()) && + equals(this.HAccountNo, other.getHAccountNo()) && + equals(this.IAccountNo, other.getIAccountNo()) && + equals(this.KAccountNo, other.getKAccountNo()) && + equals(this.NAccountNo, other.getNAccountNo()) && + equals(this.OAccountNo, other.getOAccountNo()) && + equals(this.PAccountNo, other.getPAccountNo()) && + equals(this.QAccountNo, other.getQAccountNo()) && + equals(this.SAccountNo, other.getSAccountNo()) && + equals(this.WAccountNo, other.getWAccountNo()) && + equals(this.buAfk, other.getBuAfk()) && + equals(this.enapbuNo, other.getEnapbuNo()) && + equals(this.etcColmn1, other.getEtcColmn1()) && + equals(this.etcColmn2, other.getEtcColmn2()) && + equals(this.etcColmn3, other.getEtcColmn3()) && + equals(this.etcColmn4, other.getEtcColmn4()) && + equals(this.etcColmn5, other.getEtcColmn5()) && + equals(this.noticeAk, other.getNoticeAk()) && + equals(this.returnCode, other.getReturnCode()) && + equals(this.returnMsg, other.getReturnMsg()); + __equalsCalc = null; + return _equals; + } + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getCAccountNo(), + getFAccountNo(), + getHAccountNo(), + getIAccountNo(), + getKAccountNo(), + getNAccountNo(), + getOAccountNo(), + getPAccountNo(), + getQAccountNo(), + getSAccountNo(), + getWAccountNo(), + getBuAfk(), + getEnapbuNo(), + getEtcColmn1(), + getEtcColmn2(), + getEtcColmn3(), + getEtcColmn4(), + getEtcColmn5(), + getNoticeAk(), + getReturnCode(), + getReturnMsg() + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static org.apache.axis.description.TypeDesc typeDesc = SntrPreNoticeWebService.descriptor().type( + Bu18WebReturnInfoDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "CAccountNo", desc.qname("", name), "string", true), + desc.field(name = "FAccountNo", desc.qname("", name), "string", true), + desc.field(name = "HAccountNo", desc.qname("", name), "string", true), + desc.field(name = "IAccountNo", desc.qname("", name), "string", true), + desc.field(name = "KAccountNo", desc.qname("", name), "string", true), + desc.field(name = "NAccountNo", desc.qname("", name), "string", true), + desc.field(name = "OAccountNo", desc.qname("", name), "string", true), + desc.field(name = "PAccountNo", desc.qname("", name), "string", true), + desc.field(name = "QAccountNo", desc.qname("", name), "string", true), + desc.field(name = "SAccountNo", desc.qname("", name), "string", true), + desc.field(name = "WAccountNo", desc.qname("", name), "string", true), + desc.field(name = "buAfk", desc.qname("", name), "string", true), + desc.field(name = "enapbuNo", desc.qname("", name), "string", true), + desc.field(name = "etcColmn1", desc.qname("", name), "string", true), + desc.field(name = "etcColmn2", desc.qname("", name), "string", true), + desc.field(name = "etcColmn3", desc.qname("", name), "string", true), + desc.field(name = "etcColmn4", desc.qname("", name), "string", true), + desc.field(name = "etcColmn5", desc.qname("", name), "string", true), + desc.field(name = "noticeAk", desc.qname("", name), "string", true), + desc.field(name = "returnCode", desc.qname("", name), "string", true), + desc.field(name = "returnMsg", desc.qname("", name), "string", true) + }; + } + ); + + /** + * Return type metadata object + */ + public static org.apache.axis.description.TypeDesc getTypeDesc() { + return typeDesc; + } + + /** + * Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /** + * Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnResultDTO.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnResultDTO.java new file mode 100644 index 0000000..ed319e7 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnResultDTO.java @@ -0,0 +1,177 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; + +public class Bu18WebReturnResultDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String bookNo; + private String buAfk; + private String sendYmd; + private String sysGubun; + private String workYmd; + + public Bu18WebReturnResultDTO() {} + + public Bu18WebReturnResultDTO( + String bookNo, + String buAfk, + String sendYmd, + String sysGubun, + String workYmd + ) { + this.bookNo = bookNo; + this.buAfk = buAfk; + this.sendYmd = sendYmd; + this.sysGubun = sysGubun; + this.workYmd = workYmd; + } + + /**Gets the bookNo value for this Bu18WebReturnResultDTO. + * @return bookNo + */ + public String getBookNo() { + return bookNo; + } + + /**Sets the bookNo value for this Bu18WebReturnResultDTO. + * @param bookNo + */ + public void setBookNo(String bookNo) { + this.bookNo = bookNo; + } + + /**Gets the buAfk value for this Bu18WebReturnResultDTO. + * @return buAfk + */ + public String getBuAfk() { + return buAfk; + } + + /**Sets the buAfk value for this Bu18WebReturnResultDTO. + * @param buAfk + */ + public void setBuAfk(String buAfk) { + this.buAfk = buAfk; + } + + /**Gets the sendYmd value for this Bu18WebReturnResultDTO. + * @return sendYmd + */ + public String getSendYmd() { + return sendYmd; + } + + /**Sets the sendYmd value for this Bu18WebReturnResultDTO. + * @param sendYmd + */ + public void setSendYmd(String sendYmd) { + this.sendYmd = sendYmd; + } + + /**Gets the sysGubun value for this Bu18WebReturnResultDTO. + * @return sysGubun + */ + public String getSysGubun() { + return sysGubun; + } + + /**Sets the sysGubun value for this Bu18WebReturnResultDTO. + * @param sysGubun + */ + public void setSysGubun(String sysGubun) { + this.sysGubun = sysGubun; + } + + /**Gets the workYmd value for this Bu18WebReturnResultDTO. + * @return workYmd + */ + public String getWorkYmd() { + return workYmd; + } + + /**Sets the workYmd value for this Bu18WebReturnResultDTO. + * @param workYmd + */ + public void setWorkYmd(String workYmd) { + this.workYmd = workYmd; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Bu18WebReturnResultDTO)) return false; + Bu18WebReturnResultDTO other = (Bu18WebReturnResultDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.bookNo, other.getBookNo()) && + equals(this.buAfk, other.getBuAfk()) && + equals(this.sendYmd, other.getSendYmd()) && + equals(this.sysGubun, other.getSysGubun()) && + equals(this.workYmd, other.getWorkYmd()); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getBookNo(), + getBuAfk(), + getSendYmd(), + getSysGubun(), + getWorkYmd() + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = SntrPreNoticeWebService.descriptor().type( + Bu18WebReturnResultDTO.class, desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "bookNo", desc.qname("", name), "string", true), + desc.field(name = "buAfk", desc.qname("", name), "string", true), + desc.field(name = "sendYmd", desc.qname("", name), "string", true), + desc.field(name = "sysGubun", desc.qname("", name), "string", true), + desc.field(name = "workYmd", desc.qname("", name), "string", true) + }; + }); + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class_javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class_javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebSMSResultDTO.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebSMSResultDTO.java new file mode 100644 index 0000000..c5e6511 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebSMSResultDTO.java @@ -0,0 +1,180 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import javax.xml.namespace.QName; + +import org.apache.axis.description.ElementDesc; +import org.apache.axis.description.TypeDesc; +import org.apache.axis.encoding.Deserializer; +import org.apache.axis.encoding.Serializer; +import org.apache.axis.encoding.ser.BeanDeserializer; +import org.apache.axis.encoding.ser.BeanSerializer; + +import cokr.xit.interfaces.sntris.SntrisWSDTO; +import cokr.xit.interfaces.sntris.buga.BugaWebService; + +public class Bu18WebSMSResultDTO extends SntrisWSDTO { + private static final long serialVersionUID = 1L; + + private String bookNo; + private String buAfk; + private String sendYmd; + private String sysGubun; + private String workYmd; + + public Bu18WebSMSResultDTO() {} + + public Bu18WebSMSResultDTO( + String bookNo, + String buAfk, + String sendYmd, + String sysGubun, + String workYmd + ) { + this.bookNo = bookNo; + this.buAfk = buAfk; + this.sendYmd = sendYmd; + this.sysGubun = sysGubun; + this.workYmd = workYmd; + } + + /**Gets the bookNo value for this Bu18WebSMSResultDTO. + * @return bookNo + */ + public String getBookNo() { + return bookNo; + } + + /**Sets the bookNo value for this Bu18WebSMSResultDTO. + * @param bookNo + */ + public void setBookNo(String bookNo) { + this.bookNo = bookNo; + } + + /**Gets the buAfk value for this Bu18WebSMSResultDTO. + * @return buAfk + */ + public String getBuAfk() { + return buAfk; + } + + /**Sets the buAfk value for this Bu18WebSMSResultDTO. + * @param buAfk + */ + public void setBuAfk(String buAfk) { + this.buAfk = buAfk; + } + + /**Gets the sendYmd value for this Bu18WebSMSResultDTO. + * @return sendYmd + */ + public String getSendYmd() { + return sendYmd; + } + + /**Sets the sendYmd value for this Bu18WebSMSResultDTO. + * @param sendYmd + */ + public void setSendYmd(String sendYmd) { + this.sendYmd = sendYmd; + } + + /**Gets the sysGubun value for this Bu18WebSMSResultDTO. + * @return sysGubun + */ + public String getSysGubun() { + return sysGubun; + } + + /**Sets the sysGubun value for this Bu18WebSMSResultDTO. + * @param sysGubun + */ + public void setSysGubun(String sysGubun) { + this.sysGubun = sysGubun; + } + + /**Gets the workYmd value for this Bu18WebSMSResultDTO. + * @return workYmd + */ + public String getWorkYmd() { + return workYmd; + } + + /**Sets the workYmd value for this Bu18WebSMSResultDTO. + * @param workYmd + */ + public void setWorkYmd(String workYmd) { + this.workYmd = workYmd; + } + + private Object __equalsCalc = null; + @Override + public synchronized boolean equals(Object obj) { + if (!(obj instanceof Bu18WebSMSResultDTO)) return false; + Bu18WebSMSResultDTO other = (Bu18WebSMSResultDTO) obj; + if (this == obj) return true; + if (__equalsCalc != null) { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals = + equals(this.bookNo, other.getBookNo()) && + equals(this.buAfk, other.getBuAfk()) && + equals(this.sendYmd, other.getSendYmd()) && + equals(this.sysGubun, other.getSysGubun()) && + equals(this.workYmd, other.getWorkYmd()); + __equalsCalc = null; + return _equals; + } + + private boolean __hashCodeCalc = false; + @Override + public synchronized int hashCode() { + if (__hashCodeCalc) { + return 0; + } + __hashCodeCalc = true; + int _hashCode = hashCode( + getBookNo(), + getBuAfk(), + getSendYmd(), + getSysGubun(), + getWorkYmd() + ); + __hashCodeCalc = false; + return _hashCode; + } + + // Type metadata + private static TypeDesc typeDesc = BugaWebService.descriptor().type( + Bu18WebSMSResultDTO.class, + desc -> { + String name = ""; + return new ElementDesc[] { + desc.field(name = "bookNo", desc.qname("", name), "string", true), + desc.field(name = "buAfk", desc.qname("", name), "string", true), + desc.field(name = "sendYmd", desc.qname("", name), "string", true), + desc.field(name = "sysGubun", desc.qname("", name), "string", true), + desc.field(name = "workYmd", desc.qname("", name), "string", true), + }; + } + ); + + /**Return type metadata object + */ + public static TypeDesc getTypeDesc() { + return typeDesc; + } + + /**Get Custom Serializer + */ + public static Serializer getSerializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanSerializer(_javaType, _xmlType, typeDesc); + } + + /**Get Custom Deserializer + */ + public static Deserializer getDeserializer(String mechType, Class _javaType, QName _xmlType) { + return new BeanDeserializer(_javaType, _xmlType, typeDesc); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWS.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWS.java new file mode 100644 index 0000000..e8a4bdb --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWS.java @@ -0,0 +1,14 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import java.rmi.Remote; +import java.rmi.RemoteException; + +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; + +public interface SntrPreNoticeWS extends Remote { + Bu18WebReturnInfoDTO webInsertPreNoticeInfo(Bu18WebPreNoticeDTO bu18WebPreNoticeDTO_1) throws RemoteException; + + StatusCodeWSDTO webInsertReturnResultInfo(Bu18WebReturnResultDTO bu18WebReturnResultDTO_1) throws RemoteException; + + StatusCodeWSDTO webSMSResultInfo(Bu18WebSMSResultDTO bu18WebSMSResultDTO_1) throws RemoteException; +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSBindingStub.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSBindingStub.java new file mode 100644 index 0000000..4ed245b --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSBindingStub.java @@ -0,0 +1,257 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import java.rmi.RemoteException; +import java.util.Enumeration; +import java.util.List; +import java.util.Vector; + +import javax.xml.namespace.QName; + +import org.apache.axis.AxisEngine; +import org.apache.axis.AxisFault; +import org.apache.axis.NoEndPointException; +import org.apache.axis.client.Call; +import org.apache.axis.client.Service; +import org.apache.axis.client.Stub; +import org.apache.axis.description.OperationDesc; +import org.apache.axis.description.ParameterDesc; +import org.apache.axis.encoding.DeserializerFactory; +import org.apache.axis.encoding.SerializerFactory; +import org.apache.axis.encoding.ser.BeanDeserializerFactory; +import org.apache.axis.encoding.ser.BeanSerializerFactory; +import org.apache.axis.soap.SOAPConstants; +import org.apache.axis.utils.JavaUtils; + +import cokr.xit.interfaces.sntris.Descriptor; +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; + +public class SntrPreNoticeWSBindingStub extends Stub implements SntrPreNoticeWS { + private Vector cachedSerQNames = new Vector<>(); + private Vector> cachedSerClasses = new Vector<>(); + private Vector cachedSerFactories = new Vector<>(); + private Vector cachedDeserFactories = new Vector<>(); + + static final OperationDesc [] _operations; + static { + Descriptor descriptor = SntrPreNoticeWebService.descriptor(); + _operations = new OperationDesc[] { + descriptor.operation( + "webInsertPreNoticeInfo", Bu18WebReturnInfoDTO.class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Bu18WebPreNoticeDTO_1"), Bu18WebPreNoticeDTO.class, true) + } + ), + descriptor.operation( + "webInsertReturnResultInfo", StatusCodeWSDTO.class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Bu18WebReturnResultDTO_1"), Bu18WebReturnResultDTO.class, true) + } + ), + descriptor.operation( + "webSMSResultInfo", StatusCodeWSDTO.class, descriptor.qname("", "result"), + desc -> new ParameterDesc[] { + desc.param(desc.qname("", "Bu18WebSMSResultDTO_1"), Bu18WebSMSResultDTO.class, true) + } + ) + }; + } + + public SntrPreNoticeWSBindingStub() throws AxisFault { + this(null); + } + + public SntrPreNoticeWSBindingStub(java.net.URL endpointURL, Service service) throws AxisFault { + this(service); + super.cachedEndpoint = endpointURL; + } + + public SntrPreNoticeWSBindingStub(Service service) throws AxisFault { + if (service == null) { + super.service = new Service(); + } else { + super.service = service; + } + ((Service)super.service).setTypeMappingVersion("1.2"); + + Descriptor descriptor = SntrPreNoticeWebService.descriptor(); + List.of( + Bu18WebPreNoticeDTO.class, Bu18WebReturnInfoDTO.class, Bu18WebReturnResultDTO.class, + Bu18WebSMSResultDTO.class, StatusCodeWSDTO.class + ).forEach(klass -> { + cachedSerQNames.add(descriptor.qname(klass.getSimpleName())); + cachedSerClasses.add(klass); + cachedSerFactories.add(BeanSerializerFactory.class); + cachedDeserFactories.add(BeanDeserializerFactory.class); + }); + } + + protected Call createCall() throws RemoteException { + try { + Call _call = super._createCall(); + if (super.maintainSessionSet) { + _call.setMaintainSession(super.maintainSession); + } + if (super.cachedUsername != null) { + _call.setUsername(super.cachedUsername); + } + if (super.cachedPassword != null) { + _call.setPassword(super.cachedPassword); + } + if (super.cachedEndpoint != null) { + _call.setTargetEndpointAddress(super.cachedEndpoint); + } + if (super.cachedTimeout != null) { + _call.setTimeout(super.cachedTimeout); + } + if (super.cachedPortName != null) { + _call.setPortName(super.cachedPortName); + } + Enumeration keys = super.cachedProperties.keys(); + while (keys.hasMoreElements()) { + String key = (String) keys.nextElement(); + _call.setProperty(key, super.cachedProperties.get(key)); + } + // All the type mapping information is registered + // when the first call is made. + // The type mapping information is actually registered in + // the TypeMappingRegistry of the service, which + // is the reason why registration is only needed for the first call. + synchronized (this) { + if (firstCall()) { + // must set encoding style before registering serializers + _call.setEncodingStyle(null); + for (int i = 0; i < cachedSerFactories.size(); ++i) { + Class cls = cachedSerClasses.get(i); + QName qName = + cachedSerQNames.get(i); + Object x = cachedSerFactories.get(i); + if (x instanceof Class) { + Class sf = (Class) + cachedSerFactories.get(i); + Class df = (Class) + cachedDeserFactories.get(i); + _call.registerTypeMapping(cls, qName, sf, df, false); + } + else if (x instanceof SerializerFactory) { + SerializerFactory sf = (SerializerFactory) + cachedSerFactories.get(i); + DeserializerFactory df = (DeserializerFactory) + cachedDeserFactories.get(i); + _call.registerTypeMapping(cls, qName, sf, df, false); + } + } + } + } + return _call; + } + catch (Throwable _t) { + throw new AxisFault("Failure trying to get the Call object", _t); + } + } + + @Override + public Bu18WebReturnInfoDTO webInsertPreNoticeInfo(Bu18WebPreNoticeDTO bu18WebPreNoticeDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[0]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI("SntrPreNoticeSoapAction"); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrPreNoticeWebService", "webInsertPreNoticeInfo")); + + setRequestHeaders(_call); + setAttachments(_call); + try { Object _resp = _call.invoke(new Object[] {bu18WebPreNoticeDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } + else { + extractAttachments(_call); + try { + return (Bu18WebReturnInfoDTO) _resp; + } catch (Exception _exception) { + return (Bu18WebReturnInfoDTO) JavaUtils.convert(_resp, Bu18WebReturnInfoDTO.class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; +} + } + + @Override + public StatusCodeWSDTO webInsertReturnResultInfo(Bu18WebReturnResultDTO bu18WebReturnResultDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[1]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI("SntrPreNoticeSoapAction"); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrPreNoticeWebService", "webInsertReturnResultInfo")); + + setRequestHeaders(_call); + setAttachments(_call); + try { Object _resp = _call.invoke(new Object[] {bu18WebReturnResultDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } + else { + extractAttachments(_call); + try { + return (StatusCodeWSDTO) _resp; + } catch (Exception _exception) { + return (StatusCodeWSDTO) JavaUtils.convert(_resp, StatusCodeWSDTO.class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; +} + } + + @Override + public StatusCodeWSDTO webSMSResultInfo(Bu18WebSMSResultDTO bu18WebSMSResultDTO_1) throws RemoteException { + if (super.cachedEndpoint == null) { + throw new NoEndPointException(); + } + Call _call = createCall(); + _call.setOperation(_operations[2]); + _call.setUseSOAPAction(true); + _call.setSOAPActionURI("SntrPreNoticeSoapAction"); + _call.setEncodingStyle(null); + _call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE); + _call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); + _call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS); + _call.setOperationName(new QName("urn:SntrPreNoticeWebService", "webSMSResultInfo")); + + setRequestHeaders(_call); + setAttachments(_call); + try { Object _resp = _call.invoke(new Object[] {bu18WebSMSResultDTO_1}); + + if (_resp instanceof RemoteException) { + throw (RemoteException)_resp; + } + else { + extractAttachments(_call); + try { + return (StatusCodeWSDTO) _resp; + } catch (Exception _exception) { + return (StatusCodeWSDTO) JavaUtils.convert(_resp, StatusCodeWSDTO.class); + } + } + } catch (AxisFault axisFaultException) { + throw axisFaultException; +} + } + +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSProxy.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSProxy.java new file mode 100644 index 0000000..8c21c07 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWSProxy.java @@ -0,0 +1,65 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import java.rmi.RemoteException; + +import javax.xml.rpc.ServiceException; +import javax.xml.rpc.Stub; + +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; + +public class SntrPreNoticeWSProxy implements SntrPreNoticeWS { + private String _endpoint; + private SntrPreNoticeWS sntrPreNoticeWS; + + public SntrPreNoticeWSProxy() { + _initSntrPreNoticeWSProxy(); + } + + public SntrPreNoticeWSProxy(String endpoint) { + _endpoint = endpoint; + _initSntrPreNoticeWSProxy(); + } + + private void _initSntrPreNoticeWSProxy() { + try { + sntrPreNoticeWS = (new SntrPreNoticeWebServiceLocator()).getSntrPreNoticeWSPort(); + if (sntrPreNoticeWS != null) { + if (_endpoint != null) + ((Stub)sntrPreNoticeWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); + else + _endpoint = (String)((Stub)sntrPreNoticeWS)._getProperty("javax.xml.rpc.service.endpoint.address"); + } + } catch (ServiceException serviceException) {} + } + + public String getEndpoint() { + return _endpoint; + } + + public void setEndpoint(String endpoint) { + _endpoint = endpoint; + if (sntrPreNoticeWS != null) + ((Stub)sntrPreNoticeWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); + } + + public SntrPreNoticeWS getSntrPreNoticeWS() { + if (sntrPreNoticeWS == null) + _initSntrPreNoticeWSProxy(); + return sntrPreNoticeWS; + } + + @Override + public Bu18WebReturnInfoDTO webInsertPreNoticeInfo(Bu18WebPreNoticeDTO bu18WebPreNoticeDTO_1) throws RemoteException { + return getSntrPreNoticeWS().webInsertPreNoticeInfo(bu18WebPreNoticeDTO_1); + } + + @Override + public StatusCodeWSDTO webInsertReturnResultInfo(Bu18WebReturnResultDTO bu18WebReturnResultDTO_1) throws RemoteException { + return getSntrPreNoticeWS().webInsertReturnResultInfo(bu18WebReturnResultDTO_1); + } + + @Override + public StatusCodeWSDTO webSMSResultInfo(Bu18WebSMSResultDTO bu18WebSMSResultDTO_1) throws RemoteException { + return getSntrPreNoticeWS().webSMSResultInfo(bu18WebSMSResultDTO_1); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebService.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebService.java new file mode 100644 index 0000000..1f68c6b --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebService.java @@ -0,0 +1,20 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import java.net.URL; + +import javax.xml.rpc.Service; +import javax.xml.rpc.ServiceException; + +import cokr.xit.interfaces.sntris.Descriptor; + +public interface SntrPreNoticeWebService extends Service { + static Descriptor descriptor() { + return new Descriptor("SntrPreNoticeWebService"); + } + + String getSntrPreNoticeWSPortAddress(); + + SntrPreNoticeWS getSntrPreNoticeWSPort() throws ServiceException; + + SntrPreNoticeWS getSntrPreNoticeWSPort(URL portAddress) throws ServiceException; +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebServiceLocator.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebServiceLocator.java new file mode 100644 index 0000000..50bea36 --- /dev/null +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/SntrPreNoticeWebServiceLocator.java @@ -0,0 +1,147 @@ +package cokr.xit.interfaces.sntris.prenotice; + +import java.net.MalformedURLException; +import java.net.URL; +import java.rmi.Remote; +import java.util.Iterator; +import java.util.Set; + +import javax.xml.namespace.QName; +import javax.xml.rpc.ServiceException; + +import org.apache.axis.AxisFault; +import org.apache.axis.EngineConfiguration; +import org.apache.axis.client.Service; +import org.apache.axis.client.Stub; + +import cokr.xit.interfaces.sntris.Sntris; + +public class SntrPreNoticeWebServiceLocator extends Service implements SntrPreNoticeWebService { + private static final long serialVersionUID = 1L; + + public SntrPreNoticeWebServiceLocator() {} + + + public SntrPreNoticeWebServiceLocator(EngineConfiguration config) { + super(config); + } + + public SntrPreNoticeWebServiceLocator(String wsdlLoc, QName sName) throws ServiceException { + super(wsdlLoc, sName); + } + + // Use to get a proxy class for SntrPreNoticeWSPort + private String SntrPreNoticeWSPort_address = Sntris.get().url("prenotice"); + + @Override + public String getSntrPreNoticeWSPortAddress() { + return SntrPreNoticeWSPort_address; + } + + // The WSDD service name defaults to the port name. + private String SntrPreNoticeWSPortWSDDServiceName = "SntrPreNoticeWSPort"; + + public String getSntrPreNoticeWSPortWSDDServiceName() { + return SntrPreNoticeWSPortWSDDServiceName; + } + + public void setSntrPreNoticeWSPortWSDDServiceName(String name) { + SntrPreNoticeWSPortWSDDServiceName = name; + } + + @Override + public SntrPreNoticeWS getSntrPreNoticeWSPort() throws ServiceException { + URL endpoint; + try { + endpoint = new URL(SntrPreNoticeWSPort_address); + } catch (MalformedURLException e) { + throw new ServiceException(e); + } + return getSntrPreNoticeWSPort(endpoint); + } + + @Override + public SntrPreNoticeWS getSntrPreNoticeWSPort(URL portAddress) throws ServiceException { + try { + SntrPreNoticeWSBindingStub _stub = new SntrPreNoticeWSBindingStub(portAddress, this); + _stub.setPortName(getSntrPreNoticeWSPortWSDDServiceName()); + return _stub; + } catch (AxisFault e) { + return null; + } + } + + public void setSntrPreNoticeWSPortEndpointAddress(String address) { + SntrPreNoticeWSPort_address = address; + } + + /** + * For the given interface, get the stub implementation. + * If this service has no port for the given interface, + * then ServiceException is thrown. + */ + @Override + public Remote getPort(Class serviceEndpointInterface) throws ServiceException { + try { + if (SntrPreNoticeWS.class.isAssignableFrom(serviceEndpointInterface)) { + SntrPreNoticeWSBindingStub _stub = new SntrPreNoticeWSBindingStub(new URL(SntrPreNoticeWSPort_address), this); + _stub.setPortName(getSntrPreNoticeWSPortWSDDServiceName()); + return _stub; + } + } catch (Throwable t) { + throw new ServiceException(t); + } + throw new ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName())); + } + + /** + * For the given interface, get the stub implementation. + * If this service has no port for the given interface, + * then ServiceException is thrown. + */ + @Override + public Remote getPort(QName portName, Class serviceEndpointInterface) throws ServiceException { + if (portName == null) { + return getPort(serviceEndpointInterface); + } + String inputPortName = portName.getLocalPart(); + if ("SntrPreNoticeWSPort".equals(inputPortName)) { + return getSntrPreNoticeWSPort(); + } + else { + Remote _stub = getPort(serviceEndpointInterface); + ((Stub) _stub).setPortName(portName); + return _stub; + } + } + + @Override + public QName getServiceName() { + return new QName("urn:SntrPreNoticeWebService", "SntrPreNoticeWebService"); + } + + private Set ports = Set.of(SntrPreNoticeWebService.descriptor().qname("SntrPreNoticeWSPort")); + + @Override + public Iterator getPorts() { + return ports.iterator(); + } + + /** + * Set the endpoint address for the specified port name. + */ + public void setEndpointAddress(String portName, String address) throws ServiceException { + if ("SntrPreNoticeWSPort".equals(portName)) { + setSntrPreNoticeWSPortEndpointAddress(address); + } else { // Unknown Port Name + throw new ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName); + } + } + + /** + * Set the endpoint address for the specified port name. + */ + public void setEndpointAddress(QName portName, String address) throws ServiceException { + setEndpointAddress(portName.getLocalPart(), address); + } +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/service/SntrisService.java b/src/main/java/cokr/xit/interfaces/sntris/service/SntrisService.java index 8a31745..5877669 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/service/SntrisService.java +++ b/src/main/java/cokr/xit/interfaces/sntris/service/SntrisService.java @@ -1,138 +1,12 @@ package cokr.xit.interfaces.sntris.service; -import cokr.xit.interfaces.sntris.buga.Bu04BugaExtWSDTO; +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; import cokr.xit.interfaces.sntris.buga.Bu04BugaWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04GyuljeInfoDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SemokWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SemokWSRACSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SimpleBugaETCWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SimpleBugaWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04UserInfoWSDTO; -import cokr.xit.interfaces.sntris.buga.StatusCodeWSDTO; +import cokr.xit.interfaces.sntris.prenotice.Bu18WebPreNoticeDTO; +import cokr.xit.interfaces.sntris.prenotice.Bu18WebReturnInfoDTO; public interface SntrisService { - /**사용자 인사대체키(13자리)를 주면 해당사용자의 정보를 반환한다. - * @param userId 인사대체키 - * @return 사용자 정보 - */ - Bu04UserInfoWSDTO getUserInfo(String userId); + StatusCodeWSDTO register(String userId, Bu04BugaWSDTO issue); - /**세목코드를 주면 해당 세목 목록을 반환한다. - * @param siguCd 시구코드 - * @param buseoCd 부서코드 - * @return 세목 목록 - */ - Bu04SemokWSDTO[] getListSemokInfo(String siguCd, String buseoCd); - - /**세목코드를 주면 해당 세목정보를 반환한다. - * @param siguCd 시구코드 - * @param buseoCd 부서코드 - * @param semokCd 세목코드 - * @return 세목정보 - */ - Bu04SemokWSDTO getSemokInfo(String siguCd, String buseoCd, String semokCd); - - /**세목코드를 주면 해당 세목정보(기존 세목정보의 확장, 시스템 구분명: RACS)를 반환한다. - * @param siguCd 시구코드 - * @param buseoCd 부서코드 - * @param semokCd 세목코드 - * @return 세목정보(기존 세목정보의 확장, 시스템 구분명: RACS) - */ - Bu04SemokWSRACSDTO getSemokInfoRACS(String siguCd, String buseoCd, String semokCd); - - /**과세번호를 생성하여 반환한다. - * @param siguCd 시구코드 - * @param semokCd 세목코드 - * @param taxYm 과세년월 - * @param taxGubun 과세구분 - * @return 과세번호 - */ - String getNewTaxNo(String siguCd, String semokCd, String taxYm, String taxGubun); - - /**부과/체납구분, 시스템구분값, 물건명에 해당되는 부과 목록을 반환한다. - * @param buchGubun 부과(1) 체납(2) 구분 - * @param sysGubun 시스템 구분 - * @param mulNm 물건명 - * @return 부과 목록 - */ - Bu04SimpleBugaWSDTO[] getListSimpleBuga(String buchGubun, String sysGubun, String mulNm); - - /**해당 과세번호에 해당되는 부과정보(고지번호 29자리 등), 전용계좌번호 등을 반환한다. - * @param buchGubun 부과(1) 체납(2) 구분 - * @param sysGubun 시스템 구분 - * @param siguCd 시구 코드 - * @param semokCd 세목 코드 - * @param taxYm 과세년월 - * @param taxGubun 과세구분 - * @param taxNo 과세번호 - * @return 부과 정보 - */ - Bu04SimpleBugaETCWSDTO getSimpleBuga(String buchGubun, String sysGubun, String siguCd, String semokCd, String taxYm, String taxGubun, String taxNo); - - /**부과를 등록하고 결과를 반환한다. - * @param issue 부과 정보 - * @return 결과 - */ - StatusCodeWSDTO insertBugaRegist(Bu04BugaWSDTO issue); - - /**부과를 등록하고 결과를 반환한다. - * @param issue 부과 정보 - * @return 결과 - */ - StatusCodeWSDTO insertBugaRegistExt(Bu04BugaExtWSDTO issue); - - /**원천시스템에서 해당과세건의 부과정보 수정 가능 여부를 반환한다. - * (징수결정결의가 된 상태에서는 부과자료의 수정/삭제가 불가하다.) - * @param siguCd 시구코드 - * @param buseoCd 부서코드 - * @param semokCd 세목코드 - * @param taxYm 과세년월 - * @param taxGubun 과세구분 - * @param taxNo 과세번호 - * @return 수정가능 여부 - */ - boolean isCheckBugaUpdate(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo); - - /**해당부과자료 삭제 (사용불가 – 기존 서비스 제공된 시스템만 사용 가능) - * @param siguCd 시구코드 - * @param buseoCd 부서코드 - * @param semokCd 세목코드 - * @param taxYm 과세년월 - * @param taxGubun 과세구분 - * @param taxNo 과세번호 - * @param lastWorkId 담당자 인사대체키 - * @param sysGubun 시스템 구분 - * @return 삭제 결과 - */ - StatusCodeWSDTO deleteBuga(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String lastWorkId, String sysGubun); - - /**부과정보에 비과세여부를 수정한다. - * @param siguCd 시구코드 - * @param buseoCd 부서코드 - * @param semokCd 세목코드 - * @param taxYm 과세년월 - * @param taxGubun 과세구분 - * @param taxNo 과세번호 - * @param buDcGubun - * @return 등록 결과 - */ - StatusCodeWSDTO biGwaSeRegistWS(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String buDcGubun); - - /**결재상태 정보를 조회한다. - * @param siguCd 시구코드 - * @param semokCd 세목코드 - * @param taxYm 과세년월 - * @param taxGubun 과세구분 - * @param buseoCd 부서코드 - * @param taxNo 과세번호 - * @param lastWorkId 담당자 인사대체키 - * @return 결재상태 정보 - */ - Bu04GyuljeInfoDTO getGyuljeInfo(String siguCd, String semokCd, String taxYm, String taxGubun, String buseoCd, String taxNo, String lastWorkId); - - /**부가정보의 납기일을 수정한다. - * @param issue 부가정보 - * @return 수정 결과 - */ - StatusCodeWSDTO updateNapgiYmd(Bu04BugaWSDTO issue); + Bu18WebReturnInfoDTO register(Bu18WebPreNoticeDTO prenotice); } \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/service/bean/SntrisServiceBean.java b/src/main/java/cokr/xit/interfaces/sntris/service/bean/SntrisServiceBean.java index dd776cc..15680fd 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/service/bean/SntrisServiceBean.java +++ b/src/main/java/cokr/xit/interfaces/sntris/service/bean/SntrisServiceBean.java @@ -3,146 +3,32 @@ package cokr.xit.interfaces.sntris.service.bean; import org.springframework.stereotype.Service; import cokr.xit.foundation.component.AbstractServiceBean; -import cokr.xit.interfaces.sntris.buga.Bu04BugaExtWSDTO; +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; import cokr.xit.interfaces.sntris.buga.Bu04BugaWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04GyuljeInfoDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SemokWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SemokWSRACSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SimpleBugaETCWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SimpleBugaWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04UserInfoWSDTO; import cokr.xit.interfaces.sntris.buga.BugaWS; import cokr.xit.interfaces.sntris.buga.BugaWSProxy; -import cokr.xit.interfaces.sntris.buga.StatusCodeWSDTO; +import cokr.xit.interfaces.sntris.prenotice.Bu18WebPreNoticeDTO; +import cokr.xit.interfaces.sntris.prenotice.Bu18WebReturnInfoDTO; +import cokr.xit.interfaces.sntris.prenotice.SntrPreNoticeWS; +import cokr.xit.interfaces.sntris.prenotice.SntrPreNoticeWSProxy; import cokr.xit.interfaces.sntris.service.SntrisService; @Service("sntrisService") public class SntrisServiceBean extends AbstractServiceBean implements SntrisService { private BugaWS bugaWS = new BugaWSProxy(); + private SntrPreNoticeWS prenoticeWS = new SntrPreNoticeWSProxy(); @Override - public Bu04UserInfoWSDTO getUserInfo(String userId) { - try { - return bugaWS.getUserInfo(userId); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public Bu04SemokWSDTO[] getListSemokInfo(String siguCd, String buseoCd) { - try { - return bugaWS.getListSemokInfo(siguCd, buseoCd); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public Bu04SemokWSDTO getSemokInfo(String siguCd, String buseoCd, String semokCd) { - try { - return bugaWS.getSemokInfo(siguCd, buseoCd, semokCd); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public Bu04SemokWSRACSDTO getSemokInfoRACS(String siguCd, String buseoCd, String semokCd) { - try { - return bugaWS.getSemokInfoRACS(siguCd, buseoCd, semokCd); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public String getNewTaxNo(String siguCd, String semokCd, String taxYm, String taxGubun) { - try { - return bugaWS.getNewTaxNo(siguCd, semokCd, taxYm, taxGubun); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public Bu04SimpleBugaWSDTO[] getListSimpleBuga(String buchGubun, String sysGubun, String mulNm) { - try { - return bugaWS.getListSimpleBuga(buchGubun, sysGubun, mulNm); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public Bu04SimpleBugaETCWSDTO getSimpleBuga(String buchGubun, String sysGubun, String siguCd, String semokCd, String taxYm, String taxGubun, String taxNo) { - try { - return bugaWS.getSimpleBuga(buchGubun, sysGubun, siguCd, semokCd, taxYm, taxGubun, taxNo); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public StatusCodeWSDTO insertBugaRegist(Bu04BugaWSDTO issue) { - try { - return bugaWS.insertBugaRegist(issue); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public StatusCodeWSDTO insertBugaRegistExt(Bu04BugaExtWSDTO issue) { - try { - return bugaWS.insertBugaRegistExt(issue); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public boolean isCheckBugaUpdate(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo) { - try { - return bugaWS.isCheckBugaUpdate(siguCd, buseoCd, semokCd, taxYm, taxGubun, taxNo); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public StatusCodeWSDTO deleteBuga(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String lastWorkId, String sysGubun) { - try { - return bugaWS.deleteBuga(siguCd, buseoCd, semokCd, taxYm, taxGubun, taxNo, lastWorkId, sysGubun); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public StatusCodeWSDTO biGwaSeRegistWS(String siguCd, String buseoCd, String semokCd, String taxYm, String taxGubun, String taxNo, String buDcGubun) { - try { - return bugaWS.biGwaSeRegistWS(siguCd, buseoCd, semokCd, taxYm, taxGubun, taxNo, buDcGubun); - } catch (Exception e) { - throw applicationException(e); - } - } - - @Override - public Bu04GyuljeInfoDTO getGyuljeInfo(String siguCd, String semokCd, String taxYm, String taxGubun, String buseoCd, String taxNo, String lastWorkId) { - try { - return bugaWS.getGyuljeInfo(siguCd, semokCd, taxYm, taxGubun, buseoCd, taxNo, lastWorkId); - } catch (Exception e) { - throw applicationException(e); - } + public StatusCodeWSDTO register(String userId, Bu04BugaWSDTO issue) { + return bugaWS.register(userId, issue); } @Override - public StatusCodeWSDTO updateNapgiYmd(Bu04BugaWSDTO issue) { + public Bu18WebReturnInfoDTO register(Bu18WebPreNoticeDTO prenotice) { try { - return bugaWS.updateNapgiYmd(issue); + return prenoticeWS.webInsertPreNoticeInfo(prenotice); } catch (Exception e) { - throw applicationException(e); + throw runtimeException(e); } } } \ No newline at end of file diff --git a/src/main/java/cokr/xit/interfaces/sntris/web/SntrisController.java b/src/main/java/cokr/xit/interfaces/sntris/web/SntrisController.java index 866fab4..f367fcb 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/web/SntrisController.java +++ b/src/main/java/cokr/xit/interfaces/sntris/web/SntrisController.java @@ -4,171 +4,33 @@ import javax.annotation.Resource; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import cokr.xit.foundation.web.AbstractController; -import cokr.xit.interfaces.sntris.buga.Bu04BugaExtWSDTO; +import cokr.xit.interfaces.sntris.StatusCodeWSDTO; import cokr.xit.interfaces.sntris.buga.Bu04BugaWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04GyuljeInfoDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SemokWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SemokWSRACSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SimpleBugaETCWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04SimpleBugaWSDTO; -import cokr.xit.interfaces.sntris.buga.Bu04UserInfoWSDTO; -import cokr.xit.interfaces.sntris.buga.StatusCodeWSDTO; +import cokr.xit.interfaces.sntris.prenotice.Bu18WebPreNoticeDTO; +import cokr.xit.interfaces.sntris.prenotice.Bu18WebReturnInfoDTO; import cokr.xit.interfaces.sntris.service.SntrisService; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Parameter; @RestController -@RequestMapping(name = "서울 세외수입 부과 연계", value = "/intf/sntris", produces = MediaType.APPLICATION_JSON_VALUE) +@RequestMapping(name = "서울 세외수입 연계", value = "/intf/sntris", produces = MediaType.APPLICATION_JSON_VALUE) public class SntrisController extends AbstractController { @Resource(name = "sntrisService") private SntrisService sntrisService; - @PostMapping(name = "사용자 정보 조회", value = "/userInfo") - @Operation(summary = "사용자 정보 조회", tags = "사용자 정보") - public Bu04UserInfoWSDTO getUserInfo(@Parameter(description = "사용자 인사대체키") String userId) { - return sntrisService.getUserInfo(userId); + @PostMapping(name = "부과 등록", value = "/buga/register") + @Operation(summary = "부과 등록", tags = "부과") + public StatusCodeWSDTO register(@Parameter(description = "사용자 인사대체키") String userId, @Parameter(description = "부과정보") Bu04BugaWSDTO issue) { + return sntrisService.register(userId, null); } - @PostMapping(name = "세목목록 조회", value = "/semok/list") - @Operation(summary = "세목목록 조회", tags = "세목정보") - public Bu04SemokWSDTO[] getListSemokInfo( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "부서코드") String buseoCd - ) { - return sntrisService.getListSemokInfo(siguCd, buseoCd); - } - - @PostMapping(name = "세목정보 조회", value = "/semok/info") - @Operation(summary = "세목정보 조회", tags = "세목정보") - public Bu04SemokWSDTO getSemokInfo( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "부서코드") String buseoCd, - @Parameter(description = "세목코드") String semokCd - ) { - return sntrisService.getSemokInfo(siguCd, buseoCd, semokCd); - } - - @PostMapping(name = "세목정보(RACS) 조회", value = "/semok/infoRACS") - @Operation(summary = "세목정보(RACS) 조회", tags = "세목정보") - public Bu04SemokWSRACSDTO getSemokInfoRACS( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "부서코드") String buseoCd, - @Parameter(description = "세목코드") String semokCd - ) { - return sntrisService.getSemokInfoRACS(siguCd, buseoCd, semokCd); - } - - @PostMapping(name = "과세번호 생성", value = "/newTaxNo") - @Operation(summary = "과세번호 생성", tags = "과세") - public String getNewTaxNo( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "세목코드") String semokCd, - @Parameter(description = "과세년월") String taxYm, - @Parameter(description = "과세구분") String taxGubun - ) { - return sntrisService.getNewTaxNo(siguCd, semokCd, taxYm, taxGubun); - } - - @PostMapping(name = "단순 부과목록 조회", value = "/bugwa/list") - @Operation(summary = "단순 부과목록 조회", tags = "부과정보") - public Bu04SimpleBugaWSDTO[] getListSimpleBuga( - @Parameter(description = "부과 체납 구분") String buchGubun, - @Parameter(description = "시스템 구분") String sysGubun, - @Parameter(description = "물건명") String mulNm - ) { - return sntrisService.getListSimpleBuga(buchGubun, sysGubun, mulNm); - } - - @PostMapping(name = "단순 부과정보 조회", value = "/bugwa/info") - @Operation(summary = "단순 부과정보 조회", tags = "부과정보") - public Bu04SimpleBugaETCWSDTO getSimpleBuga( - @Parameter(description = "부과 체납 구분") String buchGubun, - @Parameter(description = "시스템 구분") String sysGubun, - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "세목코드") String semokCd, - @Parameter(description = "과세년월") String taxYm, - @Parameter(description = "과세구분") String taxGubun, - @Parameter(description = "과세번호") String taxNo - ) { - return sntrisService.getSimpleBuga(buchGubun, sysGubun, siguCd, semokCd, taxYm, taxGubun, taxNo); - } - - @PostMapping(name = "부과 등록", value = "/bugwa/regist") - @Operation(summary = "부과 등록", tags = "부과정보") - public StatusCodeWSDTO insertBugaRegist(@Parameter(description = "부과정보") @RequestBody Bu04BugaWSDTO issue) { - return sntrisService.insertBugaRegist(issue); - } - - @PostMapping(name = "부과 등록(확장)", value = "/bugwa/registExt") - @Operation(summary = "부과 등록(확장)", tags = "부과정보") - public StatusCodeWSDTO insertBugaRegistExt(@Parameter(description = "부과정보") @RequestBody Bu04BugaExtWSDTO issue) { - return sntrisService.insertBugaRegistExt(issue); - } - - @PostMapping(name = "부과수정 가능여부", value = "/bugwa/checkUpdate") - @Operation(summary = "부과수정 가능여부", tags = "부과정보") - public boolean isCheckBugaUpdate( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "부서코드") String buseoCd, - @Parameter(description = "세목코드") String semokCd, - @Parameter(description = "과세년월") String taxYm, - @Parameter(description = "과세구분") String taxGubun, - @Parameter(description = "과세번호") String taxNo - ) { - return sntrisService.isCheckBugaUpdate(siguCd, buseoCd, semokCd, taxYm, taxGubun, taxNo); - } - - @PostMapping(name = "비과세 등록", value = "/bigwase/regist") - @Operation(summary = "비과세 등록", tags = "과세") - public StatusCodeWSDTO biGwaSeRegistWS( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "부서코드") String buseoCd, - @Parameter(description = "세목코드") String semokCd, - @Parameter(description = "과세년월") String taxYm, - @Parameter(description = "과세구분") String taxGubun, - @Parameter(description = "과세번호") String taxNo, - @Parameter(description = "") String buDcGubun - ) { - return sntrisService.biGwaSeRegistWS(siguCd, buseoCd, semokCd, taxYm, taxGubun, taxNo, buDcGubun); - } - - @PostMapping(name = "부과 삭제", value = "/bugwa/delete") - @Operation(summary = "부과 삭제", tags = "부과정보") - public StatusCodeWSDTO deleteBuga( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "부서코드") String buseoCd, - @Parameter(description = "세목코드") String semokCd, - @Parameter(description = "과세년월") String taxYm, - @Parameter(description = "과세구분") String taxGubun, - @Parameter(description = "과세번호") String taxNo, - @Parameter(description = "담당자 인사대체키") String lastWorkId, - @Parameter(description = "시스템 구분") String sysGubun - ) { - return sntrisService.deleteBuga(siguCd, buseoCd, semokCd, taxYm, taxGubun, taxNo, lastWorkId, sysGubun); - } - - @PostMapping(name = "결재정보 조회", value = "/gyuljeInfo") - @Operation(summary = "결재정보 조회", tags = "결재정보") - public Bu04GyuljeInfoDTO getGyuljeInfo( - @Parameter(description = "시구코드") String siguCd, - @Parameter(description = "세목코드") String semokCd, - @Parameter(description = "과세년월") String taxYm, - @Parameter(description = "과세구분") String taxGubun, - @Parameter(description = "부서코드") String buseoCd, - @Parameter(description = "과세번호") String taxNo, - @Parameter(description = "담당자 인사대체키") String lastWorkId - ) { - return sntrisService.getGyuljeInfo(siguCd, semokCd, taxYm, taxGubun, buseoCd, taxNo, lastWorkId); - } - - @PostMapping(name = "납기일 수정", value = "/napgi/update") - @Operation(summary = "납기일 수정", tags = "납기일") - public StatusCodeWSDTO updateNapgiYmd(@Parameter(description = "부과정보") @RequestBody Bu04BugaWSDTO issue) { - return sntrisService.updateNapgiYmd(issue); + @PostMapping(name = "과태료대장 등록", value = "/prenotice/register") + @Operation(summary = "과태료대장 등록", tags = "과태료대장") + public Bu18WebReturnInfoDTO register(@Parameter(description = "부과정보") Bu18WebPreNoticeDTO prenotice) { + return sntrisService.register(prenotice); } } \ No newline at end of file diff --git a/src/main/resources/intf-conf/xit-sntris.conf b/src/main/resources/intf-conf/xit-sntris.conf index 830f40b..d1f9c35 100644 --- a/src/main/resources/intf-conf/xit-sntris.conf +++ b/src/main/resources/intf-conf/xit-sntris.conf @@ -1,4 +1,21 @@ { - "nxrpImposition": "", /* 세외수입 부과 wsdl url */ - "nxrpSeizure": "" /* 세외수입 압류 wsdl url */ + "host": "http://98.33.4.167:8082", +/* 운영: http://98.33.4.164 + 개발: http://98.33.4.167:8082 + */ + + "apis": [ + { /* 부과 */ + "name": "imposition", + "uri": "/BugaWebService/BugaWebService" + }, + { /* 사전통보 */ + "name": "prenotice", + "uri": "/SntrPreNoticeWebService/SntrPreNoticeWebService" + }, + { /* 사전통보(파일연계) */ + "name": "fileoffer", + "uri": "/SntrFileOfferWebService/SntrFileOfferWebService" + } + ] } \ No newline at end of file