prenotice, fileoffer 추가

master
mjkhan21 9 months ago
parent 5d270c1580
commit 124a9558ca

@ -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<String> 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<Descriptor, ElementDesc[]> 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<Descriptor, ParameterDesc[]> 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;
}
}

@ -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<String, DataObject> apis;
public void setHost(String host) {
this.host = host;
}
public DataObject api(String name) {
return apis.get(name);
}
public void setApis(List<DataObject> 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;
}
}

@ -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;
}
}

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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

@ -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;
* ------- ------------- ----------------------
* </pre>
*/
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() {

@ -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;
* </pre>
*/
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);
}
}
}

@ -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 :

@ -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<Object> cachedSerFactories = new Vector<>();
private Vector<Object> 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);

@ -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;
* </pre>
*/
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;
}
}

@ -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<QName> 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;
}
}

@ -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<String> 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;
}
}

@ -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"));
}
}

@ -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;
}

@ -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<QName> cachedSerQNames = new Vector<>();
private Vector<Class<?>> cachedSerClasses = new Vector<>();
private Vector<Object> cachedSerFactories = new Vector<>();
private Vector<Object> 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;
}
}
}

@ -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);
}
}

@ -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;
}

@ -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<QName> 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);
}
}

@ -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);
}
}

@ -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);
}
}

@ -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);
}
}

@ -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);
}
}

@ -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);
}
}

@ -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;
}

@ -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<QName> cachedSerQNames = new Vector<>();
private Vector<Class<?>> cachedSerClasses = new Vector<>();
private Vector<Object> cachedSerFactories = new Vector<>();
private Vector<Object> 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;
}
}
}

@ -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);
}
}

@ -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;
}

@ -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<QName> 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);
}
}

@ -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);
}

@ -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);
}
}
}

@ -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);
}
}

@ -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"
}
]
}
Loading…
Cancel
Save