ShipmentItemReceive.java 1.23 KB

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


}