TaskAssignService.java
337 Bytes
package com.huaheng.api.erp.server;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
@WebService
public interface TaskAssignService {
@WebMethod
@WebResult(name = "taskAssign")
public String taskAssign(@WebParam(name = "locationList") String locationList);
}