Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
srm
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
aship
srm
Commits
8f17e245
Commit
8f17e245
authored
Aug 12, 2019
by
顾俭
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gen wsdl request & response
parent
80aedae8
Changes
12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
863 additions
and
0 deletions
+863
-0
ObjectFactory.java
...tw/com/dsc/tiptop/tiptopservicegateway/ObjectFactory.java
+182
-0
SRMFahuoconfirmRequestSRMFahuoconfirmRequest.java
...gateway/SRMFahuoconfirmRequestSRMFahuoconfirmRequest.java
+62
-0
SRMFahuoconfirmResponseSRMFahuoconfirmResponse.java
...teway/SRMFahuoconfirmResponseSRMFahuoconfirmResponse.java
+62
-0
SRMGenbarcodeRequestSRMGenbarcodeRequest.java
...vicegateway/SRMGenbarcodeRequestSRMGenbarcodeRequest.java
+62
-0
SRMGenbarcodeResponseSRMGenbarcodeResponse.java
...cegateway/SRMGenbarcodeResponseSRMGenbarcodeResponse.java
+62
-0
SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest.java
...SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest.java
+62
-0
SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse.java
...MGetbarcodestatusResponseSRMGetbarcodestatusResponse.java
+62
-0
SRMPrintbarcodeRequestSRMPrintbarcodeRequest.java
...gateway/SRMPrintbarcodeRequestSRMPrintbarcodeRequest.java
+62
-0
SRMPrintbarcodeResponseSRMPrintbarcodeResponse.java
...teway/SRMPrintbarcodeResponseSRMPrintbarcodeResponse.java
+62
-0
SRMVoidbarcodeRequestSRMVoidbarcodeRequest.java
...cegateway/SRMVoidbarcodeRequestSRMVoidbarcodeRequest.java
+62
-0
SRMVoidbarcodeResponseSRMVoidbarcodeResponse.java
...gateway/SRMVoidbarcodeResponseSRMVoidbarcodeResponse.java
+62
-0
TIPTOPServiceGateWayPortType.java
...op/tiptopservicegateway/TIPTOPServiceGateWayPortType.java
+61
-0
No files found.
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/ObjectFactory.java
View file @
8f17e245
This diff is collapsed.
Click to expand it.
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMFahuoconfirmRequestSRMFahuoconfirmRequest.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_fahuoconfirmRequest_SRM_fahuoconfirmRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_fahuoconfirmRequest_SRM_fahuoconfirmRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_fahuoconfirmRequest_SRM_fahuoconfirmRequest"
,
propOrder
=
{
"request"
})
public
class
SRMFahuoconfirmRequestSRMFahuoconfirmRequest
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
request
;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getRequest
()
{
return
request
;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setRequest
(
String
value
)
{
this
.
request
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMFahuoconfirmResponseSRMFahuoconfirmResponse.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_fahuoconfirmResponse_SRM_fahuoconfirmResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_fahuoconfirmResponse_SRM_fahuoconfirmResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_fahuoconfirmResponse_SRM_fahuoconfirmResponse"
,
propOrder
=
{
"response"
})
public
class
SRMFahuoconfirmResponseSRMFahuoconfirmResponse
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
response
;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getResponse
()
{
return
response
;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setResponse
(
String
value
)
{
this
.
response
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMGenbarcodeRequestSRMGenbarcodeRequest.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_genbarcodeRequest_SRM_genbarcodeRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_genbarcodeRequest_SRM_genbarcodeRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_genbarcodeRequest_SRM_genbarcodeRequest"
,
propOrder
=
{
"request"
})
public
class
SRMGenbarcodeRequestSRMGenbarcodeRequest
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
request
;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getRequest
()
{
return
request
;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setRequest
(
String
value
)
{
this
.
request
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMGenbarcodeResponseSRMGenbarcodeResponse.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_genbarcodeResponse_SRM_genbarcodeResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_genbarcodeResponse_SRM_genbarcodeResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_genbarcodeResponse_SRM_genbarcodeResponse"
,
propOrder
=
{
"response"
})
public
class
SRMGenbarcodeResponseSRMGenbarcodeResponse
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
response
;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getResponse
()
{
return
response
;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setResponse
(
String
value
)
{
this
.
response
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_getbarcodestatusRequest_SRM_getbarcodestatusRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_getbarcodestatusRequest_SRM_getbarcodestatusRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_getbarcodestatusRequest_SRM_getbarcodestatusRequest"
,
propOrder
=
{
"request"
})
public
class
SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
request
;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getRequest
()
{
return
request
;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setRequest
(
String
value
)
{
this
.
request
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_getbarcodestatusResponse_SRM_getbarcodestatusResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_getbarcodestatusResponse_SRM_getbarcodestatusResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_getbarcodestatusResponse_SRM_getbarcodestatusResponse"
,
propOrder
=
{
"response"
})
public
class
SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
response
;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getResponse
()
{
return
response
;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setResponse
(
String
value
)
{
this
.
response
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMPrintbarcodeRequestSRMPrintbarcodeRequest.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_printbarcodeRequest_SRM_printbarcodeRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_printbarcodeRequest_SRM_printbarcodeRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_printbarcodeRequest_SRM_printbarcodeRequest"
,
propOrder
=
{
"request"
})
public
class
SRMPrintbarcodeRequestSRMPrintbarcodeRequest
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
request
;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getRequest
()
{
return
request
;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setRequest
(
String
value
)
{
this
.
request
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMPrintbarcodeResponseSRMPrintbarcodeResponse.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_printbarcodeResponse_SRM_printbarcodeResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_printbarcodeResponse_SRM_printbarcodeResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_printbarcodeResponse_SRM_printbarcodeResponse"
,
propOrder
=
{
"response"
})
public
class
SRMPrintbarcodeResponseSRMPrintbarcodeResponse
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
response
;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getResponse
()
{
return
response
;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setResponse
(
String
value
)
{
this
.
response
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMVoidbarcodeRequestSRMVoidbarcodeRequest.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_voidbarcodeRequest_SRM_voidbarcodeRequest complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_voidbarcodeRequest_SRM_voidbarcodeRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="request" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_voidbarcodeRequest_SRM_voidbarcodeRequest"
,
propOrder
=
{
"request"
})
public
class
SRMVoidbarcodeRequestSRMVoidbarcodeRequest
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
request
;
/**
* 获取request属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getRequest
()
{
return
request
;
}
/**
* 设置request属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setRequest
(
String
value
)
{
this
.
request
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/SRMVoidbarcodeResponseSRMVoidbarcodeResponse.java
0 → 100755
View file @
8f17e245
package
tw
.
com
.
dsc
.
tiptop
.
tiptopservicegateway
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlType
;
/**
* <p>SRM_voidbarcodeResponse_SRM_voidbarcodeResponse complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* <complexType name="SRM_voidbarcodeResponse_SRM_voidbarcodeResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlType
(
name
=
"SRM_voidbarcodeResponse_SRM_voidbarcodeResponse"
,
propOrder
=
{
"response"
})
public
class
SRMVoidbarcodeResponseSRMVoidbarcodeResponse
{
@XmlElement
(
required
=
true
,
nillable
=
true
)
protected
String
response
;
/**
* 获取response属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public
String
getResponse
()
{
return
response
;
}
/**
* 设置response属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public
void
setResponse
(
String
value
)
{
this
.
response
=
value
;
}
}
src/main/java/tw/com/dsc/tiptop/tiptopservicegateway/TIPTOPServiceGateWayPortType.java
View file @
8f17e245
...
@@ -141,4 +141,65 @@ public interface TIPTOPServiceGateWayPortType {
...
@@ -141,4 +141,65 @@ public interface TIPTOPServiceGateWayPortType {
@WebParam
(
name
=
"SRM_fahuochehuiRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
@WebParam
(
name
=
"SRM_fahuochehuiRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
SRMFahuochehuiRequestSRMFahuochehuiRequest
parameters
);
SRMFahuochehuiRequestSRMFahuochehuiRequest
parameters
);
// 新增防伪码接口
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMFahuoconfirmResponseSRMFahuoconfirmResponse
*/
@WebMethod
(
operationName
=
"SRM_fahuoconfirm"
)
@WebResult
(
name
=
"SRM_fahuoconfirmResponse"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
public
SRMFahuoconfirmResponseSRMFahuoconfirmResponse
srmFahuoconfirm
(
@WebParam
(
name
=
"SRM_fahuoconfirmRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
SRMFahuoconfirmRequestSRMFahuoconfirmRequest
parameters
);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMGenbarcodeResponseSRMGenbarcodeResponse
*/
@WebMethod
(
operationName
=
"SRM_genbarcode"
)
@WebResult
(
name
=
"SRM_genbarcodeResponse"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
public
SRMGenbarcodeResponseSRMGenbarcodeResponse
srmGenbarcode
(
@WebParam
(
name
=
"SRM_genbarcodeRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
SRMGenbarcodeRequestSRMGenbarcodeRequest
parameters
);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse
*/
@WebMethod
(
operationName
=
"SRM_getbarcodestatus"
)
@WebResult
(
name
=
"SRM_getbarcodestatusResponse"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
public
SRMGetbarcodestatusResponseSRMGetbarcodestatusResponse
srmGetbarcodestatus
(
@WebParam
(
name
=
"SRM_getbarcodestatusRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
SRMGetbarcodestatusRequestSRMGetbarcodestatusRequest
parameters
);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMPrintbarcodeResponseSRMPrintbarcodeResponse
*/
@WebMethod
(
operationName
=
"SRM_printbarcode"
)
@WebResult
(
name
=
"SRM_printbarcodeResponse"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
public
SRMPrintbarcodeResponseSRMPrintbarcodeResponse
srmPrintbarcode
(
@WebParam
(
name
=
"SRM_printbarcodeRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
SRMPrintbarcodeRequestSRMPrintbarcodeRequest
parameters
);
/**
*
* @param parameters
* @return
* returns tw.com.dsc.tiptop.tiptopservicegateway.SRMVoidbarcodeResponseSRMVoidbarcodeResponse
*/
@WebMethod
(
operationName
=
"SRM_voidbarcode"
)
@WebResult
(
name
=
"SRM_voidbarcodeResponse"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
public
SRMVoidbarcodeResponseSRMVoidbarcodeResponse
srmVoidbarcode
(
@WebParam
(
name
=
"SRM_voidbarcodeRequest"
,
targetNamespace
=
"http://www.dsc.com.tw/tiptop/TIPTOPServiceGateWay"
,
partName
=
"parameters"
)
SRMVoidbarcodeRequestSRMVoidbarcodeRequest
parameters
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment