You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
495 B
C#
19 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.Module.DjyRulesEngine
|
|
{
|
|
public interface IRuleEngineService
|
|
{
|
|
/// <summary>
|
|
/// 执行海运出口规则引擎校验
|
|
/// </summary>
|
|
/// <param name="req">修改服务状态详情</param>
|
|
/// <returns>返回回执</returns>
|
|
public Task<RuleEngineResult> ExcuteRulesOceanBooking(RuleEngineReq req);
|
|
}
|
|
}
|