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.
20 lines
561 B
C#
20 lines
561 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.OpenApiModule.Dtos;
|
|
|
|
namespace DS.WMS.Core.OpenApiModule.Interface;
|
|
|
|
public interface IPortOpenService
|
|
{
|
|
/// <summary>
|
|
/// 获取车辆预约信息
|
|
/// </summary>
|
|
/// <param name="truckNo"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<TruckInfoViewModel>> GetTruckInfoAsync(string truckNo);
|
|
/// <summary>
|
|
/// 记录车辆相关信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult> RecordTruckInfoAsync(TruckRecordInput model);
|
|
} |