ShipmentItemReceive.java
1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.huaheng.api.erp.test;
import com.huaheng.framework.web.domain.AjaxResult;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebService(name = "ShipmentItemReceive", targetNamespace = "http://server.erp.api.huaheng.com/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface ShipmentItemReceive {
/**
*
* @param shipmentItem
* @return
* returns java.lang.String
*/
@WebMethod
@WebResult(name = "addShipment", targetNamespace = "")
@RequestWrapper(localName = "addShipment", targetNamespace = "http://server.erp.api.huaheng.com/", className = "com.huaheng.api.erp.server.AddShipment")
@ResponseWrapper(localName = "addShipmentResponse", targetNamespace = "http://server.erp.api.huaheng.com/", className = "com.huaheng.api.erp.server.AddShipmentResponse")
public String addShipment(
@WebParam(name = "shipmentItem", targetNamespace = "")
String shipmentItem);
}