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.
BookingHeChuan/Myshipping.Application/Service/BookingLabel/IBookingLabelService.cs

19 lines
471 B
C#

using Myshipping.Application.Service.BookingLabel.Dto;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public interface IBookingLabelService
{
Task<List<BookingLabelBaseDto>> List(int? scope);
/// <summary>
/// 设定标签
/// </summary>
/// <param name="input">请求参数</param>
/// <returns></returns>
Task SetLabel(BindLabelDto input);
}
}