using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
using WIDESEA_DTO.PLS;
|
using WIDESEA_External.Model;
|
|
namespace WIDESEA_External.IPLSService
|
{
|
public interface IInvokePLSService:IDependency
|
{
|
|
/// <summary>
|
/// MO票上报PLS接口调用
|
/// </summary>
|
/// <param name="receiveModel"></param>
|
/// <returns></returns>
|
string InvokeMoInboundStatuApi(ReturnMoInboundStatuModel moInboundStatuModel);
|
}
|
}
|